/* =========================================================
   SLATE Services — Design System & Stylesheet
   Dual Themes: "bold" (dark) and "inviting" (warm light)
   ========================================================= */

:root {
  /* Type definitions */
  --f-display: "Unbounded", sans-serif;
  --f-sans: "Share Tech Mono", monospace;
  --f-mono: "Share Tech Mono", monospace;

  /* Density scaling variable */
  --d: 1;
  --space-1: calc(4px * var(--d));
  --space-2: calc(8px * var(--d));
  --space-3: calc(12px * var(--d));
  --space-4: calc(16px * var(--d));
  --space-5: calc(24px * var(--d));
  --space-6: calc(32px * var(--d));
  --space-7: calc(48px * var(--d));
  --space-8: calc(64px * var(--d));
  --space-9: calc(96px * var(--d));
  --space-10: calc(128px * var(--d));

  /* Radii */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;

  /* Easing curves */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  /* Heights */
  --nav-h: 64px;
}

/* THEMES ─────────────────────────────────────────────────── */
body[data-theme="bold"] {
  --bg: #0a0a0a;
  --bg-2: #131313;
  --bg-3: #1c1c1c;
  --fg: #f5f5f0;
  --fg-2: #b8b8b3;
  --fg-3: #6c6c68;
  --line: rgba(245, 245, 240, 0.10);
  --line-2: rgba(245, 245, 240, 0.18);
  --accent: #7d8fff;
  --accent-2: #b8c4ff;
  --warm: #e8a87c;
  --sage: #a5c79c;
  --rose: #e87f7f;
  --hi: #fff;
  --shadow-1: 0 1px 0 rgba(255,255,255,0.04) inset, 0 8px 30px rgba(0,0,0,0.4);
}

body[data-theme="inviting"] {
  --bg: #f5f3ee;
  --bg-2: #ebe8e0;
  --bg-3: #e0dcd0;
  --fg: #1a1a18;
  --fg-2: #555550;
  --fg-3: #908b80;
  --line: rgba(26, 26, 24, 0.10);
  --line-2: rgba(26, 26, 24, 0.18);
  --accent: #4a5fe5;
  --accent-2: #8390ff;
  --warm: #d97742;
  --sage: #6b9a5c;
  --rose: #d56a6a;
  --hi: #000;
  --shadow-1: 0 1px 0 rgba(255,255,255,0.6) inset, 0 8px 30px rgba(0,0,0,0.08);
}

/* RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--f-sans);
  background: var(--bg);
  color: var(--fg);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: background 0.5s var(--ease-out), color 0.5s var(--ease-out);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
img, svg { display: block; max-width: 100%; }

/* TYPE ───────────────────────────────────────────────────── */
.display {
  font-family: var(--f-display);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.display em { font-style: italic; color: var(--accent); }
.build-typewriter-wrapper {
  display: inline-block;
  vertical-align: baseline;
  white-space: nowrap;
  position: relative;
}
.build-typewriter-wrapper .typewriter-text {
  font-style: italic;
  color: var(--accent);
}
.typewriter-cursor {
  color: var(--accent);
  animation: typewriter-blink 0.8s step-end infinite;
  margin-left: 2px;
}
@keyframes typewriter-blink {
  from, to { color: transparent }
  50% { color: var(--accent) }
}
.eyebrow {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-3);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 6px; height: 6px;
  background: var(--accent);
  border-radius: 50%;
}
.mono { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.02em; }
.lead { font-size: 16px; line-height: 1.6; color: var(--fg-2); text-wrap: pretty; max-width: 60ch; }

/* LAYOUT ─────────────────────────────────────────────────── */
.wrap {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 var(--space-6);
}
@media (max-width: 720px) {
  .wrap { padding: 0 var(--space-4); }
}

/* HERO LAYOUT ───────────────────────────────────────────── */
.hero-content {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: var(--space-7);
  align-items: center;
  min-height: calc(100vh - var(--nav-h));
}
.hero-canvas-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  max-width: 480px;
  margin: 0 auto;
}
@media (max-width: 960px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: var(--space-5);
    padding: var(--space-6) 0;
    min-height: auto;
  }
  .hero-canvas-wrapper {
    max-width: 320px;
    height: 320px;
  }
}

/* NAV ────────────────────────────────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--line);
  background: color-mix(in oklab, var(--bg) 80%, transparent);
  backdrop-filter: blur(12px) saturate(140%);
  -webkit-backdrop-filter: blur(12px) saturate(140%);
  transition: background 0.5s var(--ease-out), border-color 0.5s;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: var(--space-5);
}
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-5);
  font-size: 14px;
}
.nav-links a {
  position: relative;
  color: var(--fg-2);
  transition: color 0.2s var(--ease-out);
  padding: 6px 0;
}
.nav-links a:hover { color: var(--fg); }
.nav-links a.active { color: var(--fg); }
.nav-links a.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--accent);
}
.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: var(--r-md);
  background: var(--fg);
  color: var(--bg);
  font-size: 13px;
  font-weight: 500;
  transition: transform 0.2s var(--ease-out), background 0.2s, color 0.2s;
}
.nav-cta:hover { transform: translateY(-1px); }
.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.nav-burger {
  display: none;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--line-2);
  cursor: pointer;
}
.nav-burger svg { width: 18px; height: 18px; stroke: var(--fg); }

.mobile-nav {
  position: fixed;
  inset: var(--nav-h) 0 auto 0;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: var(--space-5) var(--space-4);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  z-index: 49;
  transform: translateY(-100%);
  opacity: 0;
  transition: transform 0.4s var(--ease-out), opacity 0.4s var(--ease-out), background 0.5s var(--ease-out);
  pointer-events: none;
}
.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav a { padding: 10px 0; font-size: 18px; border-bottom: 1px solid var(--line); }

@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
}

/* BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: var(--r-md);
  font-size: 15px;
  font-weight: 500;
  transition: transform 0.2s var(--ease-out), background 0.2s, color 0.2s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--fg);
  color: var(--bg);
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--line-2);
}
.btn-ghost:hover { background: var(--bg-2); }
.btn-arrow {
  width: 18px; height: 18px;
  transition: transform 0.3s var(--ease-out);
  stroke: currentColor;
}
.btn:hover .btn-arrow { transform: translate(3px, -3px); }

/* SECTIONS ───────────────────────────────────────────────── */
section { padding: var(--space-9) 0; position: relative; }
#hero { padding: 0; }
@media (max-width: 720px) {
  section { padding: var(--space-7) 0; }
  #hero { padding: 0; }
}
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  column-gap: var(--space-5);
  row-gap: var(--space-5);
  margin-bottom: var(--space-7);
  flex-wrap: wrap;
}
.section-head h2 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: var(--space-3) 0 0;
}
.section-head h2 em { font-style: italic; color: var(--accent); }
.section-head p { color: var(--fg-2); max-width: 42ch; margin: 0; }

/* CARDS ──────────────────────────────────────────────────── */
.card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--space-5);
  transition: transform 0.3s var(--ease-out), border-color 0.3s;
}
.card:hover { transform: translateY(-2px); border-color: var(--line-2); }

.fac-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--space-5);
}
.fac {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--space-5);
  position: relative;
  overflow: hidden;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s var(--ease-out), border-color 0.3s;
}
.fac:hover { transform: translateY(-3px); border-color: var(--line-2); }
.fac h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: var(--space-2) 0;
}
.fac h3 em { font-style: italic; color: var(--accent); }
.fac p { color: var(--fg-2); font-size: 14px; margin: 0 0 var(--space-3); line-height: 1.5; }
.fac .specs { display: flex; flex-wrap: wrap; gap: 6px; margin-top: auto; }
.fac .num {
  font-family: var(--f-mono);
  font-size: 11px;
  color: var(--fg-3);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

/* Card sizes */
.fac.lg { grid-column: span 8; }
.fac.md { grid-column: span 6; }
.fac.sm { grid-column: span 4; }
.fac.full { grid-column: span 12; }

/* Coming Soon styling */
.fac.coming-soon {
  border: 1px dashed var(--line-2);
  opacity: 0.75;
  background: transparent;
}
.fac.coming-soon:hover {
  opacity: 0.95;
  border-color: var(--accent);
}
.fac.coming-soon .num::after {
  content: " · COMING SOON";
  color: var(--accent);
}

@media (max-width: 960px) {
  .fac.lg, .fac.md, .fac.sm { grid-column: span 12; }
}

/* PLACEHOLDERS ───────────────────────────────────────────── */
.placeholder {
  background: var(--bg-2);
  border: 1px dashed var(--line-2);
  border-radius: var(--r-md);
  background-image: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 8px,
    var(--line) 8px,
    var(--line) 9px
  );
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.placeholder::after {
  content: attr(data-label);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-3);
  background: var(--bg);
  padding: 4px 8px;
  border-radius: 4px;
  border: 1px solid var(--line);
}

/* FOOTER ─────────────────────────────────────────────────── */
footer {
  border-top: 1px solid var(--line);
  padding: var(--space-7) 0 var(--space-5);
  font-size: 14px;
  color: var(--fg-2);
}
.foot-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-7);
}
.foot-grid h4 {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-3);
  margin: 0 0 var(--space-3);
  font-weight: 500;
}
.foot-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.foot-grid a:hover { color: var(--fg); }
.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-5);
  border-top: 1px solid var(--line);
  flex-wrap: wrap;
  gap: var(--space-3);
  font-family: var(--f-mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--fg-3);
}
@media (max-width: 720px) {
  .foot-grid { grid-template-columns: 1fr 1fr; }
}

/* UTILS ──────────────────────────────────────────────────── */
.dot { display: inline-block; width: 8px; height: 8px; background: var(--accent); border-radius: 50%; }
.divider { height: 1px; background: var(--line); margin: var(--space-6) 0; }
.tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--fg-2);
  white-space: nowrap;
}
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-5); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-5); }
@media (max-width: 960px) {
  .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* LOGO ───────────────────────────────────────────────────── */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--fg);
}
.logo-mark { width: 22px; height: 22px; }
.logo-wordmark {
  font-family: var(--f-sans);
  font-weight: 600;
  letter-spacing: 0.18em;
  font-size: 14px;
  text-transform: uppercase;
}

/* Theme Toggle Button Style */
.theme-toggle {
  background: transparent;
  border: 1px solid var(--line-2);
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--fg);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s;
  padding: 0;
  flex-shrink: 0;
}
.theme-toggle svg {
  width: 15px;
  height: 15px;
  display: none;
  fill: currentColor;
}
body[data-theme="bold"] .theme-toggle .sun {
  display: block;
}
body[data-theme="inviting"] .theme-toggle .moon {
  display: block;
}
.theme-toggle:hover {
  border-color: var(--accent);
  background: var(--bg-2);
}

/* ── CUSTOM CURSOR ───────────────────────────────────────── */
.cursor {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transform: translate3d(-50%, -50%, 0);
  will-change: transform;
  display: none; /* Hidden by default, shown via media queries */
}
.cursor-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
}
.cursor-ring {
  width: 36px;
  height: 36px;
  border: 1px solid var(--accent);
  transition: width 0.22s var(--ease-out), height 0.22s var(--ease-out),
              background 0.22s var(--ease-out), border-color 0.22s;
  background: transparent;
}
.cursor-ring.on {
  width: 56px;
  height: 56px;
  background: color-mix(in oklab, var(--accent) 14%, transparent);
  border-color: color-mix(in oklab, var(--accent) 60%, transparent);
}
.cursor-ring.click {
  width: 24px;
  height: 24px;
  background: color-mix(in oklab, var(--accent) 30%, transparent);
}

@media (hover: hover) and (pointer: fine) {
  body.has-cursor {
    cursor: none;
  }
  body.has-cursor a,
  body.has-cursor button,
  body.has-cursor input,
  body.has-cursor textarea,
  body.has-cursor select,
  body.has-cursor .pillar {
    cursor: none;
  }
  .cursor {
    display: block;
  }
}

/* ── REVEAL ANIMATIONS (fallback / initialization) ────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  will-change: transform, opacity;
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
  }
}

/* ── FORMS & INQUIRY ──────────────────────────────────────── */
.form-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: var(--space-7);
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 720px) {
  .form-card {
    padding: var(--space-5) var(--space-4);
  }
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-4);
  margin-top: var(--space-5);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  position: relative;
}
.form-group.full-width {
  grid-column: span 2;
}
@media (max-width: 600px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
  .form-group.full-width {
    grid-column: span 1;
  }
}
.form-group label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-2);
}
.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--f-sans);
  background: var(--bg-2);
  color: var(--fg);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 14px 18px;
  font-size: 16px;
  transition: border-color 0.2s var(--ease-out), background-color 0.2s var(--ease-out);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--bg-3);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-group.error-state input,
.form-group.error-state select,
.form-group.error-state textarea {
  border-color: var(--rose);
}
.form-error-msg {
  font-family: var(--f-mono);
  font-size: 10px;
  color: var(--rose);
  margin-top: 4px;
}

/* SUCCESS CARD ───────────────────────────────────────────── */
.success-card {
  display: none;
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: var(--space-7);
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: var(--shadow-1);
}
.success-card svg {
  margin: 0 auto var(--space-4);
  color: var(--sage);
  width: 64px;
  height: 64px;
}
.success-card h3 {
  font-family: var(--f-display);
  font-weight: 400;
  font-size: 40px;
  margin: 0 0 var(--space-3);
  line-height: 1.1;
}
.success-card p {
  color: var(--fg-2);
  max-width: 42ch;
  margin: 0 auto var(--space-5);
}

/* ── SPLASH SCREEN ───────────────────────────────────────── */
body.splash-open { overflow: hidden; }
.splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-7);
  overflow: hidden;
}
.splash.hidden { display: none; }
.splash::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 80px 80px;
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 80%);
          mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, #000 30%, transparent 80%);
  opacity: 0.5;
  pointer-events: none;
}
.splash-stage {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  transform-origin: 50% 50%;
  will-change: transform, opacity;
}
.splash-frame { width: 200px; height: 200px; display: flex; align-items: center; justify-content: center; }
.splash-svg { width: 100%; height: 100%; overflow: visible; }
.splash-dots circle { fill: var(--fg-3); opacity: 0; }
.splash-traveler { fill: var(--accent); }
.splash-traveler-halo {
  fill: var(--accent);
  opacity: 0.25;
  transform-origin: center;
  transform-box: fill-box;
}
.splash-traveler-grp { opacity: 0; }
.splash-word {
  font-family: var(--f-display);
  font-size: clamp(48px, 9vw, 96px);
  line-height: 1;
  letter-spacing: 0.32em;
  margin-left: 0.32em;
  color: var(--fg);
  opacity: 0;
}
.splash-tag {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--fg-3);
  opacity: 0;
}
.splash-meta {
  position: absolute;
  bottom: var(--space-6);
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-3);
  opacity: 0;
}
.splash-meta .splash-dot { display: inline-block; width: 4px; height: 4px; background: var(--accent); border-radius: 50%; }
.splash-skip {
  position: absolute;
  top: var(--space-5);
  right: var(--space-5);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-3);
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  cursor: pointer;
  transition: color 0.2s, background 0.2s, border-color 0.2s;
  opacity: 0;
}
.splash-skip:hover { color: var(--fg); background: var(--bg-2); border-color: var(--accent); }

/* hero emerges from splash zoom */
body.splash-open main, body.splash-open nav.nav, body.splash-open footer { opacity: 0; pointer-events: none; }
body.splash-done main, body.splash-done nav.nav, body.splash-done footer {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.6s var(--ease-out);
}

@media (prefers-reduced-motion: reduce) {
  .splash { display: none; }
  body.splash-open { overflow: auto; }
  body.splash-open main, body.splash-open nav.nav, body.splash-open footer { opacity: 1; pointer-events: auto; }
}
