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

html {
    scroll-behavior: smooth;
}

:root {
    /* Extending theme.css */
    --transition-fast: 0.2s ease;
    --transition-slow: 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --border-radius-sm: 8px;
    --border-radius-md: 16px;
    --border-radius-lg: 24px;

    --container-max-width: 1200px;
    --section-spacing: 120px;
    --section-spacing-mobile: 80px;
}

body {
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    display: block;
}

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

/* --- Typography Utilities --- */
h1 {
    font-size: clamp(3rem, 6vw, 4.5rem);
    line-height: 1.05;
    letter-spacing: -0.04em;
    margin-bottom: 24px;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

h3 {
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    letter-spacing: -0.02em;
    line-height: 1.3;
    margin-bottom: 12px;
}

h4 {
    font-size: 1.25rem;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
}

p {
    font-size: 1.125rem;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.text-inverse p {
    color: var(--color-text-inverse-muted);
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--color-surface);
    color: var(--color-bg-dark);
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section-label {
    display: block;
    font-family: var(--font-heading);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 16px;
}

.center {
    text-align: center;
}

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

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

.text-inverse h2,
.text-inverse h3,
.text-inverse h4 {
    color: var(--color-text-inverse);
}

/* --- Layout --- */
.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 5%;
}

.section-padding {
    padding: var(--section-spacing) 0;
}

.position-relative {
    position: relative;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: var(--border-radius-sm);
    font-weight: 600;
    font-family: var(--font-body);
    transition: transform var(--transition-fast), opacity var(--transition-fast);
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background-color: var(--color-btn-primary-bg);
    color: var(--color-btn-primary-text);
    border: 1px solid var(--color-btn-primary-bg);
}

.btn-primary.cta-large {
    background-color: var(--color-surface);
    color: var(--color-bg-dark);
}

.btn-outline {
    background-color: transparent;
    color: var(--color-text-primary);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.text-inverse .btn-outline {
    color: var(--color-text-inverse);
    border-color: rgba(255, 255, 255, 0.2);
}

.btn:hover {
    opacity: 0.9;
}

.scale-on-hover:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

/* --- Header --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background: rgba(246, 245, 243, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: background var(--transition-fast);
}

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

.main-nav {
    display: flex;
    gap: 32px;
}

.main-nav a {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--color-text-primary);
    transition: color var(--transition-fast);
}

.main-nav a:hover {
    color: var(--color-text-muted);
}

/* --- Hero Section & Premium Glassmorphism --- */
.hero-section {
    padding-top: 180px;
    padding-bottom: 120px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-glow-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    z-index: 0;
    opacity: 0.5;
}

.hero-glow-orb.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, var(--color-accent-mint) 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.hero-glow-orb.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--color-accent-lavender) 0%, transparent 70%);
    bottom: -200px;
    left: 20%;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.badge-wrapper {
    margin-bottom: 24px;
}

.hero-text-content .badge {
    margin-bottom: 0;
}

.hero-subheadline {
    font-size: 1.25rem;
    margin-bottom: 40px;
    max-width: 90%;
}

.hero-cta-group {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-social-proof {
    display: flex;
    align-items: center;
    gap: 16px;
}

.avatars {
    display: flex;
}

.avatar-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid var(--color-bg-primary);
    margin-left: -12px;
}

.avatar-img:first-child {
    margin-left: 0;
}

.proof-text {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text-muted);
}

/* Glassmorphism Mockup */
.hero-visual {
    position: relative;
    width: 100%;
    height: 680px;
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1000px;
}

.glass-panel {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1), inset 0 0 0 1px rgba(255, 255, 255, 0.5);
}

.mockup-phone {
    width: 320px;
    height: 640px;
    border-radius: 40px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transform: rotateY(-12deg) rotateX(8deg);
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
    background: var(--color-surface);
    /* #FFFFFF */
    border: 8px solid #EAE8E4;
    /* Light bezel */
    box-shadow:
        -20px 30px 60px rgba(0, 0, 0, 0.08),
        inset 0 0 0 2px rgba(0, 0, 0, 0.05);
}

.mockup-phone:hover {
    transform: rotateY(-5deg) rotateX(2deg) translateY(-15px);
}

.mockup-header-glass {
    height: 80px;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mockup-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    background: var(--color-bg-primary);
    /* #F7F5F2 */
    height: 100%;
}

.glass-skeleton {
    background: var(--color-surface);
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.glass-skeleton.banner {
    height: 160px;
    width: 100%;
    background: var(--gradient-mint);
    opacity: 0.9;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.glass-skeleton-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.glass-skeleton.box {
    height: 100px;
}

.glass-skeleton.line {
    height: 16px;
    width: 100%;
    border-radius: 8px;
}

.glass-skeleton.line.short {
    width: 60%;
}

.mockup-dock {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 64px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    border-radius: 32px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.dock-item {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.04);
}

.dock-item.active {
    background: var(--color-btn-primary-bg);
    border: 1px solid rgba(0, 0, 0, 0.1);
}

/* Floating Chips */
.floating-chip {
    position: absolute;
    background: var(--color-surface);
    padding: 16px 20px;
    border-radius: var(--border-radius-md);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.chip-1 {
    top: 60px;
    right: -30px;
}

.chip-2 {
    bottom: 140px;
    left: -50px;
}

.chip-3 {
    top: 250px;
    left: -80px;
}

.chip-4 {
    bottom: 50px;
    right: -20px;
}

.chip-5 {
    top: -20px;
    left: 20px;
}

.chip-6 {
    bottom: 260px;
    right: -60px;
}

.chip-icon {
    font-size: 24px;
    background: var(--color-bg-primary);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.chip-content {
    display: flex;
    flex-direction: column;
}

.chip-title {
    font-weight: 600;
    font-size: 0.95rem;
}

.chip-sub {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.float-animation {
    animation: floating 6s ease-in-out infinite;
}

.float-animation-delayed {
    animation: floating 6s ease-in-out infinite;
    animation-delay: 2s;
}

@keyframes floating {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0);
    }
}

/* --- Problem Grid / Bento --- */
.section-header {
    max-width: 800px;
    margin: 0 auto 60px;
    position: relative;
    z-index: 2;
}

.problem-section {
    position: relative;
}

.problem-glow {
    display: none;
}

.problem-bento {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(280px, auto);
    gap: 24px;
    position: relative;
    z-index: 2;
}

.bento-card {
    background: var(--color-surface-dark);
    padding: 40px 32px;
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.4s ease;
}

.bento-card:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 255, 255, 0.08);
}

.bento-card h3 {
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    margin-bottom: 12px;
    color: var(--color-text-inverse);
}

.bento-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.bento-card.bento-wide {
    grid-column: span 2;
}

.icon-wrap.outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--color-text-inverse);
    margin-bottom: 24px;
    transition: border-color 0.4s ease;
}

.bento-card:hover .icon-wrap.outline {
    border-color: rgba(255, 255, 255, 0.3);
}

/* --- Capabilities / Bento Grid --- */
.capabilities-section {
    background-color: var(--color-bg-primary);
    overflow: hidden;
}

.mesh-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100vw;
    height: 100%;
    background:
        radial-gradient(circle at 15% 50%, rgba(163, 255, 204, 0.15), transparent 40%),
        radial-gradient(circle at 85% 30%, rgba(213, 173, 255, 0.15), transparent 40%);
    z-index: 0;
    pointer-events: none;
}

.bento-grid-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: minmax(340px, auto);
    gap: 32px;
    position: relative;
    z-index: 2;
}

.bento-item {
    background: var(--color-surface);
    border-radius: var(--border-radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform var(--transition-slow), box-shadow var(--transition-slow);
}

.bento-item.large {
    grid-column: span 2;
    flex-direction: row;
    height: 480px;
}

.bento-hover-effect:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.08);
}

.bento-content {
    padding: 48px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bento-item.medium .bento-content {
    padding: 40px;
}

.cap-badge {
    display: inline-block;
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
    color: var(--color-text-primary);
    align-self: flex-start;
}

.cap-badge.mint {
    background: var(--color-accent-mint);
}

.cap-badge.lavender {
    background: var(--color-accent-lavender);
}

.cap-badge.sky {
    background: var(--color-accent-sky);
}

.feature-list {
    list-style: none;
    margin-top: 24px;
}

.feature-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-weight: 500;
    color: var(--color-text-primary);
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #10B981;
    font-weight: bold;
}

.bento-visual {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 40px;
}

.bento-item.large .bento-visual {
    max-width: 50%;
}

.bento-visual.align-bottom {
    align-items: flex-end;
    padding-bottom: 0;
}

.mint-gradient {
    background: var(--gradient-mint);
}

.lavender-gradient {
    background: linear-gradient(135deg, #F3E8FF 0%, #E9D5FF 100%);
}

.sky-gradient {
    background: linear-gradient(135deg, #E0F2FE 0%, #BAE6FD 100%);
}

/* Decorative Graphics for Bento Visuals */
.abstract-ui-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    width: 100%;
    height: 100%;
}

.ui-box {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 1);
    border-radius: var(--border-radius-md);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.ui-box:nth-child(1) {
    grid-row: 1 / 3;
}

.pulse-slow {
    animation: pulse 4s infinite alternate;
}

.pulse-slower {
    animation: pulse 6s infinite alternate;
}

.float-subtle {
    animation: floating 5s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        opacity: 0.7;
        transform: scale(0.98);
    }

    100% {
        opacity: 1;
        transform: scale(1.02);
    }
}

.data-flow-viz {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.node.central {
    background: var(--color-surface);
    padding: 20px 32px;
    border-radius: 100px;
    font-weight: 700;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.orbiting-nodes {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: spin 20s linear infinite;
}

.node.mini {
    position: absolute;
    width: 24px;
    height: 24px;
    background: var(--color-surface);
    border-radius: 50%;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

.orbit-1 {
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
}

.orbit-2 {
    bottom: 20%;
    left: 0;
    transform: translate(-50%, 50%);
}

.orbit-3 {
    bottom: 20%;
    right: 0;
    transform: translate(50%, 50%);
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

.monetization-viz {
    width: 80%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.sub-tier {
    background: rgba(255, 255, 255, 0.5);
    padding: 24px;
    border-radius: var(--border-radius-lg);
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.sub-tier.active {
    background: var(--color-surface);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    transform: scale(1.05);
    z-index: 2;
}

.badge-mini {
    font-size: 0.7rem;
    background: var(--color-text-primary);
    color: var(--color-surface);
    padding: 4px 8px;
    border-radius: 12px;
}

.persona-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.persona-card {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* --- Social Proof --- */
.logo-marquee {
    overflow: hidden;
    white-space: nowrap;
    position: relative;
    padding: 40px 0;
    margin-bottom: 60px;
}

.logo-marquee::before,
.logo-marquee::after {
    content: '';
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.logo-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--color-bg-primary), transparent);
}

.logo-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--color-bg-primary), transparent);
}

.logos-track {
    display: inline-block;
    animation: marquee 30s linear infinite;
}

.brand-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.2);
    margin: 0 40px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
}

.stat-box h3 {
    font-size: clamp(3rem, 5vw, 4rem);
    margin-bottom: 8px;
    white-space: nowrap;
}

.stat-box p {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--color-text-primary);
}


/* --- Footer & CTA --- */
.cta-section {
    padding: 140px 0;
}

.flex-col-center {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cta-note {
    margin-top: 24px;
    font-size: 0.875rem;
    opacity: 0.6;
}

.site-footer {
    background: #0a0a0a;
    color: #fff;
    padding: 80px 0 40px;
}

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

.brand-col p {
    color: rgba(255, 255, 255, 0.6);
    margin-top: 24px;
    font-size: 0.9rem;
}

.footer-col h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.footer-col a {
    display: block;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
    font-size: 0.9rem;
    transition: color var(--transition-fast);
}

.footer-col a:hover {
    color: #fff;
}

/* --- Utilities / Animations --- */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-up.in-view {
    opacity: 1;
    transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 991px) {

    .hero-content,
    .capability-row {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .capability-row.reverse .capability-text,
    .capability-row.reverse .capability-visual {
        order: unset;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .feature-list li {
        text-align: left;
    }

    .hero-visual {
        height: 500px;
    }

    .mockup-phone {
        transform: scale(0.8) rotateY(-5deg) rotateX(5deg);
    }

    .mockup-phone:hover {
        transform: scale(0.85) rotateY(-2deg) rotateX(2deg) translateY(-10px);
    }

    .bento-grid-wrapper,
    .problem-bento {
        grid-template-columns: 1fr;
    }

    .bento-item.large {
        grid-column: span 1;
        flex-direction: column;
        height: auto;
    }

    .bento-item.large .bento-visual {
        max-width: 100%;
        min-height: 240px;
    }

    .bento-card.bento-wide {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding-top: 140px;
        padding-bottom: 60px;
    }

    .hero-content {
        gap: 30px;
    }

    .hero-visual {
        height: 400px;
        margin-top: 20px;
    }

    .mockup-phone {
        transform: scale(0.65) rotateY(0deg) rotateX(0deg);
    }

    .mockup-phone:hover {
        transform: scale(0.7) rotateY(0deg) rotateX(0deg) translateY(-5px);
    }

    .floating-chip {
        padding: 10px 14px;
        gap: 10px;
    }

    .chip-1 {
        top: 20px;
        right: -10px;
    }

    .chip-2 {
        bottom: 60px;
        left: -10px;
    }

    .chip-3 {
        display: none;
    }

    .chip-4 {
        display: none;
    }

    .chip-5 {
        top: -20px;
        left: 0px;
        transform: scale(0.8);
    }

    .chip-6 {
        bottom: 100px;
        right: -20px;
        transform: scale(0.8);
    }

    .problem-grid,
    .persona-grid,
    .stats-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .section-padding {
        padding: var(--section-spacing-mobile) 0;
    }

    .main-nav {
        display: none;
        /* Hide on small screens for simplicity in this version */
    }

    .bento-content {
        padding: 32px 24px;
    }

    .bento-item.medium .bento-content {
        padding: 32px 24px;
    }

    h1 {
        font-size: clamp(2.5rem, 8vw, 3rem);
    }

    .hero-subheadline {
        margin-bottom: 30px;
        max-width: 100%;
    }

    .hero-cta-group {
        flex-direction: column;
        width: 100%;
    }

    .hero-cta-group .btn {
        width: 100%;
    }
}