:root {
    --fire: #ff3d00;
    --fire-deep: #d93600;
    --ink: #0a0a0a;
    --cream: #faf5ea;
    --cream-2: #f1e9d8;
    --paper: #fffdf8;
    --muted: #5b6168;
    --line: #e4dccb;
    --soft: #8a8478;
}
* {
    box-sizing: border-box;
}
html {
    scroll-behavior: smooth;
}
body {
    margin: 0;
    background: var(--cream);
    color: var(--ink);
    font-family: "DM Sans", system-ui, sans-serif;
    line-height: 1.5;
    overflow-x: hidden;
}
img {
    max-width: 100%;
    display: block;
}
a {
    color: inherit;
    text-decoration: none;
}
button,
input,
select,
textarea {
    font: inherit;
}
button {
    cursor: pointer;
}
.wrap {
    width: min(1220px, 92vw);
    margin: 0 auto;
}
.kicker {
    font-family: Inter, sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--fire);
}
h1,
h2,
h3 {
    font-family: Inter, sans-serif;
    letter-spacing: -0.045em;
    line-height: 0.98;
    margin: 0;
}
p {
    margin: 0;
}
.progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--fire);
    width: 0;
    z-index: 300;
}

.topbar {
    background: var(--ink);
    color: var(--cream);
    font-size: 13px;
    padding: 8px 0;
    text-align: center;
}
.topbar b {
    color: var(--fire);
}
header {
    position: sticky;
    top: 0;
    z-index: 80;
    background: rgba(250, 245, 234, 0.92);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line);
}
.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 14px;
}
.mark {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    line-height: 0;
}
.mark img.wordmark {
    height: 28px;
    width: auto;
    display: block;
    object-fit: contain;
}
footer .mark img.wordmark {
    height: 32px;
}
.nav-links {
    display: flex;
    gap: 4px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.nav-links a {
    font-size: 13px;
    font-weight: 650;
    color: #3a3a36;
    padding: 7px 10px;
    border-radius: 999px;
}
.nav-links a:hover,
.nav-links a.active {
    color: var(--fire);
    background: #fff;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.05);
}
.nav-cta {
    display: flex;
    gap: 8px;
    align-items: center;
}
.hamb {
    display: none;
    background: none;
    border: 0;
    font-size: 24px;
     background-color: transparent;
}

.hamb.active {
    color: white;
    background-color: #ff3d00;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 999px;
    padding: 12px 18px;
    font-weight: 700;
    font-size: 14px;
    position: relative;
    overflow: hidden;
    transition:
        transform 0.18s,
        background 0.18s,
        box-shadow 0.18s;
}
.btn:hover {
    transform: translateY(-2px);
}
.btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent 20%,
        rgba(255, 255, 255, 0.28) 45%,
        transparent 70%
    );
    transform: translateX(-120%);
    transition: transform 0.5s;
}
.btn:hover::after {
    transform: translateX(120%);
}
.btn-fire {
    background: var(--fire);
    color: #fff;
    box-shadow: 0 10px 24px rgba(255, 61, 0, 0.25);
}
.btn-fire:hover {
    background: var(--fire-deep);
}
.btn-ink {
    background: var(--ink);
    color: var(--cream);
}
.btn-ghost {
    background: transparent;
    border: 1.5px solid var(--ink);
    color: var(--ink);
}
.btn-ghost:hover {
    background: var(--ink);
    color: var(--cream);
}
.btn-cream {
    background: var(--cream);
    color: var(--ink);
}

.hero {
    padding: 48px 0 32px;
    position: relative;
    overflow: hidden;
}
.hero:before {
    content: "";
    position: absolute;
    right: -80px;
    top: -40px;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(255, 61, 0, 0.16),
        transparent 70%
    );
    pointer-events: none;
    animation: pulse 6s ease-in-out infinite;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 28px;
    align-items: stretch;
}
.hero h1 {
    font-size: clamp(36px, 5.4vw, 66px);
    font-weight: 800;
}
.hero h1 em {
    font-style: normal;
    color: var(--fire);
}
.hero-lead {
    margin-top: 16px;
    font-size: 17px;
    color: #3d3d38;
    max-width: 48ch;
}
.hero-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 20px;
}
.stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 22px;
}
.stat {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 12px 14px;
    transition:
        transform 0.2s,
        border-color 0.2s,
        box-shadow 0.2s;
}
.stat:hover {
    transform: translateY(-4px);
    border-color: var(--fire);
    box-shadow: 0 14px 28px rgba(20, 16, 8, 0.08);
}
.stat b {
    display: block;
    font-family: Inter, sans-serif;
    font-size: 15px;
}
.stat span {
    font-size: 12px;
    color: var(--muted);
}
.hero-art {
    position: relative;
    min-height: 500px;
}
.hero-photo {
    position: absolute;
    inset: 0;
    border-radius: 26px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(10, 10, 10, 0.16);
}
.hero-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 8s ease;
}
.hero-art:hover .hero-photo img {
    transform: scale(1.08);
}
.float-card {
    position: absolute;
    left: 16px;
    bottom: 16px;
    width: 240px;
    background: rgba(10, 10, 10, 0.92);
    color: var(--cream);
    padding: 16px;
    border-radius: 18px;
    backdrop-filter: blur(8px);
    transition: transform 0.25s;
}
.float-card:hover {
    transform: translateY(-6px);
}
.float-pin {
    position: absolute;
    right: 16px;
    top: 16px;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--fire);
    display: grid;
    place-items: center;
    animation: pulse 2.2s ease-in-out infinite;
    box-shadow: 0 10px 24px rgba(255, 61, 0, 0.35);
}
.float-pin img {
    width: 22px;
    height: 34px;
    object-fit: contain;
}

.doors {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.door {
    min-height: 280px;
    border-radius: 22px;
    padding: 26px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    position: relative;
    overflow: hidden;
    transition: transform 0.25s;
}
.door:hover {
    transform: translateY(-6px);
}
.door.inf {
    background:
        linear-gradient(180deg, rgba(10, 10, 10, 0.15), rgba(10, 10, 10, 0.82)),
        url("https://images.unsplash.com/photo-1488646953014-85cb44e25828?auto=format&fit=crop&w=1200&q=80")
            center/cover;
    color: #fff;
}
.door.biz {
    background:
        linear-gradient(180deg, rgba(10, 10, 10, 0.1), rgba(10, 10, 10, 0.82)),
        url("https://images.unsplash.com/photo-1556740738-b6a63e27c4df?auto=format&fit=crop&w=1200&q=80")
            center/cover;
    color: #fff;
}
.door h3 {
    font-size: 32px;
    margin: 8px 0;
}
.door p {
    opacity: 0.9;
}

.marquee {
    background: var(--ink);
    color: var(--cream);
    overflow: hidden;
}
.marquee-track {
    display: flex;
    gap: 36px;
    padding: 12px 0;
    width: max-content;
    animation: slide 24s linear infinite;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}
.marquee-track span {
    color: var(--fire);
}

.band {
    padding: 56px 0;
}
.band-ink {
    background: var(--ink);
    color: var(--cream);
}
.band-ink p {
    color: #c4bfb5;
}
.band-fire {
    background: var(--fire);
    color: #fff;
}
.section-head {
    max-width: 760px;
    margin-bottom: 22px;
}
.section-head h2 {
    font-size: clamp(28px, 3.8vw, 46px);
    font-weight: 800;
    margin: 8px 0 10px;
}

.grid-3,
.grid-4,
.grid-2 {
    display: grid;
    gap: 12px;
}
.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}
.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}
.grid-2 {
    grid-template-columns: 1fr 1fr;
}
.card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 20px;
    transition:
        transform 0.22s,
        box-shadow 0.22s,
        border-color 0.22s;
}
.card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(20, 16, 8, 0.09);
    border-color: #d7b9a3;
}
.card-ink {
    background: #141414;
    border: 1px solid #2a2a2a;
    color: var(--cream);
}
.card-ink:hover {
    border-color: var(--fire);
}
.card h3 {
    font-size: 20px;
    margin: 8px 0;
}
.card p {
    color: var(--muted);
    font-size: 14.5px;
}
.card-ink p {
    color: #b7b2a8;
}
.n {
    color: var(--fire);
    font-family: Inter, sans-serif;
    font-weight: 800;
    font-size: 12px;
}

.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    align-items: center;
}
.photo {
    border-radius: 20px;
    overflow: hidden;
    max-height: 340px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 350px;
    transition: transform 0.6s;
}
.photo:hover img {
    transform: scale(1.06);
}

.compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}
.compare .side {
    border-radius: 18px;
    padding: 22px;
}
.compare .bad {
    background: #fff;
    border: 1px dashed #cfc8ba;
}
.compare .good {
    background: var(--ink);
    color: var(--cream);
}
.compare li {
    margin: 8px 0;
}

.pipeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}
.pipe {
    background: #141414;
    border: 1px solid #2a2a2a;
    border-radius: 16px;
    padding: 14px;
    min-height: 200px;
}
.pipe h4 {
    margin: 0 0 10px;
    font-size: 13px;
    color: #fff;
}
.lead {
    background: #1d1d1d;
    border: 1px solid #333;
    border-radius: 12px;
    padding: 10px;
    margin: 8px 0;
    font-size: 13px;
    color: #ddd;
    transition:
        transform 0.2s,
        border-color 0.2s;
}
.lead:hover {
    transform: translateY(-3px);
    border-color: var(--fire);
}
.dash {
    background: #101010;
    border-radius: 20px;
    padding: 18px;
    color: #eee;
    border: 1px solid #2a2a2a;
}
.dash-top {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 14px;
}
.kpi {
    flex: 1;
    background: #191919;
    border-radius: 12px;
    padding: 12px;
}
.funnel {
    display: grid;
    gap: 8px;
}
.funnel i {
    display: block;
    height: 28px;
    border-radius: 8px;
    background: var(--fire);
    animation: growBar 1.4s ease both;
}
.wa {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 16px;
}
.chat {
    background: #0e1b16;
    border-radius: 18px;
    padding: 14px;
    min-height: 300px;
}
.bubble {
    max-width: 80%;
    padding: 10px 12px;
    border-radius: 14px;
    margin: 8px 0;
    font-size: 13px;
}
.me {
    background: #1f3b30;
    color: #e8f5ee;
}
.them {
    background: #fff;
    color: #111;
    margin-left: auto;
}
.sources {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.chip {
    border: 1px solid var(--line);
    background: #fff;
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 13px;
    font-weight: 650;
    transition: 0.18s;
}
.chip:hover,
.chip.on {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink);
}
.map-pages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.map-pages a {
    display: block;
    padding: 18px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--line);
    font-weight: 750;
    transition: 0.2s;
}
.map-pages a:hover {
    border-color: var(--fire);
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}
.map-pages small {
    display: block;
    font-weight: 500;
    color: var(--muted);
    margin-top: 6px;
}

.tbd {
    background: #fff8e8;
    border: 1px dashed #e0c48a;
    border-radius: 16px;
    padding: 16px 18px;
    font-size: 14px;
}
.tbd strong {
    color: #8a5a00;
}

.meter {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 20px;
    padding: 22px;
}
.meter input {
    width: 100%;
    accent-color: var(--fire);
}
.track {
    height: 12px;
    background: #ece6d8;
    border-radius: 999px;
    overflow: hidden;
}
.fill {
    height: 100%;
    border-radius: 999px;
    width: 8%;
    transition: width 0.45s;
}
.fill.ota {
    background: #b9b3a8;
}
.fill.you {
    background: var(--fire);
}
.bar-row {
    margin: 12px 0;
}
.bar-row span {
    display: flex;
    justify-content: space-between;
    font-size: 13px;
    margin-bottom: 6px;
}
.quiz {
    display: grid;
    gap: 10px;
}
.qbtn {
    text-align: left;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 14px 16px;
    font-weight: 650;
    transition: 0.18s;
}
.qbtn:hover,
.qbtn.on {
    border-color: var(--fire);
    background: #fff4ee;
    transform: translateX(4px);
}
.qout {
    margin-top: 14px;
    padding: 16px;
    border-radius: 16px;
    background: var(--ink);
    color: var(--cream);
    display: none;
}
.qout.show {
    display: block;
}

.form {
    display: grid;
    gap: 10px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 20px;
}
.form input,
.form select,
.form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 12px 14px;
    background: var(--paper);
    transition:
        border-color 0.18s,
        box-shadow 0.18s;
}
.form input:focus,
.form select:focus,
.form textarea:focus {
    outline: 0;
    border-color: var(--fire);
    box-shadow: 0 0 0 4px rgba(255, 61, 0, 0.12);
}
.form textarea {
    min-height: 100px;
    resize: vertical;
}
.form input.error,
.form select.error,
.form textarea.error {
    border-color: var(--fire);
}
.claim-desk-error {
    display: block;
    color: #c62828;
    font-size: 12px;
    font-weight: 600;
    margin-top: 4px;
    line-height: 1.35;
}
.ok {
    display: none;
    background: #173528;
    color: #d9f5e6;
    padding: 12px;
    border-radius: 12px;
}
.ok.show {
    display: block;
}
.tk-apply-success {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 28px 24px;
    text-align: center;
    position: relative;
}
.tk-apply-success h3 {
    font-size: clamp(24px, 3vw, 32px);
    margin: 0 0 10px;
}
.tk-apply-success p {
    color: var(--muted);
    margin: 6px 0;
    font-size: 15px;
}
.tk-apply-success .meta {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    font-size: 14px;
    color: #3d3d38;
    text-align: left;
}
.tk-success-modal {
    position: fixed;
    inset: 0;
    z-index: 200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.tk-success-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 10, 10, 0.55);
}
.tk-success-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(440px, 100%);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
    animation: tkModalIn 0.25s ease;
}
.tk-success-modal__close {
    position: absolute;
    top: 10px;
    right: 12px;
    border: 0;
    background: transparent;
    font-size: 28px;
    line-height: 1;
    color: #736e65;
    cursor: pointer;
}
.tk-success-modal__icon {
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 999px;
    background: rgba(255, 61, 0, 0.1);
    color: var(--fire);
    display: grid;
    place-items: center;
    margin: 0 auto 1rem;
    font-size: 1.5rem;
    font-weight: 900;
}
.tk-success-modal__done {
    margin-top: 18px;
    width: 100%;
}
body.tk-modal-open {
    overflow: hidden;
}
@keyframes tkModalIn {
    from { opacity: 0; transform: translateY(12px) scale(0.98); }
    to { opacity: 1; transform: none; }
}
details {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 14px 16px;
    margin-bottom: 8px;
}
details:hover,
details[open] {
    border-color: #d7b9a3;
}
summary {
    font-weight: 700;
    cursor: pointer;
}
details p {
    margin-top: 8px;
    color: var(--muted);
}

.cta-band {
    padding: 48px 0;
    text-align: center;
}
.cta-band h2 {
    font-size: clamp(28px, 4.4vw, 48px);
    margin: 8px 0 12px;
}
.cta-band .actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 16px;
}
.stick {
    position: fixed;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 90;
    background: var(--ink);
    color: #fff;
    border-radius: 999px;
    padding: 8px 8px 8px 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
    font-size: 13px;
    font-weight: 650;
}
.stick .btn {
    padding: 9px 14px;
}
.ver {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--soft);
}

footer {
    background: #050505;
    color: #c9c3b8;
    padding: 36px 0 18px;
}
.ft {
    display: grid;
    grid-template-columns: 1.4fr repeat(3, 1fr);
    gap: 22px;
}
.ft h4 {
    color: var(--cream);
    margin: 0 0 10px;
    font-size: 13px;
}
.ft a,
.ft p {
    display: block;
    font-size: 13px;
    margin: 7px 0;
    color: #b2ada3;
}
.ft a:hover {
    color: var(--fire);
}
.copy {
    margin-top: 22px;
    padding-top: 14px;
    border-top: 1px solid #222;
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 12px;
    color: #7d7870;
    flex-wrap: wrap;
}

.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition:
        opacity 0.6s ease,
        transform 0.6s ease;
}
.reveal.in {
    opacity: 1;
    transform: none;
}
.page-enter {
    animation: rise 0.5s ease both;
}

@keyframes bob {
    0%,
    100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(3px);
    }
}
@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.07);
    }
}
@keyframes slide {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}
@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(16px);
    }
    to {
        opacity: 1;
        transform: none;
    }
}
@keyframes growBar {
    from {
        width: 12%;
    }
    to {
        width: var(--w, 80%);
    }
}

@media (max-width: 980px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--cream);
        flex-direction: column;
        padding: 12px 6vw 18px;
        border-bottom: 1px solid var(--line);
        align-items: flex-start;
    }
    .nav-links.open {
        display: flex;
    }
    .hamb {
        display: block;
    }
    .mark img.wordmark {
        height: 24px;
    }
    .nav-cta {
        display: none;
    }
    .hero-grid,
    .grid-3,
    .grid-4,
    .grid-2,
    .split,
    .compare,
    .ft,
    .doors,
    .pipeline,
    .wa,
    .map-pages {
        grid-template-columns: 1fr;
    }
    .hero-art {
        min-height: 320px;
    }
    .stats {
        grid-template-columns: 1fr;
    }
    .stick span {
        display: none;
    }
}

/* audience cards */
.doors-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}
.door-plain {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 22px;
    padding: 0;
    min-height: auto;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition:
        transform 0.22s,
        box-shadow 0.22s,
        border-color 0.22s;
}
.door-plain:hover {
    transform: translateY(-6px);
    border-color: var(--fire);
    box-shadow: 0 18px 36px rgba(20, 16, 8, 0.08);
}
.door-plain h3 {
    font-size: 26px;
    margin: 8px 0;
}
.door-plain .door-copy {
    padding: 22px 22px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1;
}
.door-plain .door-copy p {
    color: var(--muted);
    font-size: 14.5px;
}
.door-shot {
    height: 210px;
    overflow: hidden;
    background: #e8e0d2;
}
.door-shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}
.door-plain:hover .door-shot img {
    transform: scale(1.06);
}
.inv-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}
.why-list {
    display: grid;
    gap: 10px;
    padding: 0;
    margin: 12px 0 0;
}
.why-list li {
    list-style: none;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 14px;
    padding: 14px 16px;
}
.week {
    display: grid;
    gap: 10px;
}
.week-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 12px;
    align-items: start;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 14px 16px;
}
.week-item b {
    font-family: Inter, sans-serif;
    color: var(--fire);
    font-size: 13px;
}
.prose {
    max-width: 62ch;
}
.prose p + p {
    margin-top: 12px;
}
.prose p {
    color: #3d3d38;
    font-size: 16px;
}
.note {
    font-size: 13.5px;
    color: var(--muted);
    margin-top: 10px;
}
body {
    padding-bottom: 84px;
}
@media (max-width: 900px) {
    .doors-3,
    .inv-grid {
        grid-template-columns: 1fr;
    }
    .week-item {
        grid-template-columns: 1fr;
    }
}
