/* ==========================================================
   Linecraft AI - Homepage
   Page-specific styles only. Shared nav/footer/modal/typography
   primitives live in css/base.css.
   File: css/index.css
   ========================================================== */

/* ==========================================================
   Hero Stage
   ========================================================== */
.hero-stage {
    padding: 96px 0 64px 0;
}

.hero-copy-stack {
    text-align: center;
    max-width: 860px;
    margin: 0 auto;
}

.hero-headline {
    font-family: var(--font-sans);
    font-size: 3.5rem;
    line-height: 1.15;
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--ink-heavy);
    margin-bottom: 20px;
}

.editorial-accent {
    font-family: var(--font-editorial);
    font-weight: 400;
    font-style: italic;
    letter-spacing: normal;
    display: inline-block;
    color: #171166;
}

.hero-description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--ink-muted);
    max-width: 680px;
    margin: 0 auto 36px auto;
}

.hero-cta-duo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ==========================================================
   Manufacturing Intelligence Loop (Hero Stage)
   ========================================================== */
.signal-board {
    margin-top: 56px;
    background: #ffffff;
    border: 1px solid var(--border-standard);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-figma-card);
    overflow: hidden;
}

.signal-chrome-bar {
    background: #fafbfe;
    border-bottom: 1px solid var(--border-subtle);
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.signal-title-wrap {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.signal-dot-live {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-green);
    box-shadow: 0 0 10px var(--accent-green);
}

.signal-title {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: var(--ink-heavy);
}

.signal-status-pill {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--ink-faint);
    letter-spacing: 0.06em;
}

.loop-flow-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    background: #ffffff;
}

.loop-step-card {
    padding: 30px 24px;
    border-right: 1px solid var(--border-subtle);
    min-height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    transition: background 0.15s ease;
}

.loop-step-card:last-child {
    border-right: 0;
}

.loop-step-card:hover {
    background: var(--bg-surface-elevated);
}

.loop-num {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--accent-blue);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.loop-step-card h3 {
    margin: 14px 0 8px;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--ink-heavy);
    letter-spacing: -0.01em;
}

.loop-step-card p {
    font-size: 0.85rem;
    line-height: 1.5;
    color: var(--ink-muted);
    margin: 0;
}

/* ==========================================================
   Trust Marquee
   ========================================================== */
.trust-marquee-wrapper {
    padding: 48px 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    background: #ffffff;
    overflow: hidden;
}

.trust-label {
    text-align: center;
    margin-bottom: 24px;
}

.trust-label span {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 1px;
    color: var(--ink-faint);
}

.ticker-belt {
    width: 100%;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 15%, black 85%, transparent);
}

.ticker-flow {
    display: flex;
    gap: 80px;
    align-items: center;
    width: max-content;
    animation: figmaMarquee 32s linear infinite;
}

.partner-mark {
    height: 38px;
    filter: grayscale(100%);
    opacity: 0.55;
    transition: all 0.2s ease;
}

.partner-mark:hover {
    filter: grayscale(0%);
    opacity: 1;
}

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

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

/* ==========================================================
   Capabilities Bento Matrix
   ========================================================== */
.capabilities-matrix-section {
    padding: 110px 0;
}

.matrix-header-block {
    text-align: center;
    max-width: 760px;
    margin: 0 auto 48px auto;
}

.matrix-tabs-navigator {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.matrix-tab {
    background: #ffffff;
    border: 1px solid var(--border-standard);
    border-radius: var(--radius-full);
    padding: 8px 18px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--ink-muted);
    cursor: pointer;
    transition: all 0.2s ease;
}

.matrix-tab .tab-index {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--ink-faint);
}

.matrix-tab.active {
    background: var(--ink-heavy);
    color: #ffffff;
    border-color: var(--ink-heavy);
}

.matrix-tab.active .tab-index {
    color: var(--accent-cyan);
}

.matrix-panel {
    display: none;
    grid-template-columns: 340px 1fr;
    gap: 32px;
    background: #ffffff;
    border: 1px solid var(--border-standard);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-figma-card);
}

.matrix-panel.active {
    display: grid;
    animation: panelSlide 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes panelSlide {
    from {
        opacity: 0;
        transform: translateY(8px);
    }

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

.panel-narrative {
    display: flex;
    flex-direction: column;
}

.panel-tag {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--accent-blue);
    margin-bottom: 12px;
}

.panel-narrative h3 {
    font-size: 1.5rem;
    color: var(--ink-heavy);
    line-height: 1.3;
    margin-bottom: 16px;
}

.panel-narrative p {
    font-size: 0.95rem;
    color: var(--ink-muted);
    line-height: 1.6;
}

.bento-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.bento-box {
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 28px;
    display: flex;
    flex-direction: column;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.bento-box:hover {
    border-color: #cbd5e1;
    transform: translateY(-2px);
}

.bento-icon-frame {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #ffffff;
    border: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.bento-icon-frame img {
    width: 22px;
    height: 22px;
}

.bento-box h4 {
    font-size: 1.05rem;
    color: var(--ink-heavy);
    margin-bottom: 8px;
}

.bento-box p {
    font-size: 0.88rem;
    color: var(--ink-muted);
    line-height: 1.5;
    flex: 1;
}

.bento-spec-foot {
    margin-top: 24px;
    padding-top: 14px;
    border-top: 1px dashed var(--border-standard);
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--ink-faint);
}

/* ==========================================================
   Signals to Decisions (Precision Figma Cards)
   ========================================================== */
.platform-signals-section {
    padding: 110px 0;
    background: var(--bg-canvas);
    border-top: 1px solid var(--border-subtle);
    position: relative;
}

.signals-grid3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.signal-card {
    background: #ffffff;
    border: 1px solid var(--border-standard);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03), 0 4px 16px rgba(5, 0, 64, 0.02);
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.signal-card:hover {
    border-color: var(--ink-heavy);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px -4px rgba(5, 0, 64, 0.08);
}

.signal-card.featured-focus {
    background: linear-gradient(180deg, #ffffff 0%, #fafbfe 100%);
    border-color: #cbd5e1;
}

.card-frame-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
}

.mono-hash {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--ink-faint);
    letter-spacing: 0.5px;
}

.tag-chip {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    padding: 4px 10px;
    border-radius: var(--radius-sm);
    display: inline-block;
}

.tag-chip.blue {
    background: #eff6ff;
    color: #2563eb;
}

.tag-chip.cyan {
    background: #ecfeff;
    color: #0891b2;
}

.tag-chip.purple {
    background: #f5f3ff;
    color: #7c3aed;
}

.signal-card h3 {
    font-size: 1.28rem;
    font-weight: 700;
    color: var(--ink-heavy);
    line-height: 1.3;
    margin-bottom: 12px;
    letter-spacing: -0.015em;
}

.signal-card p {
    font-size: 0.92rem;
    line-height: 1.6;
    color: var(--ink-muted);
}

.card-canvas-footer {
    margin-top: 32px;
    padding-top: 16px;
    border-top: 1px dashed var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.micro-gauge {
    display: flex;
    align-items: center;
    gap: 8px;
}

.gauge-fill {
    width: 6px;
    height: 6px;
    border-radius: 50%;
}

.pulse-green {
    background: var(--accent-green);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}

.pulse-blue {
    background: var(--accent-blue);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.2);
}

.pulse-purple {
    background: var(--accent-purple);
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.2);
}

.gauge-label,
.baud-rate {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.gauge-label {
    color: var(--ink-muted);
}

.baud-rate {
    color: var(--ink-faint);
}

/* ==========================================================
   Ikshana Telemetry Deck
   ========================================================== */
.analytics-split-section {
    padding: 110px 0;
    background: #ffffff;
    border-top: 1px solid var(--border-subtle);
}

.split-two-col {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 64px;
    align-items: center;
}

.analytics-quad-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 36px;
}

.micro-quad-card {
    background: #ffffff;
    border: 1px solid var(--border-standard);
    border-radius: var(--radius-md);
    padding: 20px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.micro-quad-card:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.03);
}

.quad-icon-badge {
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-subtle);
    border-radius: 8px;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--ink-heavy);
}

.micro-quad-card h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--ink-heavy);
    margin-bottom: 4px;
}

.micro-quad-card p {
    font-size: 0.82rem;
    color: var(--ink-muted);
    line-height: 1.5;
}

/* Live Telemetry Workstation Card */
.figma-telemetry-box {
    background: #ffffff;
    border: 1px solid var(--border-standard);
    border-radius: var(--radius-lg);
    box-shadow: 0 16px 48px -8px rgba(5, 0, 64, 0.08);
    overflow: hidden;
}

.box-top-chrome {
    background: #f8fafc;
    border-bottom: 1px solid var(--border-subtle);
    padding: 14px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chrome-signals {
    display: flex;
    gap: 5px;
}

.traffic-light {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    display: inline-block;
}

.traffic-light.red {
    background: #fda4af;
}

.traffic-light.yellow {
    background: #fde047;
}

.traffic-light.green {
    background: #86efac;
}

.chrome-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--ink-faint);
    letter-spacing: 0.5px;
}

.live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    color: var(--accent-green);
    font-weight: 700;
}

.beacon-ring {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent-green);
}

.telemetry-display-hero {
    padding: 24px 28px;
    background: linear-gradient(180deg, #fafbfe 0%, #ffffff 100%);
    border-bottom: 1px solid var(--border-subtle);
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.hero-metric-chunk .sub-label {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    color: var(--ink-faint);
    letter-spacing: 0.5px;
    display: block;
    margin-bottom: 4px;
}

.mega-metric {
    font-family: var(--font-mono);
    font-size: 2.2rem;
    font-weight: 800;
    color: #2563eb;
    line-height: 1;
}

.mega-metric .unit {
    font-size: 1rem;
    color: var(--ink-muted);
    font-weight: 600;
}

.capacity-gauge-pill {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
}

.bar-track {
    width: 130px;
    height: 8px;
    background: #e2e8f0;
    border-radius: var(--radius-full);
    overflow: hidden;
}

.bar-fill {
    height: 100%;
    background: #2563eb;
    border-radius: var(--radius-full);
}

.bar-txt {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    color: var(--ink-muted);
    font-weight: 600;
}

.telemetry-rows-deck {
    padding: 16px 24px;
    display: flex;
    flex-direction: column;
}

.telemetry-metric-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    border-bottom: 1px solid var(--border-subtle);
    font-size: 0.9rem;
}

.telemetry-metric-row:last-child {
    border-bottom: none;
}

.telemetry-metric-row .row-label {
    color: var(--ink-muted);
    font-weight: 500;
}

.row-val-badge.green {
    background: #ecfdf5;
    color: #059669;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-full);
}

.row-val-text {
    font-family: var(--font-mono);
    font-size: 0.95rem;
    color: var(--ink-heavy);
}

.row-val-text.pink {
    color: #e11d48;
}

.telemetry-footer-status {
    padding: 12px 24px;
    background: #f8fafc;
    border-top: 1px solid var(--border-subtle);
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--ink-faint);
}

/* ==========================================================
   AI for Manufacturing (Rishi Copilot Window)
   ========================================================== */
.ai-manufacturing-section {
    padding: 110px 0;
    background: #fafafa;
    border-top: 1px solid var(--border-subtle);
}

.reverse-on-desktop {
    grid-template-columns: 0.95fr 1.05fr;
}

.stacked-feature-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 36px;
}

.stacked-feature-card {
    background: #ffffff;
    border: 1px solid var(--border-standard);
    border-radius: var(--radius-md);
    padding: 22px 24px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.stacked-feature-card:hover {
    border-color: var(--ink-heavy);
    transform: translateX(4px);
}

.feature-marker {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--accent-purple);
    padding: 4px 8px;
    background: #f5f3ff;
    border-radius: 6px;
}

.stacked-feature-card h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--ink-heavy);
    margin-bottom: 4px;
}

.stacked-feature-card p {
    font-size: 0.88rem;
    color: var(--ink-muted);
    line-height: 1.5;
}

/* Figma-Styled Terminal Window for Rishi */
.figma-rishi-agent-card {
    background: #090c14;
    border: 1px solid #1f2538;
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: 0 20px 50px rgba(5, 0, 64, 0.18);
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.agent-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #1f2538;
    padding-bottom: 16px;
    flex-wrap: wrap;
    gap: 8px;
}

.rishi-brand-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    font-weight: 700;
    color: #c084fc;
}

.rishi-hex-pulse {
    width: 8px;
    height: 8px;
    background: #c084fc;
    border-radius: 50%;
    box-shadow: 0 0 10px #c084fc;
}

.node-badge-purple {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    padding: 2px 8px;
    border-radius: 4px;
    background: #f5f3ff;
    color: var(--accent-purple);
}

.bubble-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-family: var(--font-mono);
    font-size: 0.68rem;
}

.speaker-role {
    color: #64748b;
    font-weight: 600;
}

.speaker-role.purple {
    color: #c084fc;
}

.bubble-time,
.eval-speed {
    color: #475569;
}

.agent-query-bubble {
    background: #121724;
    border: 1px solid #1e2638;
    border-radius: var(--radius-md);
    padding: 16px 20px;
}

.agent-prompt-text {
    color: #f8fafc;
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
}

.agent-reasoning-bubble {
    background: rgba(139, 92, 246, 0.05);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: var(--radius-md);
    padding: 20px;
}

.agent-response-text {
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 16px 0;
}

/* Diagnostic Micro-Tree Workflow */
.agent-diagnostic-flow {
    display: flex;
    flex-direction: column;
    gap: 8px;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    padding-top: 14px;
}

.diag-step {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: #94a3b8;
}

.diag-step .step-check {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    flex-shrink: 0;
}

.diag-step.resolved .step-check {
    background: rgba(16, 185, 129, 0.2);
    color: var(--accent-green);
}

.diag-step.alert .step-check {
    background: rgba(244, 63, 94, 0.2);
    color: #fb7185;
}

.diag-step.alert {
    color: #f1f5f9;
}

/* ==========================================================
   Testimonials Deck
   ========================================================== */
.testimonials-deck-section {
    padding: 100px 0;
}

.testimonials-intro {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 40px auto;
}

.stagger-viewfield {
    position: relative;
    width: 100%;
    height: 480px;
}

.stagger-viewport {
    position: absolute;
    inset: 0;
}

.stagger-card {
    position: absolute;
    left: 50%;
    top: 50%;
    cursor: pointer;
    border-radius: var(--radius-lg);
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.45s ease;
}

.stagger-card.is-center {
    background: var(--ink-heavy);
    color: #ffffff;
    border: 1px solid var(--border-dark);
    box-shadow: 0 20px 40px -10px rgba(5, 0, 64, 0.3);
    z-index: 10;
}

.stagger-card.is-side {
    background: #ffffff;
    color: var(--ink-standard);
    border: 1px solid var(--border-standard);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03);
    z-index: 1;
}

.stagger-quote {
    font-size: 1.15rem;
    line-height: 1.5;
    font-weight: 500;
}

.stagger-author {
    font-size: 0.85rem;
    font-style: italic;
    margin-top: 20px;
}

.stagger-card.is-center .stagger-author {
    color: #a5b4fc;
}

.stagger-card.is-side .stagger-author {
    color: var(--ink-muted);
}

.stagger-nav-dock {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid var(--border-standard);
    border-radius: var(--radius-full);
    padding: 4px 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    z-index: 20;
}

.dock-arrow-btn {
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    color: var(--ink-heavy);
    display: flex;
    align-items: center;
}

.deck-divider {
    width: 1px;
    height: 16px;
    background: var(--border-subtle);
    margin: 0 6px;
}

/* ==========================================================
   Responsive Adaptations
   ========================================================== */
@media (max-width: 992px) {
    .hero-headline {
        font-size: 2.6rem;
    }

    .loop-flow-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .loop-step-card:nth-child(2),
    .loop-step-card:nth-child(4) {
        border-right: none;
    }

    .loop-step-card:nth-child(-n+4) {
        border-bottom: 1px solid var(--border-subtle);
    }

    .matrix-panel {
        grid-template-columns: 1fr;
        padding: 24px;
    }

    .bento-split {
        grid-template-columns: 1fr;
    }

    .signals-grid3 {
        grid-template-columns: 1fr;
    }

    .split-two-col,
    .reverse-on-desktop {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .analytics-quad-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .loop-flow-grid {
        grid-template-columns: 1fr;
    }

    .loop-step-card {
        border-right: none;
        border-bottom: 1px solid var(--border-subtle);
        padding: 22px 18px;
    }

    .loop-step-card:last-child {
        border-bottom: none;
    }
}
