/* ═══════════════════════════════════════════════════════
   Shannon Section — Home-style redesign
   ═══════════════════════════════════════════════════════ */

/* ── Visibility ─────────────────────────────────────── */
.shannon-section { display: none !important; }
body.nav-shannon .shannon-section { display: block !important; }

body.nav-shannon .shannon-section {
    animation: sh-section-in 0.55s cubic-bezier(0.22, 1, 0.36, 1) both;
}
/* opacity-only — no transform so position:fixed cursor is not broken */
@keyframes sh-section-in {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* ── Section wrapper ─────────────────────────────────── */
.shannon-section {
    width: 100%;
    background: var(--bg-primary);
    color: var(--text-primary);
    overflow: hidden;
    position: relative;
    padding-bottom: 100px;
}

/* ── Custom cursor — same as home ───────────────────── */
.shannon-section,
.shannon-section * { cursor: none !important; }

.sh-cursor {
    position: fixed;
    top: 0; left: 0;
    width: 16px; height: 16px;
    border-radius: 50%;
    background: #ffffff;
    mix-blend-mode: difference;
    pointer-events: none;
    z-index: 99999;
    transform: translate(-50%, -50%);
    transition: width 0.18s ease, height 0.18s ease, opacity 0.2s ease;
    will-change: left, top;
}
.sh-cursor--hover  { width: 26px; height: 26px; background: rgba(255,255,255,0.7); }
.sh-cursor--hidden { opacity: 0; }

/* ── Inner wrapper — same as hf-inner ──────────────── */
.sh-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 56px 40px 0;
}

/* ── Top fade from page bg ──────────────────────────── */
.shannon-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 80px;
    background: linear-gradient(to bottom, var(--bg-primary), transparent);
    z-index: 3;
    pointer-events: none;
}

/* ══════════════════════════════════════════════════════
   HERO
══════════════════════════════════════════════════════ */
.sh-hero-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    opacity: 0.45;
    margin-bottom: 16px;
    display: block;
    color: var(--text-primary);
    text-align: center;
}

.sh-hero-title {
    font-size: clamp(96px, 14vw, 200px);
    font-weight: 900;
    letter-spacing: -6px;
    color: var(--text-primary);
    margin: 0 0 20px;
    line-height: 1.0;
    text-align: center;
}

.sh-hero-sub {
    font-size: clamp(14px, 1.4vw, 17px);
    line-height: 1.7;
    color: var(--text-primary);
    opacity: 0.6;
    max-width: 520px;
    margin: 0 auto 36px;
    text-align: center;
}

.sh-hero-cta-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

/* ── Shared buttons ─────────────────────────────────── */
.sh-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 700;
    background: var(--text-primary);
    color: var(--bg-primary);
    border: none;
    cursor: pointer;
    transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.25s;
}
.sh-btn-primary:hover { transform: scale(1.04); box-shadow: 0 8px 24px rgba(0,0,0,0.25); }

.sh-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 24px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    background: none;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}
.sh-btn-ghost:hover { background: rgba(128,128,128,0.1); transform: scale(1.02); }

/* ══════════════════════════════════════════════════════
   STATS BAR — same visual as hf-ql rows
══════════════════════════════════════════════════════ */
.sh-stats {
    display: flex;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
    margin-top: 60px;
}
.sh-stat-item {
    flex: 1;
    padding: 28px 24px;
    text-align: center;
    border-right: 1px solid var(--border-color);
    transition: background 0.2s;
    cursor: default;
}
.sh-stat-item:last-child { border-right: none; }
.sh-stat-item:hover { background: rgba(128,128,128,0.05); }

.sh-stat-num {
    display: block;
    font-size: clamp(28px, 3.5vw, 44px);
    font-weight: 900;
    letter-spacing: -1.5px;
    color: var(--text-primary);
    line-height: 1;
    margin-bottom: 6px;
}
.sh-stat-label {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-primary);
    opacity: 0.45;
    letter-spacing: 0.5px;
}

/* ══════════════════════════════════════════════════════
   SECTION LABELS & TITLES — same as hf-section-title
══════════════════════════════════════════════════════ */
.sh-section-title {
    font-size: clamp(36px, 4.5vw, 64px);
    font-weight: 900;
    letter-spacing: -2px;
    color: var(--text-primary);
    margin: 0 0 24px;
    line-height: 1.0;
}
.sh-section-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    opacity: 0.45;
    display: block;
    margin-bottom: 14px;
    color: var(--text-primary);
}

/* ══════════════════════════════════════════════════════
   FEATURE CAROUSEL — identical to hf-carousel / hf-cc
══════════════════════════════════════════════════════ */
.sh-ql { margin-top: 60px; }

.sh-carousel {
    display: flex;
    gap: 10px;
    align-items: stretch;
}

.sh-cc {
    flex: 1;
    min-width: 0;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 24px 22px 20px;
    min-height: 320px;
    transition: flex 0.45s cubic-bezier(0.4,0,0.2,1),
                background 0.35s ease,
                color 0.35s ease,
                box-shadow 0.35s ease;
    cursor: pointer;
}
.sh-cc-large { flex: 1.6; }
.sh-carousel:has(.sh-cc--active) .sh-cc       { flex: 0.7; }
.sh-carousel:has(.sh-cc--active) .sh-cc-large { flex: 0.7; }
.sh-cc--active                                { flex: 2.4 !important; box-shadow: 0 20px 50px rgba(0,0,0,0.4); }
.sh-cc:not(.sh-cc--active):hover { filter: brightness(1.06); }

/* Color variants — shared base */
.sh-cc-teal  { background: #ffffff; color: #050101; }
.sh-cc-amber { background: #f5a623; color: #6060ff; }
.sh-cc-dark  { background: #ff8686; color: #c0ff42; border: 1px solid rgba(255,255,255,0.08); }
.sh-cc-blue  { background: #1e3a5f; color: #ffffffd0; }

/* Shannon-exclusive color variants (not in home) */
.sh-cc-navy  { background: #86aaff; color: #e2e8f0c6; border: 1px solid rgba(148,163,184,0.15); }
.sh-cc-gold  { background: #36ffa1; color: #ff5ef7; }

/* Active inversions */
.sh-cc-teal.sh-cc--active   { background: #ffc248 !important; color: #5bff49 !important; }
.sh-cc-amber.sh-cc--active  { background: #9f68ff !important; color: #ff7575 !important; }
.sh-cc-dark.sh-cc--active   { background: #f2f2f2c1 !important; color: #000000 !important; border-color: transparent; }
.sh-cc-blue.sh-cc--active   { background: #61ffb2 !important; color: #4efffc !important; }
.sh-cc-navy.sh-cc--active   { background: #7dd3fc !important; color: #c1ff3d !important; border-color: transparent; }
.sh-cc-gold.sh-cc--active   { background: #131010 !important; color: #faf8ff !important; }

/* Arrow */
.sh-cc-body { display: flex; flex-direction: column; height: 100%; justify-content: space-between; }

.sh-cc-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    opacity: 0.45;
    margin-bottom: 14px;
    display: block;
}
.sh-cc-h {
    font-size: clamp(20px, 2.5vw, 32px);
    font-weight: 900;
    letter-spacing: -0.8px;
    line-height: 1.1;
    margin: 0;
}
.sh-cc-p {
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.6;
    margin: 12px 0 0;
    max-width: 260px;
}
.sh-cc-bottom { margin-top: 28px; }

.sh-cc-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 700;
    background: none;
    border: none;
    padding: 0;
    color: inherit;
    cursor: pointer;
    transition: gap 0.2s;
}
.sh-cc:hover .sh-cc-cta { gap: 14px; }

.sh-cc-arrow {
    width: 38px; height: 38px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
}
.sh-cc:hover .sh-cc-arrow { transform: scale(1.1) rotate(-8deg); }

.sh-cc-teal  .sh-cc-arrow,
.sh-cc-amber .sh-cc-arrow { background: #000; color: #fff; }
.sh-cc-dark  .sh-cc-arrow,
.sh-cc-blue  .sh-cc-arrow  { background: #fff; color: #000; }
.sh-cc-navy  .sh-cc-arrow  { background: #ff6a6a; color: #639cf2; }
.sh-cc-gold  .sh-cc-arrow  { background: #9af860; color: #c9a227; }

.sh-cc-teal.sh-cc--active  .sh-cc-arrow  { background: #1b1b1b; color: #ffffff; }
.sh-cc-amber.sh-cc--active .sh-cc-arrow  { background: #ffbb55; color: #8bdd85; }
.sh-cc-dark.sh-cc--active  .sh-cc-arrow  { background: #ffffff;    color: #151515; }
.sh-cc-blue.sh-cc--active  .sh-cc-arrow  { background: #7dd3fc;    color: #ff7e7e; }
.sh-cc-navy.sh-cc--active  .sh-cc-arrow  { background: #8e6bff; color: #7dd3fc; }
.sh-cc-gold.sh-cc--active  .sh-cc-arrow  { background: #ffdc5c; color: #c476ff; }

.sh-cc-ghost {
    position: absolute;
    bottom: -12px; right: 12px;
    font-size: 130px;
    font-weight: 900;
    line-height: 1;
    opacity: 0.055;
    pointer-events: none;
    transition: opacity 0.3s, transform 0.3s;
    user-select: none;
    letter-spacing: -4px;
}
.sh-cc:hover .sh-cc-ghost { opacity: 0.1; transform: scale(1.04) rotate(3deg); }

/* Light theme navy/dark-card fix */
[data-theme="light"] .sh-cc-dark,
[data-theme="system"] .sh-cc-dark { background: #f0f0f0; color: #111; border-color: transparent; }
[data-theme="light"] .sh-cc-dark .sh-cc-arrow,
[data-theme="system"] .sh-cc-dark .sh-cc-arrow { background: #000; color: #fff; }
/* navy stays dark in both themes — it's Shannon's signature card */
[data-theme="light"] .sh-cc-navy .sh-cc-arrow,
[data-theme="system"] .sh-cc-navy .sh-cc-arrow { background: #7dd3fc; color: #0a1628; }

/* ══════════════════════════════════════════════════════
   ARCHITECTURE — midnight navy (Shannon-specific, ≠ home)
══════════════════════════════════════════════════════ */
.sh-arch {
    background: var(--bg-primary);
    padding: clamp(56px, 7vw, 96px) clamp(24px, 5vw, 64px);
    overflow: hidden;
    margin-top: 12px;
}

.sh-arch-header { margin-bottom: 48px; }

.sh-arch-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-primary);
    opacity: 0.5;
    display: block;
    margin-bottom: 12px;
}
.sh-arch-h {
    font-size: clamp(40px, 6vw, 88px);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 0.95;
    color: var(--text-primary);
    margin: 0 0 16px;
}
.sh-arch-sub {
    font-size: clamp(15px, 1.4vw, 18px);
    font-weight: 500;
    color: var(--text-primary);
    opacity: 0.6;
    margin: 0;
}

.sh-tech-grid {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    perspective: 1200px;
    margin-top: 8px;
}

.sh-tech-card {
    flex: 1;
    min-width: 0;
    background: rgba(128,128,128,0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    display: flex;
    overflow: hidden;
    transform: rotate(var(--rot,0deg)) translate(var(--tx,0),var(--ty,0));
    transition: transform 0.35s cubic-bezier(0.34,1.56,0.64,1), box-shadow 0.3s, border-color 0.3s;
    cursor: default;
    min-height: 300px;
}
.sh-tech-card:hover {
    transform: rotate(0deg) translate(0,0) scale(1.03);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border-color: rgba(128,128,128,0.3);
    z-index: 2;
}

.sh-tech-vtitle {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    transform: rotate(180deg);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-primary);
    opacity: 0.3;
    padding: 20px 14px;
    flex-shrink: 0;
    border-right: 1px solid var(--border-color);
}

.sh-tech-body {
    padding: 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.sh-tech-pill {
    display: inline-block;
    background: rgba(128,128,128,0.12);
    color: var(--text-primary);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 100px;
    align-self: flex-start;
    border: 1px solid var(--border-color);
    opacity: 0.8;
}

.sh-tech-name {
    font-size: clamp(18px, 2.2vw, 26px);
    font-weight: 900;
    letter-spacing: -0.8px;
    color: var(--text-primary);
    margin: 0;
}
.sh-tech-desc {
    font-size: 13px;
    line-height: 1.65;
    color: var(--text-primary);
    opacity: 0.5;
    margin: 0;
}

/* ══════════════════════════════════════════════════════
   RISK FRAMEWORK — amber, like hf-impact / hf-tob
══════════════════════════════════════════════════════ */
.sh-risk-section {
    background: var(--bg-primary);
    padding: clamp(56px, 7vw, 100px) clamp(24px, 5vw, 64px);
    margin-top: 12px;
    overflow: hidden;
    position: relative;
}

.sh-risk-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-primary);
    opacity: 0.45;
    display: block;
    margin-bottom: 12px;
}
.sh-risk-h {
    font-size: clamp(36px, 5.5vw, 80px);
    font-weight: 900;
    letter-spacing: -2.5px;
    line-height: 1.0;
    color: var(--text-primary);
    margin: 0 0 48px;
}

.sh-tiers {
    display: flex;
    align-items: stretch;
    min-height: 360px;
    border-radius: 20px;
    overflow: hidden;
}
.sh-tier {
    flex: 1;
    padding: clamp(22px, 3vw, 36px) clamp(16px, 2.5vw, 28px);
    cursor: pointer;
    transition: flex 0.45s cubic-bezier(0.4,0,0.2,1);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
}
.sh-tier--open { flex: 2.4 !important; }
.sh-tier:not(.sh-tier--open):hover { filter: brightness(1.06); }

.sh-tier--green,
.sh-tier--yellow,
.sh-tier--orange,
.sh-tier--red {
    background: rgba(128,128,128,0.08);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--border-color);
    color: var(--text-primary);
}

.sh-tier-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}
.sh-tier-num {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1.5px;
    background: rgba(128,128,128,0.15);
    color: inherit;
    padding: 4px 10px;
    border-radius: 4px;
}
.sh-tier-icon { font-size: 18px; opacity: 0.4; }
.sh-tier-h {
    font-size: clamp(22px, 3vw, 40px);
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1.0;
    text-transform: uppercase;
    margin: 0 0 14px;
}
.sh-tier-divider {
    height: 1px;
    background: currentColor;
    opacity: 0.25;
    margin-bottom: 14px;
    flex-shrink: 0;
}
.sh-tier-p {
    font-size: clamp(12px, 1.1vw, 14px);
    line-height: 1.65;
    opacity: 0.75;
    margin: 0;
    flex: 1;
}
.sh-tier-more {
    margin-top: 14px;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.35s ease;
}
.sh-tier--open .sh-tier-more { max-height: 160px; opacity: 1; }
.sh-tier-more p { font-size: 13px; font-weight: 600; opacity: 0.8; margin: 0; }

/* ghost watermark */
.sh-risk-ghost {
    position: absolute;
    bottom: -40px; right: -10px;
    font-size: clamp(80px, 16vw, 220px);
    font-weight: 900;
    letter-spacing: -6px;
    text-transform: uppercase;
    opacity: 0.07;
    pointer-events: none;
    user-select: none;
    color: var(--text-primary);
    white-space: nowrap;
    line-height: 1;
}

/* ══════════════════════════════════════════════════════
   SECURITY — dark, same as hf-onchain
══════════════════════════════════════════════════════ */
.sh-secure {
    background: #080808;
    padding: clamp(80px, 10vw, 140px) clamp(20px, 5vw, 64px);
    text-align: center;
    margin-top: 12px;
}
.sh-secure-inner { max-width: 680px; margin: 0 auto; }

.sh-secure-h {
    font-size: clamp(26px, 3.8vw, 54px);
    font-weight: 800;
    letter-spacing: -1.5px;
    color: #ffffff;
    margin: 0 0 20px;
}
.sh-secure-p {
    font-size: clamp(15px, 1.4vw, 19px);
    line-height: 1.75;
    color: rgba(255,255,255,0.55);
    margin: 0 auto;
}
.sh-secure-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 16px;
    display: block;
}
.sh-secure-divider {
    height: 1px;
    background: rgba(255,255,255,0.1);
    max-width: 680px;
    margin: 64px auto;
}
.sh-secure-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-top: 40px;
}
.sh-secure-pill {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 11px 20px;
    border-radius: 100px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.65);
    transition: background 0.2s, transform 0.2s cubic-bezier(0.34,1.56,0.64,1), color 0.2s;
}
.sh-secure-pill:hover { background: rgba(255,255,255,0.12); transform: scale(1.04); color: #fff; }

.sh-secure-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-top: 32px;
    font-size: 15px;
    font-weight: 600;
    color: rgba(255,255,255,0.55);
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
}
.sh-secure-cta:hover { color: #ffffff; }
.sh-secure-cta-arrow {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: #fff;
    color: #000;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    transition: transform 0.25s cubic-bezier(0.34,1.56,0.64,1);
}
.sh-secure-cta:hover .sh-secure-cta-arrow { transform: translateX(5px); }

/* ══════════════════════════════════════════════════════
   CTA — like hf-fc full-width cards
══════════════════════════════════════════════════════ */
.sh-features-cta { margin-top: 12px; display: flex; flex-direction: column; gap: 12px; }

.sh-fc {
    border-radius: 28px;
    padding: clamp(52px, 7vw, 96px) clamp(32px, 6vw, 80px);
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.34,1.56,0.64,1);
    position: relative;
    overflow: hidden;
}
.sh-fc:hover { transform: scale(1.01); }
.sh-fc--lime { background: #bf49ff; color: #0e1400; }
.sh-fc--blue { background: #ff7e28; color: #ffffff; }

.sh-fc-eyebrow {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.5;
    margin-bottom: 20px;
    display: block;
}
.sh-fc-h {
    font-size: clamp(32px, 5vw, 72px);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1.05;
    margin: 0 auto 20px;
    max-width: 840px;
}
.sh-fc-p {
    font-size: clamp(14px, 1.4vw, 17px);
    line-height: 1.7;
    opacity: 0.7;
    max-width: 520px;
    margin: 0 auto 36px;
}
.sh-fc-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: transform 0.25s, box-shadow 0.25s;
}
.sh-fc-btn:hover { transform: scale(1.04); box-shadow: 0 8px 24px rgba(0,0,0,0.25); }
.sh-fc--lime .sh-fc-btn { background: #000; color: #fff; }
.sh-fc--blue .sh-fc-btn { background: #add8e6; color: #000; }

.sh-fc::before {
    content: '';
    position: absolute;
    inset: -40%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.07) 0%, transparent 60%);
    pointer-events: none;
}

/* ══════════════════════════════════════════════════════
   SCROLL REVEAL — always visible like erasmus/home
══════════════════════════════════════════════════════ */
.sh-reveal,
.sh-reveal.sh-visible { opacity: 1; transform: none; }
.sh-reveal-delay-1,
.sh-reveal-delay-2,
.sh-reveal-delay-3,
.sh-reveal-delay-4 { animation-delay: 0s; }

/* ══════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
    .sh-inner { padding: 40px 16px 0; }
    .sh-carousel { flex-direction: column; gap: 10px; }
    .sh-cc { min-height: 200px; padding: 22px 20px 20px; }
    .sh-cc-ghost { font-size: 80px; }
    .sh-cc-large { flex: 1; }
    .sh-stats { flex-direction: column; }
    .sh-stat-item { border-right: none; border-bottom: 1px solid var(--border-color); }
    .sh-tech-grid { flex-direction: column; }
    .sh-tech-card { transform: none !important; min-height: 220px; }
    .sh-tiers { flex-direction: column; min-height: 0; }
    .sh-tier { min-height: 200px; }
    .sh-tier--open { flex: none !important; }
    .sh-risk-ghost { display: none; }
    .sh-fc { padding: 44px 24px; }
    .sh-fc-h { font-size: 26px; letter-spacing: -1px; }
}
