/* ═══════════════════════════════════════════════════════════
   TenK Pulse — Visual Redesign (.tk-* classes)
   Block-based modern layout inspired by see5.net templates.
   All classes prefixed .tk-* to avoid collision with existing UI.
   This is a LAYER on top of existing styles.css — additive only.
   ═══════════════════════════════════════════════════════════ */

/* ── 1.1 Story Row ────────────────────────────────────────── */
.tk-story-row{
  display:flex;align-items:center;gap:14px;
  padding:10px 24px;overflow-x:auto;overflow-y:hidden;
  scrollbar-width:none;-webkit-overflow-scrolling:touch;
  background:var(--surface);border-bottom:1px solid var(--border);
  position:relative;
}
.tk-story-row::-webkit-scrollbar{display:none}
.tk-story-wrap{position:relative;display:flex;align-items:center;width:100%}
.tk-story-track{display:flex;gap:14px;overflow-x:auto;scroll-behavior:smooth;
  scrollbar-width:none;flex:1;padding:4px 0}
.tk-story-track::-webkit-scrollbar{display:none}
.tk-story-item{
  display:flex;flex-direction:column;align-items:center;gap:5px;
  flex-shrink:0;cursor:pointer;width:64px;
  transition:transform .15s var(--ease);
}
.tk-story-item:hover{transform:scale(1.06)}
.tk-story-ring{
  width:54px;height:54px;border-radius:50%;
  padding:3px;
  background:linear-gradient(135deg,#f59e0b,#ec4899,#8b5cf6,#3b82f6);
  display:flex;align-items:center;justify-content:center;
}
.tk-story-ring-inner{
  width:100%;height:100%;border-radius:50%;
  background:var(--surface);padding:2px;
  display:flex;align-items:center;justify-content:center;overflow:hidden;
}
.tk-story-ring-inner img,.tk-story-ring-inner .tk-story-avatar{
  width:100%;height:100%;border-radius:50%;object-fit:cover;
  background:var(--surface2);display:flex;align-items:center;
  justify-content:center;font-size:1.2rem;
}
.tk-story-label{
  font-size:.65rem;font-weight:600;color:var(--muted);
  font-family:var(--font-display);
  white-space:nowrap;overflow:hidden;text-overflow:ellipsis;
  max-width:64px;text-align:center;
}
.tk-story-chevron{
  position:absolute;top:50%;transform:translateY(-50%);
  width:30px;height:30px;border-radius:50%;border:1px solid var(--border);
  background:color-mix(in srgb,var(--surface) 92%,transparent);
  backdrop-filter:blur(8px);color:var(--text);
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;box-shadow:var(--shadow-sm);z-index:5;
  transition:background .15s;font-size:.9rem;
}
.tk-story-chevron:hover{background:var(--surface2)}
.tk-story-chevron.tk-prev{right:-2px}
.tk-story-chevron.tk-next{left:-2px}
@media(max-width:1024px){
  .tk-story-row{padding:10px 14px}
  .tk-story-item{width:56px}
  .tk-story-ring{width:48px;height:48px}
  .tk-story-label{font-size:.6rem;max-width:56px}
}

/* ── 1.2 Redesigned Header ────────────────────────────────── */
.tk-header{
  display:flex;align-items:center;justify-content:space-between;
  padding:14px 24px;background:var(--surface);
  border-bottom:1px solid var(--border);gap:20px;
}
.tk-brand{display:flex;align-items:center;gap:12px}
.tk-brand-logo{
  width:42px;height:42px;border-radius:12px;background:var(--grad);
  display:flex;align-items:center;justify-content:center;
  color:var(--accent-ct);flex-shrink:0;
  box-shadow:0 6px 16px -4px rgba(var(--shadow-tint),.55);
}
.tk-brand-text{display:flex;flex-direction:column;line-height:1.2}
.tk-brand-title{font-size:1.1rem;font-weight:800;font-family:var(--font-display)}
.tk-brand-sub{font-size:.7rem;color:var(--muted);font-weight:500}
.tk-nav{display:flex;align-items:center;gap:4px}
.tk-nav-link{
  padding:8px 14px;border-radius:var(--radius-sm);font-size:.85rem;
  font-weight:600;color:var(--muted);background:transparent;border:none;
  cursor:pointer;font-family:var(--font-display);white-space:nowrap;
  transition:background .15s var(--ease),color .15s;
}
.tk-nav-link:hover{background:var(--surface2);color:var(--text)}
.tk-nav-link.active{background:var(--grad);color:var(--accent-ct);
  box-shadow:0 4px 12px -4px rgba(var(--shadow-tint),.5)}
.tk-search-row{
  display:flex;align-items:center;gap:0;padding:10px 24px;
  background:var(--surface);border-bottom:1px solid var(--border);
}
.tk-search-input{
  flex:1;border:1px solid var(--border);border-radius:var(--radius-sm) 0 0 var(--radius-sm);
  padding:10px 16px;font-size:.9rem;font-family:var(--font-data);
  background:var(--surface2);color:var(--text);outline:none;
  transition:border-color .15s;
}
.tk-search-input:focus{border-color:var(--accent)}
.tk-search-btn{
  padding:10px 22px;border:none;border-radius:0 var(--radius-sm) var(--radius-sm) 0;
  background:var(--grad);color:var(--accent-ct);font-weight:700;
  font-family:var(--font-display);font-size:.9rem;cursor:pointer;
  transition:filter .15s;white-space:nowrap;
}
.tk-search-btn:hover{filter:brightness(1.1)}
@media(max-width:1024px){
  .tk-header{padding:12px 14px}
  .tk-nav{display:none}
  .tk-search-row{padding:8px 14px}
}
@media(max-width:640px){
  .tk-brand-title{font-size:.95rem}
  .tk-brand-sub{display:none}
  .tk-brand-logo{width:36px;height:36px;border-radius:10px}
}

/* ── 1.3 Hero Banner (Slider) ─────────────────────────────── */
.tk-hero{
  position:relative;width:100%;overflow:hidden;
  border-radius:0;min-height:220px;
  background:linear-gradient(135deg,#0f172a 0%,#1e293b 40%,#0f172a 100%);
}
.tk-hero-slide{
  display:none;min-height:220px;padding:48px 40px;
  position:relative;z-index:1;
  background:linear-gradient(135deg,var(--hero-c1,#0f172a),var(--hero-c2,#1e293b));
}
.tk-hero-slide.active{display:flex;flex-direction:column;justify-content:center;
  animation:tkFadeIn .4s var(--ease)}
.tk-hero-tag{
  display:inline-block;padding:4px 14px;border-radius:999px;
  background:color-mix(in srgb,var(--accent) 25%,transparent);
  color:var(--accent);font-size:.78rem;font-weight:700;
  font-family:var(--font-display);margin-bottom:12px;width:fit-content;
}
.tk-hero-title{
  font-size:2rem;font-weight:800;color:#fff;font-family:var(--font-display);
  line-height:1.3;margin-bottom:10px;max-width:600px;
}
.tk-hero-desc{
  font-size:.95rem;color:rgba(255,255,255,.72);line-height:1.7;
  font-family:var(--font-display);max-width:520px;margin-bottom:20px;
}
.tk-hero-btns{display:flex;gap:10px;flex-wrap:wrap}
.tk-hero-btn{
  padding:11px 28px;border-radius:var(--radius-sm);font-weight:700;
  font-size:.9rem;font-family:var(--font-display);cursor:pointer;
  transition:transform .15s var(--ease),filter .15s;border:2px solid transparent;
}
.tk-hero-btn.primary{background:var(--accent,#f59e0b);color:#0f172a;
  border-color:var(--accent,#f59e0b)}
.tk-hero-btn.primary:hover{filter:brightness(1.15);transform:translateY(-1px)}
.tk-hero-btn.outline{background:transparent;border-color:rgba(255,255,255,.35);color:#fff}
.tk-hero-btn.outline:hover{border-color:#fff;background:rgba(255,255,255,.08)}
.tk-hero-nav{
  position:absolute;top:50%;transform:translateY(-50%);
  width:40px;height:40px;border-radius:50%;border:1px solid rgba(255,255,255,.2);
  background:rgba(0,0,0,.3);backdrop-filter:blur(6px);color:#fff;
  display:flex;align-items:center;justify-content:center;
  cursor:pointer;z-index:5;transition:background .15s;font-size:1.1rem;
}
.tk-hero-nav:hover{background:rgba(0,0,0,.5)}
.tk-hero-nav.tk-prev{left:14px}
.tk-hero-nav.tk-next{right:14px}
.tk-hero-dots{display:flex;justify-content:center;gap:8px;padding-bottom:14px}
.tk-hero-dot{
  width:8px;height:8px;border-radius:99px;background:rgba(255,255,255,.3);
  cursor:pointer;transition:width .25s var(--ease),background .25s;
}
.tk-hero-dot.active{width:24px;background:#f59e0b}
@keyframes tkFadeIn{from{opacity:0;transform:translateY(6px)}to{opacity:1;transform:translateY(0)}}
@media(max-width:768px){
  .tk-hero-slide{padding:32px 20px;min-height:180px}
  .tk-hero-title{font-size:1.4rem}
  .tk-hero-desc{font-size:.85rem}
}

/* ── 1.4 Color Category Cards ─────────────────────────────── */
.tk-cat-grid{
  display:grid;grid-template-columns:repeat(4,1fr);gap:16px;
  padding:24px;
}
.tk-cat-card{
  border-radius:var(--radius-lg);padding:24px 20px;position:relative;
  overflow:hidden;color:#fff;cursor:pointer;
  transition:transform .18s var(--ease),box-shadow .18s var(--ease);
  min-height:160px;display:flex;flex-direction:column;
}
.tk-cat-card:hover{transform:translateY(-4px);box-shadow:0 12px 32px -8px rgba(0,0,0,.35)}
.tk-cat-card:active{transform:translateY(0) scale(.98)}
.tk-cat-ic{
  width:44px;height:44px;border-radius:50%;
  background:rgba(255,255,255,.22);backdrop-filter:blur(4px);
  display:flex;align-items:center;justify-content:center;
  font-size:1.3rem;margin-bottom:14px;
}
.tk-cat-title{font-size:1rem;font-weight:800;font-family:var(--font-display);margin-bottom:4px}
.tk-cat-line{width:32px;height:2px;background:rgba(255,255,255,.45);border-radius:2px;margin:6px 0}
.tk-cat-desc{font-size:.8rem;opacity:.82;line-height:1.5;font-family:var(--font-display)}
.tk-cat-card:nth-child(1){background:linear-gradient(135deg,#f97316,#f59e0b)}
.tk-cat-card:nth-child(2){background:linear-gradient(135deg,#ef4444,#dc2626)}
.tk-cat-card:nth-child(3){background:linear-gradient(135deg,#1e3a5f,#0f172a)}
.tk-cat-card:nth-child(4){background:linear-gradient(135deg,#0ea5e9,#3b82f6)}
@media(max-width:900px){
  .tk-cat-grid{grid-template-columns:repeat(2,1fr);gap:12px;padding:16px}
  .tk-cat-card{min-height:140px;padding:18px 16px}
}
@media(max-width:480px){
  .tk-cat-grid{grid-template-columns:repeat(2,1fr);gap:10px;padding:14px}
  .tk-cat-card{min-height:120px;padding:14px 12px}
  .tk-cat-ic{width:36px;height:36px;font-size:1.1rem;margin-bottom:10px}
  .tk-cat-title{font-size:.88rem}
}

/* ── 1.5 Tools Section (Two Column) ───────────────────────── */
.tk-tools{
  display:grid;grid-template-columns:1fr 1fr;gap:40px;
  padding:48px 24px;align-items:center;
}
.tk-tools-text{display:flex;flex-direction:column;gap:20px}
.tk-tools-title{
  font-size:1.6rem;font-weight:800;color:var(--text);
  font-family:var(--font-display);line-height:1.35;
}
.tk-tools-desc{font-size:.9rem;color:var(--muted);line-height:1.7;font-family:var(--font-display)}
.tk-tools-features{display:flex;flex-direction:column;gap:16px;margin-top:8px}
.tk-tools-feat{display:flex;align-items:flex-start;gap:12px}
.tk-tools-feat-ic{
  width:36px;height:36px;border-radius:50%;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;font-size:1rem;
}
.tk-tools-feat-text{display:flex;flex-direction:column;gap:2px}
.tk-tools-feat-title{font-size:.9rem;font-weight:700;font-family:var(--font-display);color:var(--text)}
.tk-tools-feat-desc{font-size:.8rem;color:var(--muted);line-height:1.5}
.tk-tools-visual{
  position:relative;display:flex;align-items:center;justify-content:center;
  min-height:300px;
}
.tk-tools-collage{
  display:grid;grid-template-columns:1fr 1fr;gap:12px;
  position:relative;z-index:1;
}
.tk-tools-img-box{
  border-radius:var(--radius);overflow:hidden;position:relative;
  background:var(--surface2);aspect-ratio:4/3;
  display:flex;align-items:center;justify-content:center;
  border:1px solid var(--border);
}
.tk-tools-img-box svg{width:48px;height:48px;color:var(--muted);opacity:.5}
.tk-tools-img-box:nth-child(2){transform:translateY(16px)}
.tk-tools-decor{
  position:absolute;width:120px;height:120px;border-radius:24px;
  background:var(--accent);opacity:.1;z-index:0;
}
.tk-tools-decor:nth-child(1){top:-20px;right:20px}
.tk-tools-decor:nth-child(2){bottom:-10px;left:20px;width:80px;height:80px}
@media(max-width:768px){
  .tk-tools{grid-template-columns:1fr;gap:24px;padding:32px 16px}
  .tk-tools-visual{min-height:200px;order:-1}
  .tk-tools-title{font-size:1.3rem}
}

/* ── 1.6 Dark Section (Product/Signal Cards) ───────────────── */
.tk-dark-section{
  background:linear-gradient(180deg,#0f172a 0%,#1e293b 100%);
  padding:48px 24px;position:relative;overflow:hidden;
}
.tk-dark-section::before{
  content:'';position:absolute;inset:0;
  background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E") repeat;
}
.tk-dark-title{
  font-size:1.6rem;font-weight:800;color:#fff;font-family:var(--font-display);
  text-align:center;margin-bottom:6px;position:relative;z-index:1;
}
.tk-dark-subtitle{
  display:block;width:48px;height:3px;background:#f59e0b;border-radius:2px;
  margin:0 auto 28px;position:relative;z-index:1;
}
.tk-dark-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:20px;
  position:relative;z-index:1;
}
.tk-dark-card{
  background:rgba(255,255,255,.06);backdrop-filter:blur(8px);
  border:1px solid rgba(255,255,255,.08);border-radius:var(--radius-lg);
  overflow:hidden;transition:transform .18s var(--ease),box-shadow .18s;
}
.tk-dark-card:hover{transform:translateY(-4px);box-shadow:0 16px 40px -8px rgba(0,0,0,.4)}
.tk-dark-card-img{
  height:140px;background:linear-gradient(135deg,rgba(255,255,255,.05),rgba(255,255,255,.02));
  display:flex;align-items:center;justify-content:center;
  font-size:2.5rem;
}
.tk-dark-card-body{padding:18px}
.tk-dark-card-title{font-size:1rem;font-weight:700;color:#fff;font-family:var(--font-display);margin-bottom:6px}
.tk-dark-card-desc{font-size:.82rem;color:rgba(255,255,255,.6);line-height:1.6;margin-bottom:14px;font-family:var(--font-display)}
.tk-dark-card-btn{
  display:inline-block;padding:8px 24px;border-radius:999px;
  background:#f59e0b;color:#0f172a;font-size:.82rem;font-weight:700;
  font-family:var(--font-display);border:none;cursor:pointer;
  transition:filter .15s,transform .12s;
}
.tk-dark-card-btn:hover{filter:brightness(1.15);transform:scale(1.03)}
@media(max-width:900px){
  .tk-dark-grid{grid-template-columns:1fr 1fr;gap:14px}
}
@media(max-width:640px){
  .tk-dark-grid{grid-template-columns:1fr;gap:14px}
  .tk-dark-section{padding:32px 16px}
  .tk-dark-card-img{height:110px}
}

/* ── 1.7 Testimonials ─────────────────────────────────────── */
.tk-testi{
  padding:48px 24px;background:var(--bg);
}
.tk-testi-title{
  text-align:center;font-size:1.5rem;font-weight:800;
  font-family:var(--font-display);color:var(--text);margin-bottom:28px;
}
.tk-testi-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:20px;max-width:900px;margin:0 auto}
.tk-testi-card{
  background:var(--surface2);border:1px solid var(--border);
  border-radius:var(--radius);padding:24px;text-align:center;
  transition:transform .15s var(--ease);
}
.tk-testi-card:hover{transform:translateY(-3px)}
.tk-testi-avatar{
  width:52px;height:52px;border-radius:50%;background:var(--grad);
  margin:0 auto 12px;display:flex;align-items:center;justify-content:center;
  color:var(--accent-ct);font-size:1.3rem;font-weight:800;
  font-family:var(--font-display);
}
.tk-testi-stars{color:#f59e0b;font-size:.9rem;margin-bottom:10px;letter-spacing:2px}
.tk-testi-text{font-size:.88rem;color:var(--text);line-height:1.7;margin-bottom:12px;font-family:var(--font-display)}
.tk-testi-name{font-size:.85rem;font-weight:700;color:var(--text);font-family:var(--font-display)}
.tk-testi-role{font-size:.75rem;color:var(--muted)}
@media(max-width:640px){
  .tk-testi-grid{grid-template-columns:1fr}
  .tk-testi{padding:32px 16px}
}

/* ── 1.8 CTA Full-Width ───────────────────────────────────── */
.tk-cta{
  background:linear-gradient(135deg,#0ea5e9,#06b6d4);
  padding:48px 24px;text-align:center;position:relative;overflow:hidden;
}
.tk-cta::before{
  content:'';position:absolute;top:-50%;right:-20%;width:400px;height:400px;
  border-radius:50%;background:rgba(255,255,255,.06);
}
.tk-cta-title{
  font-size:1.5rem;font-weight:800;color:#fff;font-family:var(--font-display);
  margin-bottom:8px;position:relative;z-index:1;
}
.tk-cta-desc{font-size:.9rem;color:rgba(255,255,255,.8);margin-bottom:20px;position:relative;z-index:1;font-family:var(--font-display)}
.tk-cta-btn{
  display:inline-flex;align-items:center;gap:8px;padding:12px 32px;
  border-radius:999px;background:#fff;color:#0ea5e9;font-weight:700;
  font-size:.95rem;font-family:var(--font-display);border:none;cursor:pointer;
  transition:transform .15s var(--ease),box-shadow .15s;
  position:relative;z-index:1;
}
.tk-cta-btn:hover{transform:translateY(-2px);box-shadow:0 8px 24px -4px rgba(0,0,0,.25)}
@media(max-width:640px){
  .tk-cta{padding:32px 16px}
  .tk-cta-title{font-size:1.2rem}
}

/* ── 1.9 Blog/Articles Section ────────────────────────────── */
.tk-blog{
  padding:48px 24px;background:var(--bg);
}
.tk-blog-title{
  text-align:center;font-size:1.5rem;font-weight:800;
  font-family:var(--font-display);color:var(--text);margin-bottom:28px;
}
.tk-blog-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:20px;max-width:900px;margin:0 auto}
.tk-blog-card{
  background:var(--surface);border:1px solid var(--border);
  border-radius:var(--radius);overflow:hidden;
  transition:transform .18s var(--ease),box-shadow .18s;
}
.tk-blog-card:hover{transform:translateY(-3px);box-shadow:var(--shadow)}
.tk-blog-card-img{
  height:160px;background:linear-gradient(135deg,var(--surface2),var(--surface));
  display:flex;align-items:center;justify-content:center;
  font-size:2.5rem;
}
.tk-blog-card-body{padding:18px}
.tk-blog-card-title{font-size:1rem;font-weight:700;font-family:var(--font-display);margin-bottom:8px;color:var(--text)}
.tk-blog-card-btn{
  display:inline-block;padding:6px 22px;border-radius:999px;
  background:#f59e0b;color:#0f172a;font-size:.8rem;font-weight:700;
  font-family:var(--font-display);border:none;cursor:pointer;
  transition:filter .15s;
}
.tk-blog-card-btn:hover{filter:brightness(1.15)}
@media(max-width:640px){
  .tk-blog-grid{grid-template-columns:1fr}
  .tk-blog{padding:32px 16px}
}

/* ── 1.10 Footer ──────────────────────────────────────────── */
.tk-footer{
  background:#0f172a;color:rgba(255,255,255,.7);padding:40px 24px 20px;
}
.tk-footer-grid{
  display:grid;grid-template-columns:1.5fr 1fr 1fr 1fr;gap:32px;
  max-width:1100px;margin:0 auto;
}
.tk-footer-brand{display:flex;flex-direction:column;gap:10px}
.tk-footer-brand-logo{
  width:36px;height:36px;border-radius:10px;background:var(--grad);
  display:flex;align-items:center;justify-content:center;
  color:var(--accent-ct);flex-shrink:0;
}
.tk-footer-brand-desc{font-size:.82rem;line-height:1.7;font-family:var(--font-display)}
.tk-footer-col-title{
  font-size:.9rem;font-weight:700;color:#fff;font-family:var(--font-display);
  margin-bottom:12px;
}
.tk-footer-links{display:flex;flex-direction:column;gap:8px}
.tk-footer-link{
  font-size:.82rem;color:rgba(255,255,255,.55);text-decoration:none;
  font-family:var(--font-display);transition:color .15s;cursor:pointer;
}
.tk-footer-link:hover{color:#f59e0b;text-decoration:none}
.tk-footer-bottom{
  text-align:center;margin-top:32px;padding-top:16px;
  border-top:1px solid rgba(255,255,255,.08);
  font-size:.72rem;color:rgba(255,255,255,.35);
  font-family:var(--font-display);
}
@media(max-width:768px){
  .tk-footer-grid{grid-template-columns:1fr 1fr;gap:24px}
}
@media(max-width:480px){
  .tk-footer-grid{grid-template-columns:1fr}
}

/* ── 2. Bottom Navigation (Mobile) ────────────────────────── */
.tk-bottom-nav{
  display:none;position:fixed;inset-inline:0;bottom:0;z-index:40;
  background:color-mix(in srgb,var(--surface) 95%,transparent);
  backdrop-filter:blur(16px);border-top:1px solid var(--border);
  padding:6px 0 calc(6px + env(safe-area-inset-bottom,0px));
}
.tk-bn-items{display:flex;justify-content:space-around;align-items:center}
.tk-bn-item{
  display:flex;flex-direction:column;align-items:center;gap:3px;
  padding:6px 12px;background:transparent;border:none;
  color:var(--muted);cursor:pointer;position:relative;
  transition:color .15s;
}
.tk-bn-item .tk-bn-ic{font-size:1.2rem;line-height:1}
.tk-bn-item .tk-bn-label{font-size:.62rem;font-weight:600;font-family:var(--font-display)}
.tk-bn-item.active{color:var(--accent)}
.tk-bn-item.active::before{
  content:'';position:absolute;top:-6px;left:50%;transform:translateX(-50%);
  width:18px;height:2.5px;border-radius:2px;background:var(--accent);
}
.tk-bn-badge{
  position:absolute;top:2px;right:4px;min-width:16px;height:16px;
  border-radius:99px;background:var(--bad);color:#fff;
  font-size:.6rem;font-weight:800;display:flex;align-items:center;
  justify-content:center;padding:0 4px;font-family:var(--font-data);
}
@media(max-width:1024px){
  .tk-bottom-nav{display:block}
}

/* ── Page sections spacing helper ──────────────────────────── */
.tk-section{margin-top:0}
.tk-section-gap{margin-top:24px}

/* ── Utility ───────────────────────────────────────────────── */
.tk-hidden{display:none !important}
.tk-fade-in{animation:tkFadeIn .4s var(--ease) both}
