/* ==========================================================================
   SCREENSPROUT 🌱 — KIDS SCREEN TIME CONTROLLER & POSTURE GUARD
   Brand Theme: Sprout Green, Sunlight Gold, Armor Blue, Coral Posture Guard
   Engineered by Arutech Digital Ltd.
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=JetBrains+Mono:wght@500;600;700&display=swap');

:root {
  /* Sprout Green & Healthy Growth Palette */
  --sprout-green: #2E7D32;
  --sprout-accent: #4CAF50;
  --sprout-light: #E8F5E9;
  --sprout-soft: #F1F8E9;
  --sprout-glow: rgba(76, 175, 80, 0.35);

  /* Sunlight Reward Gold */
  --reward-gold: #FFB300;
  --reward-bg: #FFF8E1;
  --reward-border: #FFE082;

  /* Armor Shield Blue */
  --armor-blue: #1976D2;
  --armor-bg: #E3F2FD;
  --armor-border: #90CAF9;

  /* Coral Warning & Posture Guard */
  --coral-warning: #D32F2F;
  --coral-bg: #FFEBEE;
  --coral-border: #EF9A9A;

  /* Slate Dark & Neutrals */
  --slate-dark: #0F172A;
  --slate-panel: #1E293B;
  --slate-card: #263548;
  --slate-text: #F8FAFC;
  --neutral-dark: #1F2937;
  --neutral-muted: #64748B;
  --neutral-light: #F8FAFC;
  --border-subtle: #E2E8F0;

  /* Typography */
  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  /* Shadows & Transitions */
  --shadow-sm: 0 4px 12px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 12px 28px -6px rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 24px 48px -12px rgba(46, 125, 50, 0.18);
  --shadow-card: 0 16px 32px rgba(0, 0, 0, 0.06);
}

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

body {
  font-family: var(--font-main);
  background-color: #FAFCF8;
  color: var(--neutral-dark);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ==========================================
   HEADER NAVIGATION
   ========================================== */
.sprout-header {
  background: var(--slate-dark);
  color: var(--slate-text);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.sprout-header .nav-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.back-corporate {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #94A3B8;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.2s ease;
}

.back-corporate:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.25);
  transform: translateX(-3px);
}

.brand-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.brand-pill img {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.4);
}

.brand-pill .brand-title {
  font-weight: 800;
  font-size: 1.2rem;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.brand-pill .brand-sub {
  font-size: 0.75rem;
  color: var(--sprout-accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.92rem;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--sprout-accent);
}

.btn-play-header {
  background: var(--sprout-green);
  color: #ffffff !important;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 700 !important;
  box-shadow: 0 4px 14px rgba(46, 125, 50, 0.4);
  transition: all 0.2s ease !important;
}

.btn-play-header:hover {
  background: var(--sprout-accent);
  transform: translateY(-2px);
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
  position: relative;
  padding: 80px 0 100px;
  background: radial-gradient(120% 100% at 50% 0%, var(--sprout-light) 0%, #FAFCF8 100%);
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}

.hero-bg-leaves {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(76, 175, 80, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: #ffffff;
  border: 1px solid rgba(46, 125, 50, 0.2);
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--sprout-green);
  box-shadow: var(--shadow-sm);
  margin-bottom: 24px;
}

.hero-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--sprout-accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--sprout-accent);
}

.hero-title {
  font-size: 3.4rem;
  font-weight: 800;
  line-height: 1.15;
  color: var(--slate-dark);
  letter-spacing: -0.03em;
  margin-bottom: 22px;
}

.hero-title .text-gradient {
  background: linear-gradient(135deg, var(--sprout-green) 0%, #16A34A 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.18rem;
  color: var(--neutral-muted);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 580px;
}

.hero-ctas {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-primary-hero {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: var(--sprout-green);
  color: #ffffff;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 14px;
  box-shadow: 0 10px 25px rgba(46, 125, 50, 0.35);
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.btn-primary-hero:hover {
  background: #1B5E20;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(46, 125, 50, 0.45);
}

.btn-secondary-hero {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 28px;
  background: #ffffff;
  color: var(--slate-dark);
  text-decoration: none;
  font-weight: 700;
  font-size: 1.05rem;
  border: 1px solid var(--border-subtle);
  border-radius: 14px;
  box-shadow: var(--shadow-sm);
  transition: all 0.2s ease;
}

.btn-secondary-hero:hover {
  background: var(--sprout-soft);
  border-color: rgba(76, 175, 80, 0.4);
  color: var(--sprout-green);
}

.hero-trust-row {
  display: flex;
  align-items: center;
  gap: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  padding-top: 24px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--neutral-dark);
}

.trust-item svg {
  color: var(--sprout-green);
}

/* ==========================================
   INTERACTIVE HERO MOCKUP & SIMULATOR
   ========================================== */
.hero-mockup-wrapper {
  position: relative;
}

.phone-card {
  background: var(--slate-dark);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 30px 60px rgba(15, 23, 42, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.phone-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.phone-status {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--sprout-accent);
}

.status-dot {
  width: 10px;
  height: 10px;
  background: var(--sprout-accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(76, 175, 80, 0.7); }
  70% { transform: scale(1); box-shadow: 0 0 0 10px rgba(76, 175, 80, 0); }
  100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); }
}

.quota-ring-box {
  background: var(--slate-panel);
  border-radius: 20px;
  padding: 20px;
  text-align: center;
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  position: relative;
}

.quota-time {
  font-family: var(--font-mono);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--sprout-accent);
  line-height: 1.1;
  margin: 10px 0 4px;
}

.quota-label {
  font-size: 0.85rem;
  color: #94A3B8;
  font-weight: 600;
}

.chip-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--reward-bg);
  border: 1px solid var(--reward-border);
  padding: 12px 16px;
  border-radius: 14px;
  color: #92400E;
  margin-bottom: 16px;
}

.chip-bar .chip-count {
  font-weight: 800;
  font-size: 1.1rem;
  color: #B45309;
}

.posture-alert-mock {
  background: var(--coral-bg);
  border: 1px solid var(--coral-border);
  border-radius: 14px;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #991B1B;
  transition: all 0.3s ease;
}

.posture-alert-mock.safe {
  background: var(--sprout-light);
  border-color: rgba(76, 175, 80, 0.4);
  color: #1B5E20;
}

.posture-icon {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(211, 47, 47, 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.posture-alert-mock.safe .posture-icon {
  background: rgba(76, 175, 80, 0.2);
}

/* ==========================================
   UNFAIR ADVANTAGES (WHY WE OUTPERFORM)
   ========================================== */
.advantages-section {
  padding: 100px 0;
  background: #ffffff;
}

.section-head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 64px;
}

.tag-pill {
  display: inline-block;
  padding: 6px 14px;
  background: var(--sprout-soft);
  color: var(--sprout-green);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-radius: 999px;
  margin-bottom: 14px;
}

.section-head h2 {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--slate-dark);
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

.section-head p {
  font-size: 1.12rem;
  color: var(--neutral-muted);
}

.adv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.adv-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 36px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.adv-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: rgba(46, 125, 50, 0.4);
}

.adv-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 24px;
}

.adv-card.green .adv-icon { background: var(--sprout-light); color: var(--sprout-green); }
.adv-card.coral .adv-icon { background: var(--coral-bg); color: var(--coral-warning); }
.adv-card.gold .adv-icon { background: var(--reward-bg); color: #B45309; }
.adv-card.blue .adv-icon { background: var(--armor-bg); color: var(--armor-blue); }

.adv-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--slate-dark);
  margin-bottom: 14px;
}

.adv-card p {
  color: var(--neutral-muted);
  font-size: 1rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.adv-vs-box {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 14px;
  padding: 16px;
  font-size: 0.88rem;
}

.adv-vs-box .vs-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
}

.adv-vs-box .vs-row:last-child {
  margin-bottom: 0;
}

.adv-vs-box .vs-label {
  font-weight: 700;
  width: 100px;
  flex-shrink: 0;
}

.adv-vs-box .vs-label.bad { color: #DC2626; }
.adv-vs-box .vs-label.good { color: var(--sprout-green); }

/* ==========================================
   INTERACTIVE FEATURE DEEP-DIVE (TABS / SIMULATORS)
   ========================================== */
.deepdive-section {
  padding: 100px 0;
  background: var(--slate-dark);
  color: #ffffff;
}

.deepdive-section .section-head h2 { color: #ffffff; }
.deepdive-section .section-head p { color: #94A3B8; }

.tabs-header {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 14px 28px;
  background: var(--slate-panel);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #cbd5e1;
  font-weight: 700;
  font-size: 0.98rem;
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.tab-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.tab-btn.active {
  background: var(--sprout-green);
  color: #ffffff;
  border-color: var(--sprout-green);
  box-shadow: 0 8px 20px rgba(46, 125, 50, 0.4);
}

.tab-pane {
  display: none;
  animation: fadeIn 0.35s ease;
}

.tab-pane.active {
  display: block;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.tab-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  background: var(--slate-panel);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 28px;
  padding: 48px;
}

.tab-content h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 16px;
  color: #ffffff;
}

.tab-content p {
  font-size: 1.08rem;
  color: #94A3B8;
  line-height: 1.7;
  margin-bottom: 24px;
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.96rem;
  color: #e2e8f0;
}

.feature-list-item .check {
  width: 24px;
  height: 24px;
  background: rgba(76, 175, 80, 0.2);
  color: var(--sprout-accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.8rem;
  flex-shrink: 0;
}

/* Simulator Inside Tabs */
.sim-box {
  background: var(--slate-dark);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  padding: 28px;
}

.sim-box-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--sprout-accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Posture Distance Slider Demo */
.distance-demo-wrap {
  text-align: center;
}

.slider-container {
  margin: 24px 0;
}

.distance-slider {
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.15);
  outline: none;
  -webkit-appearance: none;
}

.distance-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--sprout-accent);
  cursor: pointer;
  box-shadow: 0 0 10px var(--sprout-accent);
}

.posture-status-box {
  padding: 20px;
  border-radius: 16px;
  transition: all 0.3s ease;
  font-weight: 700;
  font-size: 1.1rem;
}

/* Math Challenge Demo */
.math-demo-card {
  background: var(--slate-card);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
}

.math-q {
  font-size: 1.8rem;
  font-family: var(--font-mono);
  font-weight: 800;
  margin: 16px 0;
  color: #ffffff;
}

.math-options {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.math-btn {
  padding: 12px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 10px;
  color: #ffffff;
  font-family: var(--font-mono);
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.math-btn:hover {
  background: var(--sprout-green);
  border-color: var(--sprout-green);
}

/* ==========================================
   FEATURE SUMMARY GRID (4 CATEGORIES)
   ========================================== */
.grid-summary-section {
  padding: 100px 0;
  background: var(--neutral-light);
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
}

.summary-cat-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: 24px;
  padding: 36px;
  box-shadow: var(--shadow-sm);
}

.summary-cat-head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
}

.summary-cat-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--sprout-soft);
  color: var(--sprout-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
}

.summary-cat-title {
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--slate-dark);
}

.sub-feature-item {
  margin-bottom: 18px;
}

.sub-feature-item:last-child {
  margin-bottom: 0;
}

.sub-feature-item h4 {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--slate-dark);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.sub-feature-item p {
  font-size: 0.92rem;
  color: var(--neutral-muted);
  line-height: 1.55;
  padding-left: 22px;
}

/* ==========================================
   PRICING MATRIX TABLE (3-TIER STRUCTURE)
   ========================================== */
.pricing-section {
  padding: 100px 0;
  background: #ffffff;
}

.pricing-table-wrapper {
  overflow-x: auto;
  border-radius: 24px;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
  background: #ffffff;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.pricing-table th, .pricing-table td {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-subtle);
}

.pricing-table th {
  background: var(--slate-dark);
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 800;
}

.pricing-table th.highlight-col {
  background: var(--sprout-green);
  vertical-align: middle;
  padding-top: 14px;
  padding-bottom: 14px;
}

.pricing-table th.highlight-col .launch-tag {
  display: block;
  width: fit-content;
  margin: 0 auto 6px;
  background: var(--reward-gold);
  color: var(--slate-dark);
  font-size: 0.72rem;
  font-weight: 800;
  padding: 4px 14px;
  border-radius: 999px;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  letter-spacing: 0.05em;
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.pricing-table tr:hover td {
  background: #F8FAFC;
}

.pricing-table td.highlight-cell {
  background: var(--sprout-soft);
  font-weight: 700;
  color: #1B5E20;
}

.pricing-table tr:hover td.highlight-cell {
  background: #E8F5E9;
}

.feature-col {
  font-weight: 700;
  color: var(--slate-dark);
  width: 32%;
}

.tier-col {
  width: 22%;
  text-align: center;
}

.check-green { color: var(--sprout-green); font-weight: 800; }
.cross-red { color: #94A3B8; }

/* ==========================================
   FOOTER & AGENCY SHOWCASE
   ========================================== */
.sprout-footer {
  background: var(--slate-dark);
  color: #94A3B8;
  padding: 64px 0 36px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.footer-brand-box {
  max-width: 680px;
  margin: 0 auto 36px;
}

.footer-brand-box img {
  height: 48px;
  margin-bottom: 16px;
}

.footer-brand-box h4 {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 800;
  margin-bottom: 10px;
}

.footer-brand-box p {
  font-size: 0.95rem;
  line-height: 1.7;
}

.footer-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.btn-return-corporate {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 26px;
  border: 1px solid rgba(194, 150, 44, 0.4);
  background: rgba(194, 150, 44, 0.08);
  color: #C2962C;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-return-corporate:hover {
  background: rgba(194, 150, 44, 0.16);
  border-color: #C2962C;
  transform: translateY(-2px);
}

.footer-copyright {
  font-size: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 24px;
}

/* ==========================================
   RESPONSIVE QUERIES
   ========================================== */
@media (max-width: 992px) {
  .hero-grid, .adv-grid, .tab-grid, .summary-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hero-title {
    font-size: 2.6rem;
  }
  
  .nav-links {
    display: none;
  }
}

@media (max-width: 600px) {
  .hero-title {
    font-size: 2.1rem;
  }
  .pricing-table th, .pricing-table td {
    padding: 14px 12px;
    font-size: 0.88rem;
  }
}
