/* ============================================================
   RINGER SCIENCES — Global Stylesheet
   Design language derived from brand deck (May 2026)
   Colors: Navy #0F1B3C | Purple #8957B3 | Accent #B59AD3
           Light Purple #B59AD3 | Slate #CCD6E3 | Muted #9AA8BC
   Font: Inter (web substitute for Aptos)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #0F1B3C;
  --navy2:  #0B1F3D;
  --purple: #8957B3;
  --purple-light: #B59AD3;
  --teal:   #8957B3;
  --slate:  #CCD6E3;
  --muted:  #9AA8BC;
  --gray:   #6B7280;
  --white:  #FFFFFF;
  --off-white: #F4F6FA;
  --dark-green: #1F3D2B;

  --font: 'Inter', system-ui, -apple-system, sans-serif;
  --radius: 12px;
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography ── */
h1, h2, h3, h4, h5 { line-height: 1.15; font-weight: 800; letter-spacing: -0.02em; }
h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
p  { font-size: 1.05rem; color: #3a4a6b; line-height: 1.75; }
a  { text-decoration: none; color: inherit; }

.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple-light);
}

.eyebrow--teal { color: var(--teal); }
.eyebrow--dark { color: var(--purple); }

/* ── Layout ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }
.section--sm { padding: 64px 0; }

/* ── Navigation ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 20px 0;
  background: rgba(15, 27, 60, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: var(--transition);
}

.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
}

.nav__logo {
  display: flex; align-items: center; gap: 10px;
  font-weight: 800; font-size: 1.15rem;
  color: var(--white);
  letter-spacing: -0.02em;
}

.nav__logo span { color: var(--teal); }

.nav__links {
  display: flex; align-items: center; gap: 32px;
  list-style: none;
}

.nav__links a {
  color: var(--slate);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color var(--transition);
}

.nav__links a:hover,
.nav__links a.active { color: var(--white); }

.nav__cta {
  background: var(--teal);
  color: var(--white) !important;
  font-weight: 700 !important;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 0.88rem !important;
  transition: opacity var(--transition) !important;
}
.nav__cta:hover { opacity: 0.85; }

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none; border: none; padding: 4px;
}
.nav__hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: var(--transition);
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font);
  font-weight: 700; font-size: 0.95rem;
  padding: 14px 28px;
  border-radius: 8px;
  border: none; cursor: pointer;
  transition: var(--transition);
  letter-spacing: -0.01em;
}

.btn--primary {
  background: var(--teal);
  color: var(--white);
}
.btn--primary:hover { background: #7B50A6; }

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.3);
}
.btn--outline:hover { border-color: var(--teal); color: var(--teal); }

.btn--dark {
  background: var(--navy);
  color: var(--white);
}
.btn--dark:hover { background: var(--purple); }

.btn--purple {
  background: var(--purple);
  color: var(--white);
}
.btn--purple:hover { background: #7B50A6; }

/* ── Stat callout ── */
.stat-num {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--teal);
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-top: 6px;
}

.stat-desc {
  font-size: 0.95rem;
  color: var(--slate);
  margin-top: 8px;
  line-height: 1.55;
}

/* ── Cards ── */
.card {
  background: var(--white);
  border: 1px solid #e5eaf5;
  border-radius: var(--radius);
  padding: 32px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.card:hover { box-shadow: 0 8px 32px rgba(15,27,60,0.1); transform: translateY(-3px); }

.card--dark {
  background: var(--navy);
  border-color: rgba(255,255,255,0.08);
  color: var(--white);
}
.card--dark p { color: var(--slate); }

/* ── Grids ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }

/* ── Hero ── */
.hero {
  background: var(--navy);
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 70% at 70% 50%, rgba(107,45,160,0.22) 0%, transparent 70%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute; bottom: -1px; left: 0; right: 0; height: 80px;
  background: linear-gradient(to bottom, transparent, var(--white));
  pointer-events: none;
}

.hero__eyebrow { margin-bottom: 20px; }

.hero__title {
  color: var(--white);
  max-width: 820px;
  margin-bottom: 24px;
}

.hero__title em {
  font-style: normal;
  color: var(--teal);
}

.hero__sub {
  font-size: 1.2rem;
  color: var(--slate);
  max-width: 600px;
  margin-bottom: 40px;
  line-height: 1.7;
}

.hero__actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* ── Dark section ── */
.section--dark {
  background: var(--navy);
  color: var(--white);
}
.section--dark h2 { color: var(--white); }
.section--dark p  { color: var(--slate); }
.section--dark .eyebrow { color: var(--teal); }

/* ── Light section ── */
.section--light { background: var(--off-white); }

/* ── Stats bar ── */
.stats-bar {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 56px 0;
}

.stats-bar__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  divide: 1px solid rgba(255,255,255,0.1);
}

.stats-bar__item {
  padding: 0 32px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stats-bar__item:first-child { padding-left: 0; }
.stats-bar__item:last-child  { border-right: none; }

/* ── Ticker ── */
.ticker {
  background: var(--navy);
  padding: 14px 0;
  overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.ticker__track {
  display: flex;
  gap: 64px;
  animation: ticker-scroll 30s linear infinite;
  white-space: nowrap;
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.ticker__item {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.ticker__item span { color: var(--teal); margin-right: 16px; }

/* ── Product pill ── */
.product-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-pill--pulse  { background: rgba(107,45,160,0.12); color: var(--teal); }
.product-pill--echo   { background: rgba(107,45,160,0.14); color: var(--purple-light); }
.product-pill--signal { background: rgba(0,176,240,0.12); color: #00B0F0; }
.product-pill--trace  { background: rgba(255,160,80,0.12); color: #FF9C3D; }
.product-pill--spark  { background: rgba(255,90,100,0.1);  color: #FF6B70; }

/* ── Quote block ── */
.quote-block {
  border-left: 3px solid var(--teal);
  padding: 16px 24px;
  background: rgba(107,45,160,0.05);
  border-radius: 0 8px 8px 0;
}
.quote-block p { color: var(--navy); font-style: italic; font-size: 1.05rem; }
.quote-block cite { font-size: 0.82rem; color: var(--gray); font-style: normal; font-weight: 600; display: block; margin-top: 8px; }

/* ── Team card ── */
.team-card {
  background: var(--white);
  border: 1px solid #e5eaf5;
  border-radius: var(--radius);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.team-card:hover { box-shadow: 0 8px 32px rgba(15,27,60,0.1); transform: translateY(-4px); }

.team-card__img {
  width: 100%; aspect-ratio: 1;
  object-fit: cover;
  background: linear-gradient(135deg, var(--navy) 0%, var(--purple) 100%);
  display: flex; align-items: center; justify-content: center;
}

.team-card__avatar {
  width: 100%; aspect-ratio: 1;
  background: linear-gradient(135deg, var(--navy) 0%, var(--purple) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; font-weight: 800; color: var(--teal);
  letter-spacing: -0.05em;
}

.team-card__body { padding: 24px; }
.team-card__body h3 { font-size: 1.1rem; margin-bottom: 4px; }
.team-card__body .role { font-size: 0.85rem; color: var(--purple); font-weight: 600; margin-bottom: 12px; }
.team-card__body p { font-size: 0.9rem; color: var(--gray); }

/* ── Footer ── */
.footer {
  background: var(--navy);
  color: var(--slate);
  padding: 64px 0 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer__brand p { font-size: 0.9rem; color: var(--muted); margin-top: 12px; max-width: 260px; }
.footer__logo    { font-weight: 800; font-size: 1.1rem; color: var(--white); letter-spacing: -0.02em; }
.footer__logo span { color: var(--teal); }

.footer__col h4  { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.footer__col ul  { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__col a   { font-size: 0.9rem; color: var(--slate); transition: color var(--transition); }
.footer__col a:hover { color: var(--white); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer__bottom p { font-size: 0.82rem; color: var(--muted); }

.social-links { display: flex; gap: 16px; }
.social-links a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; color: var(--muted);
  transition: border-color var(--transition), color var(--transition);
}
.social-links a:hover { border-color: var(--teal); color: var(--teal); }

/* ── Intake tag ── */
.tag {
  display: inline-block;
  background: rgba(107,45,160,0.1);
  color: var(--purple);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 4px;
}

/* ── Divider ── */
.divider { height: 1px; background: #e5eaf5; margin: 48px 0; }

/* ── Badge strip ── */
.logo-strip {
  display: flex; align-items: center;
  gap: 40px; flex-wrap: wrap;
  padding: 32px 0;
  opacity: 0.55;
  filter: grayscale(1);
}

/* ── Page hero (inner pages) ── */
.page-hero {
  background: var(--navy);
  padding: 140px 0 80px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 80% at 80% 40%, rgba(107,45,160,0.25) 0%, transparent 70%);
}
.page-hero h1, .page-hero .eyebrow { position: relative; }
.page-hero h1 { color: var(--white); margin-bottom: 20px; }
.page-hero p  { color: var(--slate); font-size: 1.15rem; max-width: 600px; position: relative; }

/* ── Contact form ── */
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; color: var(--navy); margin-bottom: 6px; }

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid #d0d8ed;
  border-radius: 8px;
  font-family: var(--font);
  font-size: 0.95rem;
  color: var(--navy);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--purple); }

.form-group textarea { resize: vertical; min-height: 120px; }

/* ── Hero Canvas (SVG background overlay) ── */
.hero-canvas {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}
.hero > .container,
.page-hero > .container { position: relative; z-index: 1; }

/* ── Product logo standardization ── */
.product-logo {
  height: 56px;
  width: auto;
  max-width: none;
  display: block;
  margin-bottom: 16px;
  margin-left: 0;
}
.product-logo--sm {
  height: 44px;
  width: auto;
  max-width: 220px;
  display: block;
  margin-bottom: 12px;
}

/* ── Scrolling logo strip ── */
.logo-marquee {
  overflow: hidden;
  padding: 32px 0;
  background: var(--white);
  border-top: 1px solid #e5eaf5;
  border-bottom: 1px solid #e5eaf5;
}
.logo-marquee__label {
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
.logo-marquee__track {
  display: flex;
  gap: 56px;
  align-items: center;
  animation: logo-scroll 35s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.logo-marquee__track:hover { animation-play-state: paused; }
@keyframes logo-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.logo-marquee__track img {
  height: 32px;
  width: auto;
  opacity: 0.55;
  filter: grayscale(1);
  transition: opacity 0.25s, filter 0.25s;
  flex-shrink: 0;
}
.logo-marquee__track img:hover {
  opacity: 0.85;
  filter: grayscale(0);
}

/* ── Case Study card ── */
.cs-card {
  background: var(--white);
  border: 1px solid #e5eaf5;
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow 0.25s, transform 0.25s;
}
.cs-card:hover { box-shadow: 0 12px 40px rgba(15,27,60,0.12); transform: translateY(-4px); }

.cs-card__header {
  background: var(--navy);
  padding: 28px 32px 24px;
  position: relative;
}
.cs-card__category {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple-light);
  margin-bottom: 8px;
}
.cs-card__title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 6px;
}
.cs-card__industry {
  font-size: 0.8rem;
  color: var(--muted);
}
.cs-card__body { padding: 28px 32px; }
.cs-card__section { margin-bottom: 20px; }
.cs-card__section h4 {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 8px;
}
.cs-card__section p { font-size: 0.9rem; color: #3a4a6b; }
.cs-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 20px 0;
}
.cs-stat {
  background: var(--off-white);
  border-radius: 10px;
  padding: 14px 16px;
}
.cs-stat__num {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--purple);
  line-height: 1;
  letter-spacing: -0.03em;
}
.cs-stat__label {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 4px;
}
.cs-stat__desc { font-size: 0.78rem; color: var(--gray); margin-top: 4px; }
.cs-outcome {
  background: rgba(137,87,179,0.07);
  border-left: 3px solid var(--purple);
  border-radius: 0 8px 8px 0;
  padding: 12px 16px;
  font-size: 0.88rem;
  color: var(--navy);
  font-style: italic;
  margin-top: 16px;
}

/* ── Careers page ── */
.benefit-card {
  background: var(--off-white);
  border-radius: 12px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.benefit-card img { width: 40px; height: 40px; }
.benefit-card h4 { font-size: 0.95rem; color: var(--navy); }
.benefit-card p { font-size: 0.88rem; color: var(--gray); margin: 0; }

.testimonial-card {
  background: var(--white);
  border: 1px solid #e5eaf5;
  border-radius: 12px;
  padding: 28px;
}
.testimonial-card p { font-size: 0.95rem; font-style: italic; color: #3a4a6b; }
.testimonial-card .quote-mark { font-size: 3rem; line-height: 1; color: var(--purple-light); margin-bottom: -12px; display: block; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stats-bar__grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .stats-bar__item { border-right: none; padding: 0; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .section { padding: 64px 0; }
  .nav__links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--navy); padding: 24px; gap: 20px; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav__links.open { display: flex; }
  .nav__hamburger { display: flex; }
  .hero__actions { flex-direction: column; }
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  .grid-4 { grid-template-columns: 1fr; }
  .stats-bar__grid { grid-template-columns: 1fr; }
}

/* ══════════════════════════════════════════════
   COMPREHENSIVE MOBILE OVERRIDES
   Fixes inline-style grids that bypass standard breakpoints
   ══════════════════════════════════════════════ */

@media (max-width: 768px) {

  /* ── Hero sections ── */
  .hero { padding: 110px 0 60px; }
  .page-hero { padding: 110px 0 56px; }
  .hero__title { font-size: clamp(2rem, 8vw, 3rem); }

  /* ── Force ALL inline 2-column grids to stack ── */
  div[style*="grid-template-columns:1fr 1fr"],
  div[style*="grid-template-columns: 1fr 1fr"],
  div[style*="grid-template-columns:1fr 2fr"],
  div[style*="grid-template-columns: 1fr 2fr"],
  div[style*="grid-template-columns:2fr 1fr"],
  div[style*="grid-template-columns:1fr 1.4fr"],
  div[style*="grid-template-columns:1fr 1.5fr"],
  div[style*="grid-template-columns:1fr 1.2fr"] {
    grid-template-columns: 1fr !important;
    gap: 28px !important;
  }

  /* ── Reduce large inline gaps on mobile ── */
  div[style*="gap:80px"],  div[style*="gap: 80px"]  { gap: 28px !important; }
  div[style*="gap:72px"],  div[style*="gap: 72px"]  { gap: 28px !important; }
  div[style*="gap:60px"],  div[style*="gap: 60px"]  { gap: 24px !important; }

  /* ── Stats bar: 2 columns on tablet/mobile ── */
  .stats-bar__grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 28px !important;
  }
  .stats-bar__item { padding: 0 !important; }

  /* ── Prevent hero canvas from sitting on top of content ── */
  .hero > .container, .page-hero > .container {
    position: relative; z-index: 1;
  }

  /* ── Case study grid: always full width on mobile ── */
  .grid-2 { grid-template-columns: 1fr !important; }
  .cs-stats { grid-template-columns: repeat(2, 1fr); }

  /* ── Card body padding tighter ── */
  .cs-card__body { padding: 20px; }
  .cs-card__header { padding: 20px; }

  /* ── Inline flex rows that should stack ── */
  div[style*="display:flex"][style*="gap:80px"],
  div[style*="display:flex"][style*="gap:72px"] {
    flex-direction: column !important;
    gap: 24px !important;
  }

  /* ── About page: team collage full width ── */
  .team-card { margin-bottom: 0; }

  /* ── Section padding reduction ── */
  .section { padding: 56px 0; }
  .section--sm { padding: 40px 0; }

  /* ── Ticker text smaller ── */
  .ticker__item { font-size: 0.72rem; }

  /* ── Logo marquee tighter ── */
  .logo-marquee__track { gap: 36px; }
  .logo-marquee__track img { height: 26px; }

  /* ── Contact form grid ── */
  .grid-2[style] { grid-template-columns: 1fr !important; }

  /* ── Benefit cards: 2 cols on tablet ── */
  .grid-4 { grid-template-columns: repeat(2, 1fr); }

  /* ── Case study 7th card columns ── */
  article[style*="grid-column:1/-1"] div[style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }
}

@media (max-width: 480px) {
  /* ── Single column for everything on phones ── */
  .stats-bar__grid { grid-template-columns: 1fr !important; }
  .grid-4 { grid-template-columns: 1fr !important; }
  .cs-stats { grid-template-columns: repeat(2, 1fr); }

  /* ── Typography scale-down ── */
  h1 { font-size: clamp(1.8rem, 9vw, 2.6rem); }
  h2 { font-size: clamp(1.4rem, 6vw, 2rem); }

  /* ── Tighter container padding ── */
  .container { padding: 0 16px; }

  /* ── Hero buttons stack ── */
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { width: 100%; justify-content: center; }

  /* ── Nav CTA pill in mobile menu ── */
  .nav__links { gap: 16px; }
  .nav__cta { display: inline-block; width: auto; }

  /* ── Reduce page-hero padding further ── */
  .page-hero { padding: 100px 0 48px; }
}
