:root {
    /* Brand Colors */
    --color-ink: #050708;
    --color-paper: #F6F6FA;
    --color-graphite: #20232A;
    --color-teal: #32E0C4;
    --color-violet: #8B5CF6;
    --color-red: #F97373;

    /* Legacy mappings for existing code */
    --bg-color: #0a0a0c;
    /* Keeping dark theme base */
    --bg-secondary: var(--color-graphite);
    --text-primary: #ededed;
    --text-secondary: #a1a1aa;
    --accent-primary: var(--color-violet);
    /* Wave Violet as primary accent */
    --accent-secondary: var(--color-teal);
    /* Bridge Teal as secondary */
    --accent-glow: rgba(139, 92, 246, 0.15);

    --font-display: 'Space Grotesk', sans-serif;
    --font-main: 'Inter', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    --transition-fast: 0.2s ease;
    --transition-medium: 0.4s ease;
    --container-width: 1200px;
    --banner-height: 36px;
}



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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    position: relative;
}

#canvas-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    opacity: 0.6;
    /* Subtle background */
    pointer-events: none;
}

body > *:not(#canvas-container) {
    position: relative;
    z-index: 1;
}

.site-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--banner-height);
    display: flex;
    align-items: center;
    background: rgba(5, 7, 8, 0.92);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--accent-secondary);
    font-size: 0.7rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-weight: 600;
    z-index: 1001;
    pointer-events: none;
}

.site-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
}

body.webgl-fallback {
    background: radial-gradient(circle at 20% 20%, rgba(50, 224, 196, 0.18), transparent 45%),
        radial-gradient(circle at 80% 30%, rgba(139, 92, 246, 0.18), transparent 50%),
        #0a0a0c;
}

body.webgl-fallback #canvas-container {
    display: none;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

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

/* Navbar */
.navbar {
    position: fixed;
    top: var(--banner-height);
    left: 0;
    width: 100%;
    padding: 1.5rem 0;
    background: rgba(10, 10, 12, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: padding 0.3s ease;
}

.navbar.scrolled {
    padding: 1rem 0;
}

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

.logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.logo img {
    height: clamp(26px, 2.4vw, 36px);
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    gap: 2rem;
    flex: 1;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-right: clamp(140px, 16vw, 220px);
    transition: opacity var(--transition-medium), transform var(--transition-medium);
}

.nav-links a {
    font-size: 0.95rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.nav-link.disabled {
    font-size: 0.95rem;
    color: rgba(246, 246, 250, 0.35);
    font-weight: 500;
    cursor: not-allowed;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-secondary);
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.nav-dropdown-toggle:hover,
.nav-dropdown-toggle:focus-visible {
    color: #fff;
}

.nav-caret {
    width: 8px;
    height: 8px;
    border-right: 1px solid currentColor;
    border-bottom: 1px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    transition: transform var(--transition-fast);
}

.nav-dropdown.open .nav-caret {
    transform: rotate(-135deg) translateY(-1px);
}

.nav-dropdown-menu {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 0;
    min-width: 220px;
    background: rgba(5, 7, 8, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.4);
    transition: opacity var(--transition-medium), transform var(--transition-medium);
}

.nav-dropdown-menu a {
    color: var(--text-secondary);
    font-size: 0.95rem;
    padding: 0.5rem 0.6rem;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.nav-dropdown-menu a:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.06);
}

.nav-item-title {
    font-weight: 600;
    color: var(--text-primary);
}

.nav-item-desc {
    font-size: 0.8rem;
    color: var(--text-secondary);
    line-height: 1.4;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-left: 0;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.btn.btn-sm {
    padding: 0.45rem 0.9rem;
    font-size: 0.9rem;
}

.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.nav-links a.active {
    color: #fff;
    border-bottom: 1px solid rgba(50, 224, 196, 0.6);
    padding-bottom: 2px;
}

.nav-links a:hover {
    color: #fff;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 0.5rem;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
}

.nav-toggle-bar {
    width: 18px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: calc(60px + var(--banner-height));
    /* Navbar offset */
}

.hero-bg {
    display: none;
    /* Replaced by 3D scene */
}

@keyframes pulse {

    0%,
    100% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

.hero h1 {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    text-shadow: 0 12px 30px rgba(0, 0, 0, 0.35);
}

.hero .highlight {
    background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradientShift 8s ease infinite;
}

.subtitle {
    font-size: 1.5rem;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
}

.hero-text {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 2.5rem;
    line-height: 1.75;
}

.hero-note {
    color: rgba(246, 246, 250, 0.8);
    font-size: 1rem;
    margin-bottom: 2rem;
}

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

.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: all var(--transition-fast);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.btn-primary {
    background: #fff;
    color: #20232A;
}

.btn-primary:visited,
.btn-primary:active,
.btn-primary:focus {
    color: #20232A;
}

.nav-actions .btn.btn-primary {
    color: #20232A;
}

.btn-primary:hover {
    background: #e2e2e2;
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Sections General */
.section {
    padding: 6rem 0;
    position: relative;
}

.section-header {
    margin: 0 auto 4rem;
    max-width: 860px;
    text-align: center;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
}

.section-header p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Vision Section */
.vision-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.vision-text {
    flex: 1;
    padding-right: 3rem;
}

.vision-text p,
.vision-text ul {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.vision-text strong {
    color: #fff;
}

.vision-text ul {
    list-style: none;
    padding-left: 0;
}

.vision-text ul li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 1.25rem;
}

.vision-text ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--accent-primary);
    font-weight: bold;
}

.vision-card {
    background: rgba(19, 19, 24, 0.82);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
}

.vision-card h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.vision-card ul li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-secondary);
}

.vision-card ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--accent-primary);
}

/* Features Section */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: rgba(19, 19, 24, 0.82);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.03);
    transition: var(--transition-medium);
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.01);
    border-color: rgba(255, 255, 255, 0.1);
    background: linear-gradient(to bottom right, var(--bg-secondary), #1a1a1f);
}

.feature-card .icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

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

.feature-card .text-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 1rem;
    color: var(--text-primary);
    font-weight: 500;
}

.feature-card .text-link::after {
    content: "→";
    transition: transform var(--transition-fast);
}

.feature-card .text-link:hover::after {
    transform: translateX(4px);
}

/* How It Works */
.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.step {
    position: relative;
}

.step-number {
    font-family: var(--font-mono);
    font-size: 4rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.03);
    margin-bottom: -1.5rem;
    z-index: 0;
}

.step h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.step p {
    color: var(--text-secondary);
    position: relative;
    z-index: 1;
    font-size: 1rem;
    line-height: 1.7;
}

/* Use Cases + Story */
.use-cases .feature-card {
    min-height: 180px;
}

.story-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 2rem;
}

.story-card {
    background: rgba(19, 19, 24, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.3);
}

.team-section .section-header {
    margin-bottom: 3rem;
}

.profile-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.profile-card {
    background: rgba(19, 19, 24, 0.82);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2rem;
}

.profile-role {
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(139, 92, 246, 0.85);
    margin-bottom: 0.75rem;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: start;
}

.contact-form {
    background: rgba(10, 10, 12, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: none;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.form-field label {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.form-field input,
.form-field select,
.form-field textarea {
    background: rgba(5, 7, 8, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-primary);
    border-radius: 10px;
    padding: 0.75rem 0.9rem;
    font-family: var(--font-main);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: rgba(139, 92, 246, 0.7);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
}

.form-error {
    color: rgba(139, 92, 246, 0.9);
    font-size: 0.9rem;
    min-height: 1.2rem;
}

.honeypot {
    position: absolute;
    left: -9999px;
    top: auto;
}

.contact-aside {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.contact-section .btn {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.contact-section .btn.btn-primary {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.contact-section .btn.btn-secondary {
    background: rgba(10, 10, 12, 0.8);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.alpha-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2.5rem;
    padding: 2.5rem;
    background: rgba(10, 10, 12, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    box-shadow: none;
}

.alpha-copy h2 {
    font-size: 2.2rem;
    margin-bottom: 0.75rem;
}

.alpha-copy p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
}

.alpha-form {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    min-width: 280px;
}

.alpha-form input {
    flex: 1;
    min-width: 220px;
    background: rgba(5, 7, 8, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: var(--text-primary);
    border-radius: 10px;
    padding: 0.75rem 0.9rem;
    font-family: var(--font-main);
}

.alpha-form input:focus {
    outline: none;
    border-color: rgba(139, 92, 246, 0.7);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
}

.alpha-note {
    margin-top: 1rem;
    color: rgba(246, 246, 250, 0.8);
    font-size: 0.95rem;
}

/* Roadmap */
.roadmap-timeline {
    max-width: 800px;
    margin: 0 auto;
    border-left: 2px solid rgba(255, 255, 255, 0.1);
    padding-left: 2rem;
}

.roadmap-item {
    margin-bottom: 3rem;
    position: relative;
}

.roadmap-item::before {
    content: "";
    position: absolute;
    left: -2.6rem;
    /* Adjust based on border and padding */
    top: 0.5rem;
    width: 1rem;
    height: 1rem;
    background: var(--bg-color);
    border: 2px solid var(--accent-primary);
    border-radius: 50%;
}

.roadmap-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.roadmap-content p {
    color: var(--text-secondary);
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    background: rgba(10, 10, 12, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    z-index: 10;
    box-shadow: none;
}

.footer-content {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(0, 2fr);
    gap: 3rem;
    align-items: start;
    margin-bottom: 3rem;
}

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

.footer-logo-img {
    width: clamp(140px, 18vw, 220px);
    height: auto;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2rem;
}

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

.footer-column h4 {
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.footer-column a {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

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

.footer-bottom {
    text-align: center;
    color: rgba(255, 255, 255, 0.2);
    font-size: 0.875rem;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

.scroll-reveal {
    opacity: 0;
    transform: translateY(30px) scale(0.98);
    filter: blur(6px);
    transition: opacity 0.8s cubic-bezier(0.5, 0, 0, 1),
        transform 0.8s cubic-bezier(0.5, 0, 0, 1),
        filter 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.scroll-reveal.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

.delay-1 {
    animation-delay: 0.2s;
    transition-delay: 0.1s;
}

.delay-2 {
    animation-delay: 0.4s;
    transition-delay: 0.2s;
}

.delay-3 {
    animation-delay: 0.6s;
    transition-delay: 0.3s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@media (prefers-reduced-motion: reduce) {
    .fade-in,
    .scroll-reveal {
        animation: none;
        transition: none;
        transform: none;
        filter: none;
        opacity: 1;
    }

    .hero .highlight {
        animation: none;
    }

    .feature-card:hover {
        transform: none;
    }
}

/* Responsive */
@media (max-width: 768px) {
    :root {
        --banner-height: 32px;
    }

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

    .subtitle {
        font-size: 1.2rem;
    }

    .section-header h2 {
        font-size: 2.2rem;
    }

    .section-header p {
        font-size: 1rem;
    }

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

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

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

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

    .alpha-card {
        flex-direction: column;
        align-items: stretch;
    }

    .alpha-form {
        flex-direction: column;
        align-items: stretch;
    }

    .alpha-form .btn {
        width: 100%;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: calc(100% + 0.75rem);
        right: 0;
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem;
        width: min(70vw, 240px);
        background: rgba(10, 10, 12, 0.96);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 12px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
        opacity: 0;
        transform: translateY(-10px);
        pointer-events: none;
        justify-content: flex-start;
        align-items: stretch;
        padding-right: 1rem;
    }

    .navbar.nav-open .nav-links {
        display: flex;
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-dropdown {
        width: 100%;
    }

    .nav-dropdown-toggle {
        width: 100%;
        justify-content: space-between;
    }

    .nav-dropdown-menu {
        position: static;
        min-width: 0;
        width: 100%;
        background: transparent;
        border: none;
        box-shadow: none;
        padding: 0.5rem 0 0.5rem 0.75rem;
        opacity: 1;
        transform: none;
        pointer-events: auto;
        display: none;
    }

    .nav-dropdown.open .nav-dropdown-menu {
        display: flex;
    }

    .nav-actions {
        flex-direction: column;
        align-items: stretch;
        margin-left: 0;
        width: 100%;
        position: static;
        transform: none;
    }

    .nav-actions .btn {
        width: 100%;
        text-align: center;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .footer-links-grid {
        grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    }
}
