/* CSS Variables - Dynatrace-inspired Dark Theme */
:root {
    /* Colors */
    --bg-dark: #0f1419;
    --bg-card: #1a1f29;
    --bg-muted: #252b37;
    --primary: #a78bfa;
    --primary-dark: #8b5cf6;
    --primary-light: #c4b5fd;
    --foreground: #f9fafb;
    --muted-foreground: #9ca3af;
    --border: #2d3748;

    /* Risk Colors */
    --risk-low: #10b981;
    --risk-medium: #f59e0b;
    --risk-high: #f97316;
    --risk-critical: #ef4444;

    /* Spacing */
    --container-width: 1280px;
    --spacing-xs: 0.5rem;
    --spacing-sm: 0.75rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;

    /* Border Radius */
    --radius-sm: 0.5rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
}

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: var(--bg-dark);
    color: var(--foreground);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
.header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(15, 20, 25, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--spacing-xl);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 1.25rem;
    font-weight: 700;
    transition: opacity 0.2s;
}

.logo:hover {
    opacity: 0.8;
}

.logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-center;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--primary) 0%, #9333ea 100%);
}

.logo-icon svg {
    stroke: white;
}

.nav-links {
    display: flex;
    gap: var(--spacing-2xl);
}

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-foreground);
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-actions {
    display: flex;
    gap: var(--spacing-md);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: var(--foreground);
    cursor: pointer;
    padding: var(--spacing-sm);
    border-radius: var(--radius-sm);
    transition: background 0.2s;
}

.mobile-menu-btn:hover {
    background: var(--bg-muted);
}

.mobile-menu {
    display: none;
    background: rgba(15, 20, 25, 0.95);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--spacing-lg);
}

.mobile-menu.active {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm);
}

.mobile-menu a {
    padding: var(--spacing-md);
    border-radius: var(--radius-sm);
    transition: background 0.2s;
}

.mobile-menu a:hover {
    background: var(--bg-muted);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 0.5rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}

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

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

.btn-outline {
    background: transparent;
    border: 1px solid rgba(167, 139, 250, 0.3);
    color: var(--foreground);
}

.btn-outline:hover {
    background: rgba(26, 31, 41, 0.5);
}

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

.glow {
    box-shadow: 0 0 20px rgba(167, 139, 250, 0.3);
}

.glow-lg {
    box-shadow: 0 0 40px rgba(167, 139, 250, 0.4), 0 0 80px rgba(167, 139, 250, 0.2);
}

/* Hero Section */
.hero {
    position: relative;
    padding: 8rem 0;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom right, var(--bg-dark), var(--bg-dark), rgba(167, 139, 250, 0.05));
    z-index: -1;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(to right, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 4rem 4rem;
    opacity: 0.2;
    z-index: -1;
}

.hero-glow {
    position: absolute;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
}

.hero-glow-1 {
    top: 0;
    left: 25%;
    background: rgba(167, 139, 250, 0.2);
}

.hero-glow-2 {
    bottom: 0;
    right: 25%;
    background: rgba(147, 51, 234, 0.1);
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 0.5rem 1rem;
    background: rgba(26, 31, 41, 0.5);
    border: 1px solid rgba(167, 139, 250, 0.3);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: var(--spacing-2xl);
    backdrop-filter: blur(10px);
}

.hero-badge svg {
    stroke: var(--primary);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), #c4b5fd, #60a5fa);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 8s ease infinite;
}

@keyframes gradient-shift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    margin-bottom: var(--spacing-3xl);
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: var(--spacing-3xl);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-2xl);
    margin-top: 5rem;
}

.stat-card {
    background: rgba(26, 31, 41, 0.3);
    border: 1px solid rgba(167, 139, 250, 0.2);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.stat-card:hover {
    border-color: rgba(167, 139, 250, 0.4);
    background: rgba(26, 31, 41, 0.5);
    transform: translateY(-2px);
}

.stat-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto var(--spacing-md);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.2), rgba(147, 51, 234, 0.2));
}

.stat-icon svg {
    stroke: var(--primary);
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--spacing-xs);
}

.stat-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--muted-foreground);
}

/* Stats Bar */
.stats-bar {
    background: rgba(26, 31, 41, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--spacing-3xl) 0;
    backdrop-filter: blur(10px);
}

.stats-bar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: var(--spacing-3xl);
}

.stats-bar-item {
    text-align: center;
}

.stats-bar-value {
    font-size: 3.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary), #c4b5fd);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: var(--spacing-sm);
}

.stats-bar-label {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.stats-bar-desc {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* Section Headers */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto var(--spacing-3xl);
}

.section-header h2 {
    margin-bottom: var(--spacing-lg);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
}

.text-primary {
    color: var(--primary);
}

/* Features Section */
.features {
    padding: var(--spacing-3xl) 0;
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(167, 139, 250, 0.05), transparent);
    z-index: -1;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-lg);
}

.feature-card {
    background: rgba(26, 31, 41, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    backdrop-filter: blur(10px);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

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

.feature-card:hover {
    border-color: rgba(167, 139, 250, 0.5);
    background: rgba(26, 31, 41, 0.8);
    box-shadow: 0 10px 30px rgba(167, 139, 250, 0.1);
    transform: translateY(-2px);
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.2), rgba(147, 51, 234, 0.2));
    margin-bottom: var(--spacing-md);
    transition: transform 0.3s;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
}

.feature-icon svg {
    stroke: var(--primary);
}

.feature-card h3 {
    font-size: 1.125rem;
    margin-bottom: var(--spacing-sm);
}

.feature-card p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    line-height: 1.6;
}

/* Apps Section */
.apps {
    padding: var(--spacing-3xl) 0;
    background: linear-gradient(to bottom, var(--bg-dark), rgba(26, 31, 41, 0.2), var(--bg-dark));
}

.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-lg);
    margin-bottom: var(--spacing-2xl);
}

.app-card {
    background: rgba(26, 31, 41, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    backdrop-filter: blur(10px);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.app-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.05), transparent);
    opacity: 0;
    transition: opacity 0.3s;
}

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

.app-card:hover {
    border-color: rgba(167, 139, 250, 0.5);
    background: rgba(26, 31, 41, 0.8);
    box-shadow: 0 10px 30px rgba(167, 139, 250, 0.1);
}

.app-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-lg);
}

.app-header h3 {
    font-size: 1.25rem;
    margin-bottom: var(--spacing-xs);
}

.app-users {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.badge {
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 9999px;
}

.badge-low { background: var(--risk-low); color: white; }
.badge-medium { background: var(--risk-medium); color: black; }
.badge-high { background: var(--risk-high); color: white; }
.badge-critical { background: var(--risk-critical); color: white; }

.risk-bar {
    margin-bottom: var(--spacing-lg);
}

.risk-bar-label {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    margin-bottom: var(--spacing-xs);
}

.risk-bar-label span:first-child {
    color: var(--muted-foreground);
}

.risk-bar-label span:last-child {
    font-weight: 600;
}

.progress {
    height: 8px;
    background: var(--bg-muted);
    border-radius: 9999px;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    transition: width 0.3s;
}

.progress-low { background: var(--risk-low); }
.progress-medium { background: var(--risk-medium); }
.progress-high { background: var(--risk-high); }
.progress-critical { background: var(--risk-critical); }

.app-details {
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: var(--spacing-md);
}

.app-detail-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    padding: var(--spacing-sm) 0;
}

.app-detail-row span {
    color: var(--muted-foreground);
}

.app-detail-row strong {
    color: var(--foreground);
}

.app-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm);
    padding-top: var(--spacing-md);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-check {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-size: 0.75rem;
}

.feature-yes svg {
    stroke: var(--risk-low);
}

.feature-yes span {
    color: var(--foreground);
}

.feature-no svg {
    stroke: rgba(156, 163, 175, 0.5);
}

.feature-no span {
    color: var(--muted-foreground);
}

.apps-cta {
    text-align: center;
    margin-top: var(--spacing-3xl);
}

/* Risk Map Section */
.risk-map {
    padding: var(--spacing-3xl) 0;
}

.map-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 400px;
    background: rgba(26, 31, 41, 0.3);
    border: 2px dashed rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    margin-bottom: var(--spacing-3xl);
}

.map-placeholder svg {
    stroke: var(--muted-foreground);
    margin-bottom: var(--spacing-md);
}

.map-placeholder p {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: var(--spacing-xs);
}

.map-placeholder span {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.regions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-lg);
}

.region-card {
    background: rgba(26, 31, 41, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    padding: var(--spacing-xl);
    backdrop-filter: blur(10px);
}

.region-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-md);
}

.region-header h3 {
    font-size: 1.125rem;
}

.region-category {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    margin-bottom: var(--spacing-md);
}

.region-features {
    list-style: none;
}

.region-features li {
    font-size: 0.75rem;
    color: var(--muted-foreground);
    padding: var(--spacing-xs) 0;
    padding-left: var(--spacing-md);
    position: relative;
}

.region-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary);
}

/* About Section */
.about {
    padding: var(--spacing-3xl) 0;
    background: rgba(26, 31, 41, 0.3);
}

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

.about-text h2 {
    margin-bottom: var(--spacing-lg);
}

.about-text p {
    color: var(--muted-foreground);
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.about-feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.about-feature svg {
    stroke: var(--risk-low);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.about-stat-item {
    text-align: center;
    padding: var(--spacing-xl);
    background: rgba(167, 139, 250, 0.05);
    border-radius: var(--radius-lg);
}

.about-stat-value {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: var(--spacing-xs);
}

.about-stat-label {
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

/* CTA Section */
.cta {
    padding: var(--spacing-3xl) 0;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, var(--bg-dark), rgba(167, 139, 250, 0.1), var(--bg-dark));
    z-index: -1;
}

.cta-card {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(26, 31, 41, 0.5);
    border: 1px solid rgba(167, 139, 250, 0.3);
    border-radius: var(--radius-xl);
    padding: var(--spacing-3xl);
    text-align: center;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(167, 139, 250, 0.1), transparent);
    z-index: -1;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: 0.5rem 1rem;
    background: rgba(15, 20, 25, 0.5);
    border: 1px solid rgba(167, 139, 250, 0.3);
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--primary);
    margin-bottom: var(--spacing-xl);
}

.cta-badge svg {
    stroke: var(--primary);
}

.cta-card h2 {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-lg);
}

.cta-card p {
    font-size: 1.125rem;
    color: var(--muted-foreground);
    margin-bottom: var(--spacing-2xl);
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

.trust-badges {
    display: flex;
    gap: var(--spacing-lg);
    justify-content: center;
    flex-wrap: wrap;
    margin-top: var(--spacing-xl);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.trust-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.bg-green { background: var(--risk-low); }
.bg-primary { background: var(--primary); }
.bg-purple { background: #9333ea; }

/* Footer */
.footer {
    background: var(--bg-card);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
}

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

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

.footer-brand .logo {
    margin-bottom: var(--spacing-md);
}

.footer-brand p {
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.05);
    transition: all 0.2s;
}

.social-links a:hover {
    background: var(--primary);
}

.social-links svg {
    stroke: var(--muted-foreground);
}

.social-links a:hover svg {
    stroke: white;
}

.footer-links h4 {
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
}

.footer-links a {
    display: block;
    font-size: 0.875rem;
    color: var(--muted-foreground);
    margin-bottom: var(--spacing-sm);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: var(--spacing-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.875rem;
    color: var(--muted-foreground);
}

.footer-bottom a {
    color: var(--foreground);
    font-weight: 500;
    transition: color 0.2s;
}

.footer-bottom a:hover {
    color: var(--primary);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links,
    .nav-actions {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        grid-template-columns: 1fr;
    }

    .about-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 4rem 0;
    }

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

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

    .stats-bar-value {
        font-size: 2.5rem;
    }

    .cta-card h2 {
        font-size: 1.875rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--bg-muted);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(156, 163, 175, 0.5);
}
