/* ===== CHAINRING — style.css ===== */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Work+Sans:wght@300;400;500;600;700&display=swap');

/* ===== CUSTOM PROPERTIES ===== */
:root {
  --black: #1a1a1a;
  --chrome: #c0c0c0;
  --orange: #ff5722;
  --orange-dark: #e64a19;
  --asphalt: #3a3a3a;
  --smoke: #f5f5f5;
  --white: #ffffff;
  --dark-card: #222222;
  --border: rgba(192,192,192,0.15);

  --font-heading: 'Bebas Neue', Impact, sans-serif;
  --font-body: 'Work Sans', system-ui, sans-serif;

  --section-pad: clamp(60px, 8vw, 120px);
  --radius: 4px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--black);
  color: var(--smoke);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; }

/* ===== GRAIN OVERLAY ===== */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 0 clamp(20px, 5vw, 80px);
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(26,26,26,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo {
  font-family: var(--font-heading);
  font-size: 2rem;
  letter-spacing: 0.1em;
  color: var(--white);
  display: flex;
  align-items: center;
  gap: 10px;
}
.nav-logo .logo-ring { width: 32px; height: 32px; animation: spin 8s linear infinite; }
.nav-links {
  display: flex;
  gap: clamp(16px, 2.5vw, 36px);
  list-style: none;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--chrome);
  transition: color var(--transition);
}
.nav-links a:hover { color: var(--orange); }
.nav-cta {
  background: var(--orange);
  color: var(--white);
  padding: 10px 24px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
}
.nav-cta:hover { background: var(--orange-dark); transform: translateY(-1px); }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: var(--chrome); transition: var(--transition); }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--black);
}
.hero-bg-lines {
  position: absolute;
  inset: 0;
  opacity: 0.06;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    var(--chrome) 40px,
    var(--chrome) 41px
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(40px, 6vw, 80px);
  max-width: 1200px;
  width: 100%;
  padding: 80px clamp(20px, 5vw, 80px) 60px;
}
.hero-text { order: 1; }
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--orange);
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(80px, 12vw, 160px);
  line-height: 0.9;
  letter-spacing: 0.02em;
  color: var(--white);
  text-transform: uppercase;
}
.hero-title span { color: var(--orange); }
.hero-tagline {
  margin-top: 20px;
  font-size: clamp(0.85rem, 1.2vw, 1rem);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--chrome);
  font-weight: 400;
}
.hero-actions {
  display: flex;
  gap: 16px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  padding: 16px 40px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: all var(--transition);
  border: 2px solid var(--orange);
}
.btn-primary:hover {
  background: transparent;
  color: var(--orange);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(255,87,34,0.3);
}
.btn-ghost {
  background: transparent;
  color: var(--chrome);
  padding: 16px 40px;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 2px solid rgba(192,192,192,0.3);
  transition: all var(--transition);
}
.btn-ghost:hover {
  border-color: var(--chrome);
  color: var(--white);
  transform: translateY(-2px);
}
.hero-svg-wrap {
  order: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.hero-chainring-svg {
  width: min(480px, 90vw);
  height: auto;
  filter: drop-shadow(0 0 40px rgba(255,87,34,0.25));
}
.hero-chainring-rotate {
  animation: spin 20s linear infinite;
  transform-origin: center;
  transform-box: fill-box;
}
.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(192,192,192,0.5);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--orange), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ===== SECTION COMMON ===== */
.section {
  padding: var(--section-pad) clamp(20px, 5vw, 80px);
  max-width: 1200px;
  margin: 0 auto;
}
.section-full {
  padding: var(--section-pad) 0;
}
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.section-label::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--orange);
}
.section-title {
  font-family: var(--font-heading);
  font-size: clamp(42px, 6vw, 80px);
  line-height: 1;
  letter-spacing: 0.03em;
  color: var(--white);
  text-transform: uppercase;
  margin-bottom: 16px;
}
.section-sub {
  font-size: clamp(0.9rem, 1.2vw, 1.05rem);
  color: var(--chrome);
  max-width: 560px;
  margin-bottom: clamp(40px, 5vw, 64px);
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== FEATURED BIKES ===== */
#bikes { background: var(--black); }
.bikes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}
.bike-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  transform-style: preserve-3d;
  position: relative;
}
.bike-card:hover {
  transform: perspective(600px) rotateY(-4deg) rotateX(2deg) translateY(-6px);
  box-shadow: 12px 20px 48px rgba(0,0,0,0.6), 0 0 0 1px var(--orange);
  border-color: var(--orange);
}
.bike-card-img {
  background: linear-gradient(135deg, #1e1e1e 0%, #2a2a2a 100%);
  padding: 32px 24px 16px;
  position: relative;
  overflow: hidden;
}
.bike-card-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 80%, rgba(255,87,34,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.bike-svg { width: 100%; height: 180px; }
.bike-card-body {
  padding: 20px 24px 24px;
  border-top: 1px solid var(--border);
}
.bike-type {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 6px;
}
.bike-name {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 8px;
}
.bike-desc {
  font-size: 0.83rem;
  color: rgba(192,192,192,0.7);
  margin-bottom: 20px;
  line-height: 1.5;
}
.bike-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.bike-price {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--white);
}
.bike-price span { font-size: 1rem; color: var(--chrome); font-family: var(--font-body); font-weight: 400; }
.btn-cart {
  background: var(--asphalt);
  color: var(--smoke);
  padding: 10px 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.btn-cart:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}

/* ===== WORKSHOP ===== */
#workshop {
  background: linear-gradient(180deg, var(--black) 0%, #141414 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.workshop-inner {
  padding: var(--section-pad) clamp(20px, 5vw, 80px);
  max-width: 1200px;
  margin: 0 auto;
}
.workshop-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.tools-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}
.tool-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px;
  background: linear-gradient(145deg, #2a2a2a, #1e1e1e);
  border: 1px solid var(--border);
  border-radius: 8px;
  text-align: center;
  transition: border-color var(--transition);
}
.tool-card:hover { border-color: var(--orange); }
.tool-card svg { width: 56px; height: 56px; }
.tool-name {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--chrome);
}
.services-grid {
  display: grid;
  gap: 16px;
}
.service-card {
  background: linear-gradient(135deg, #282828 0%, #222222 50%, #1e2020 100%);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 24px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  overflow: hidden;
  transition: all var(--transition);
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: var(--orange);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover { border-color: rgba(255,87,34,0.3); transform: translateX(4px); }
.service-card:hover::before { opacity: 1; }
.service-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: var(--white);
}
.service-desc {
  font-size: 0.8rem;
  color: rgba(192,192,192,0.6);
  margin-top: 3px;
}
.service-price {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--orange);
  white-space: nowrap;
}
.workshop-cta {
  margin-top: 40px;
}

/* ===== GEAR WALL ===== */
#gear {
  padding: var(--section-pad) 0;
  overflow: hidden;
  background: var(--asphalt);
  border-top: 1px solid var(--border);
}
.gear-inner {
  padding: 0 clamp(20px, 5vw, 80px);
  max-width: 1200px;
  margin: 0 auto;
  margin-bottom: 40px;
}
.gear-track-wrap {
  overflow: hidden;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}
.gear-track-wrap:active { cursor: grabbing; }
.gear-track {
  display: flex;
  gap: 20px;
  padding: 8px clamp(20px, 5vw, 80px) 24px;
  width: max-content;
}
.gear-item {
  flex-shrink: 0;
  width: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  padding: 28px 20px;
  background: var(--dark-card);
  border-radius: 50%;
  width: 170px;
  height: 170px;
  border: 2px solid var(--border);
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  text-align: center;
  justify-content: center;
}
.gear-item:hover {
  border-color: var(--orange);
  transform: translateY(-6px) scale(1.04);
  box-shadow: 0 12px 32px rgba(255,87,34,0.2);
}
.gear-item svg { width: 42px; height: 42px; flex-shrink: 0; }
.gear-item-name {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--chrome);
}
.gear-item-price {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--orange);
}

/* ===== RIDE CLUB ===== */
#rides {
  background: #111111;
  border-top: 1px solid var(--border);
}
.rides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.ride-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: all var(--transition);
}
.ride-card:hover {
  border-color: rgba(255,87,34,0.4);
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}
.ride-map {
  background: #1a1f1a;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.ride-body {
  padding: 20px 24px;
}
.ride-name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  color: var(--white);
  margin-bottom: 6px;
}
.ride-meta {
  display: flex;
  gap: 16px;
  font-size: 0.78rem;
  color: var(--chrome);
  margin-bottom: 14px;
}
.ride-meta-item {
  display: flex;
  align-items: center;
  gap: 5px;
}
.ride-difficulty {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--asphalt);
  border: 1px solid var(--chrome);
}
.dot.active { background: var(--orange); border-color: var(--orange); }
.btn-join {
  width: 100%;
  background: transparent;
  color: var(--orange);
  padding: 10px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1px solid var(--orange);
  border-radius: var(--radius);
  transition: all var(--transition);
}
.btn-join:hover { background: var(--orange); color: var(--white); }

/* ===== TESTIMONIALS ===== */
#testimonials {
  background: var(--black);
  border-top: 1px solid var(--border);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 28px;
}
.testimonial-card {
  background: var(--dark-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  position: relative;
  font-family: 'Courier New', monospace;
  transition: all var(--transition);
}
.testimonial-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 12px;
  border: 1px solid transparent;
  background: linear-gradient(135deg, rgba(255,87,34,0.3), transparent 50%) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: destination-out;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity var(--transition);
}
.testimonial-card:hover::before { opacity: 1; }
.testimonial-card:hover { transform: translateY(-4px); }
.tcard-screen {
  background: #0d1a0d;
  border: 1px solid rgba(0,255,0,0.15);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 20px;
  position: relative;
}
.tcard-screen::before {
  content: 'RIDE REVIEW';
  position: absolute;
  top: -10px; left: 12px;
  background: var(--dark-card);
  padding: 0 6px;
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  color: rgba(0,200,0,0.7);
}
.stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
}
.stars svg { width: 16px; height: 16px; }
.tcard-text {
  font-size: 0.85rem;
  line-height: 1.6;
  color: rgba(0, 220, 0, 0.85);
  font-family: 'Courier New', monospace;
}
.tcard-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.tcard-name {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--smoke);
  font-family: var(--font-body);
}
.tcard-bike {
  font-size: 0.72rem;
  color: var(--chrome);
  margin-top: 2px;
  font-family: var(--font-body);
}
.tcard-rating-display {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--orange);
}

/* ===== FOOTER ===== */
footer {
  background: #111;
  border-top: none;
  position: relative;
  overflow: hidden;
}
.footer-chain-border {
  width: 100%;
  height: 24px;
  overflow: hidden;
  position: relative;
}
.chain-svg {
  height: 24px;
  animation: chainScroll 6s linear infinite;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px clamp(20px, 5vw, 80px) 40px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 48px;
}
.footer-brand .footer-logo {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 0.85rem;
  color: var(--chrome);
  line-height: 1.7;
  max-width: 260px;
}
.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 20px;
}
.footer-address {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.85rem;
  color: var(--chrome);
  line-height: 1.6;
  margin-bottom: 16px;
}
.footer-address svg { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; }
.hours-display {
  font-family: 'Courier New', monospace;
  font-size: 0.78rem;
  color: rgba(0,220,0,0.85);
  background: #0d1a0d;
  border: 1px solid rgba(0,200,0,0.2);
  border-radius: 6px;
  padding: 14px;
  line-height: 2;
}
.hours-display .day { color: var(--chrome); }
/* Speedometer newsletter */
.speedo-wrap {
  position: relative;
  text-align: center;
}
.speedo-gauge {
  width: 100%;
  max-width: 200px;
  margin: 0 auto 16px;
}
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.newsletter-form input {
  background: var(--asphalt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--smoke);
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-form input::placeholder { color: rgba(192,192,192,0.4); }
.newsletter-form input:focus { border-color: var(--orange); }
.newsletter-form button {
  background: var(--orange);
  color: var(--white);
  padding: 12px;
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.newsletter-form button:hover { background: var(--orange-dark); }
.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}
.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--asphalt);
  border: 1px solid var(--border);
  border-radius: 50%;
  transition: all var(--transition);
}
.social-link:hover {
  background: var(--orange);
  border-color: var(--orange);
}
.social-link svg { width: 18px; height: 18px; }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px clamp(20px, 5vw, 80px);
  border-top: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(192,192,192,0.4);
}

/* ===== ANIMATIONS ===== */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}
@keyframes chainScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-text { order: 2; }
  .hero-svg-wrap { order: 1; }
  .hero-eyebrow { justify-content: center; }
  .hero-actions { justify-content: center; }
  .workshop-layout { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .bikes-grid { grid-template-columns: 1fr; }
  .tools-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}
