/* ========================================
   BULLTACIO — The Nuttiest Bull on Solana
   ======================================== */

:root {
  --pistachio: #6b824d;
  --pistachio-deep: #4a5f35;
  --forest: #1a2f1a;
  --forest-mid: #243d24;
  --lime: #a8e63a;
  --neon: #7cff3a;
  --candle-green: #39d353;
  --candle-red: #e63946;
  --orange: #f4a261;
  --burnt: #d35c37;
  --desert: #b33d26;
  --desert-deep: #8b2e1a;
  --cream: #e2c891;
  --horn: #ded8b6;
  --sky: #e07a3d;
  --sky-light: #f4b183;
  --ink: #12100c;
  --ink-soft: #1e1a14;
  --white: #faf6ec;
  --muted: #c4b89a;

  --font-display: "Bangers", Impact, "Arial Black", sans-serif;
  --font-body: "Nunito", system-ui, sans-serif;

  --radius: 18px;
  --border: 3.5px solid var(--ink);
  --shadow: 6px 6px 0 var(--ink);
  --shadow-lg: 8px 8px 0 var(--ink);
  --shadow-hover: 10px 10px 0 var(--ink);

  --nav-h: 78px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
}

body {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--white);
  background: var(--forest);
  line-height: 1.5;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

body.is-menu-open {
  overflow: hidden;
}

body.has-custom-cursor {
  cursor: none;
}

body.has-custom-cursor a,
body.has-custom-cursor button {
  cursor: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  border: none;
  background: none;
  cursor: pointer;
  color: inherit;
}

ul,
ol {
  list-style: none;
}

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
}

.container {
  width: min(1120px, calc(100% - 2.5rem));
  margin-inline: auto;
}

.section {
  padding: clamp(4rem, 10vw, 7rem) 0;
  position: relative;
}

.section__header {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 3.5rem);
  max-width: 720px;
  margin-inline: auto;
}

.section__eyebrow {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
  margin-bottom: 0.75rem;
}

.section__title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  letter-spacing: 0.04em;
  line-height: 1.05;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 3px 3px 0 var(--ink);
  margin-bottom: 1rem;
}

.section__lead {
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  color: var(--muted);
  font-weight: 700;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.85rem 1.6rem;
  border: var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow);
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease), background 0.2s ease;
  white-space: nowrap;
  position: relative;
}

.btn:hover {
  transform: translate(-2px, -3px);
  box-shadow: var(--shadow-hover);
}

.btn:active {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--ink);
}

.btn--primary {
  background: linear-gradient(180deg, var(--lime) 0%, var(--candle-green) 100%);
  color: var(--ink);
}

.btn--primary:hover {
  background: linear-gradient(180deg, #c4ff5a 0%, var(--lime) 100%);
}

.btn--secondary {
  background: var(--cream);
  color: var(--ink);
}

.btn--secondary:hover {
  background: #f0e0b0;
}

.btn--buy {
  background: linear-gradient(180deg, var(--lime) 0%, var(--candle-green) 100%);
  color: var(--ink);
  padding: 0.55rem 1.1rem;
  font-size: 1.05rem;
  box-shadow: 4px 4px 0 var(--ink);
}

.btn--icon {
  width: 52px;
  height: 52px;
  padding: 0;
  background: var(--ink-soft);
  color: var(--white);
  border-radius: 50%;
}

.btn--icon:hover {
  background: var(--pistachio);
  color: var(--ink);
}

/* ---------- Intro ---------- */
.intro {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--forest);
  display: grid;
  place-items: center;
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.intro.is-done {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.intro__pistachio {
  width: 48px;
  height: 64px;
  background: radial-gradient(circle at 35% 35%, #9bc46a, var(--pistachio) 55%, var(--pistachio-deep));
  border: 3px solid var(--ink);
  border-radius: 50% 50% 48% 48% / 58% 58% 42% 42%;
  box-shadow: inset -6px -8px 0 rgba(0, 0, 0, 0.15), 4px 4px 0 var(--ink);
  animation: introShake 0.35s ease 0.25s, introPop 0.5s var(--ease-bounce) forwards;
  position: relative;
}

.intro__pistachio::before {
  content: "";
  position: absolute;
  inset: 18% 42% auto;
  width: 16%;
  height: 55%;
  background: var(--cream);
  border-radius: 4px;
  border: 1.5px solid var(--ink);
}

@keyframes introShake {
  0%,
  100% {
    transform: translateX(0) rotate(0);
  }
  25% {
    transform: translateX(-6px) rotate(-8deg);
  }
  75% {
    transform: translateX(6px) rotate(8deg);
  }
}

@keyframes introPop {
  0% {
    transform: scale(0.4);
    opacity: 0;
  }
  60% {
    transform: scale(1.15);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

/* ---------- Custom cursor ---------- */
.cursor,
.cursor-trail {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 10000;
  opacity: 0;
  transition: opacity 0.2s ease;
}

body.has-custom-cursor .cursor,
body.has-custom-cursor .cursor-trail {
  opacity: 1;
}

.cursor {
  width: 14px;
  height: 14px;
  margin: -7px 0 0 -7px;
  border-radius: 50%;
  background: var(--neon);
  box-shadow: 0 0 12px var(--neon), 0 0 24px rgba(124, 255, 58, 0.4);
  mix-blend-mode: screen;
}

.cursor.is-pulse {
  transform: scale(1.8);
  transition: transform 0.15s ease;
}

.cursor-trail {
  width: 28px;
  height: 36px;
  margin: -18px 0 0 -14px;
  background: radial-gradient(circle at 40% 35%, #9bc46a, var(--pistachio));
  border: 2px solid var(--ink);
  border-radius: 50% 50% 45% 45% / 55% 55% 40% 40%;
  opacity: 0.35 !important;
  filter: blur(0.2px);
}

/* ---------- Navigation ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: height 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
  background: rgba(26, 47, 26, 0.72);
  backdrop-filter: blur(10px);
  border-bottom: 3px solid transparent;
}

.nav.is-scrolled {
  --nav-h: 64px;
  background: rgba(18, 16, 12, 0.92);
  border-bottom-color: var(--ink);
  box-shadow: 0 4px 0 rgba(168, 230, 58, 0.15);
}

.nav__inner {
  width: min(1200px, calc(100% - 2rem));
  margin-inline: auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  z-index: 1001;
}

.nav__logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  transition: transform 0.35s var(--ease-bounce);
}

.nav__brand:hover .nav__logo {
  transform: rotate(-8deg) scale(1.08);
}

.nav__name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.04em;
  color: var(--lime);
  text-shadow: 2px 2px 0 var(--ink);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 0.15rem 1.15rem;
}

.nav__link {
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  position: relative;
  padding: 0.35rem 0;
  transition: color 0.2s ease;
}

.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
  border-radius: 2px;
}

.nav__link:hover {
  color: var(--lime);
}

.nav__link:hover::after {
  transform: scaleX(1);
}

.nav__toggle {
  display: none;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  z-index: 1001;
  border: var(--border);
  border-radius: 12px;
  background: var(--cream);
  box-shadow: 3px 3px 0 var(--ink);
}

.nav__toggle span {
  display: block;
  width: 20px;
  height: 3px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s ease;
}

.nav__toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}

.nav__toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav__toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: calc(100svh - var(--nav-h));
  display: flex;
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem) 0 4rem;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: linear-gradient(180deg, #c45c2a 0%, var(--sky) 28%, var(--orange) 55%, #c9683a 72%, var(--desert) 100%);
}

.hero__sky {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 18%, rgba(250, 230, 180, 0.55) 0%, transparent 28%),
    radial-gradient(circle at 78% 12%, rgba(255, 200, 120, 0.25) 0%, transparent 22%);
}

.hero__stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__stars span {
  position: absolute;
  width: 3px;
  height: 3px;
  background: rgba(255, 245, 220, 0.85);
  border-radius: 50%;
  animation: twinkle 3s ease-in-out infinite;
}

@keyframes twinkle {
  0%,
  100% {
    opacity: 0.3;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.4);
  }
}

.hero__mountains {
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: 18%;
  height: 34%;
  background: linear-gradient(180deg, transparent 0%, transparent 40%, rgba(140, 40, 20, 0.3) 100%);
  clip-path: polygon(
    0% 100%,
    0% 55%,
    8% 42%,
    14% 58%,
    22% 35%,
    30% 52%,
    38% 28%,
    48% 48%,
    56% 22%,
    64% 45%,
    72% 30%,
    80% 50%,
    88% 38%,
    100% 55%,
    100% 100%
  );
}

.hero__mountains--far {
  background: #8b3a22;
  bottom: 22%;
  height: 28%;
  opacity: 0.85;
}

.hero__mountains--near {
  background: linear-gradient(180deg, #a84428 0%, #7a2a18 100%);
  bottom: 14%;
  height: 32%;
  clip-path: polygon(
    0% 100%,
    0% 60%,
    6% 48%,
    12% 62%,
    20% 40%,
    28% 58%,
    36% 35%,
    45% 55%,
    54% 30%,
    62% 52%,
    70% 38%,
    78% 58%,
    86% 42%,
    100% 60%,
    100% 100%
  );
}

.hero__ground {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 22%;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(90, 30, 15, 0.35) 0%, transparent 40%),
    linear-gradient(180deg, #c45a32 0%, #9a3a22 45%, #6e2818 100%);
  border-top: 3px solid rgba(30, 15, 10, 0.35);
}

.hero__ground::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      95deg,
      transparent 0 40px,
      rgba(0, 0, 0, 0.04) 40px 42px
    );
  opacity: 0.6;
}

.hero__chart {
  position: absolute;
  right: 2%;
  bottom: 28%;
  width: min(280px, 28vw);
  height: 120px;
  opacity: 0.55;
  background:
    linear-gradient(to top, transparent 0%, transparent 20%, var(--neon) 20%, var(--neon) 55%, transparent 55%),
    linear-gradient(to top, transparent 0%, transparent 35%, var(--neon) 35%, var(--neon) 70%, transparent 70%),
    linear-gradient(to top, transparent 0%, transparent 10%, var(--neon) 10%, var(--neon) 80%, transparent 80%),
    linear-gradient(to top, transparent 0%, transparent 45%, var(--neon) 45%, var(--neon) 90%, transparent 90%);
  background-size: 18% 100%, 18% 100%, 18% 100%, 18% 100%;
  background-position: 10% 0, 35% 0, 60% 0, 85% 0;
  background-repeat: no-repeat;
  filter: drop-shadow(0 0 8px rgba(124, 255, 58, 0.5));
  animation: chartPulse 2.8s ease-in-out infinite;
  mask-image: linear-gradient(90deg, transparent, #000 20%, #000 80%, transparent);
}

@keyframes chartPulse {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.45;
  }
  50% {
    transform: translateY(-6px);
    opacity: 0.7;
  }
}

.hero__dust {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero__dust span {
  position: absolute;
  bottom: 10%;
  width: 4px;
  height: 4px;
  background: rgba(255, 220, 170, 0.55);
  border-radius: 50%;
  animation: dustFloat linear infinite;
}

@keyframes dustFloat {
  0% {
    transform: translateY(0) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 0.7;
  }
  100% {
    transform: translateY(-70vh) translateX(30px);
    opacity: 0;
  }
}

.hero__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.pistachio-float {
  position: absolute;
  width: 22px;
  height: 30px;
  background: radial-gradient(circle at 35% 30%, #b5d47a, var(--pistachio) 60%, var(--pistachio-deep));
  border: 2px solid var(--ink);
  border-radius: 50% 50% 48% 48% / 58% 58% 42% 42%;
  animation: floatNut linear infinite;
  opacity: 0.85;
}

.pistachio-float::after {
  content: "";
  position: absolute;
  left: 42%;
  top: 18%;
  width: 14%;
  height: 55%;
  background: var(--cream);
  border-radius: 2px;
  border: 1px solid var(--ink);
}

.mini-candle {
  position: absolute;
  width: 10px;
  animation: floatCandle linear infinite;
}

.mini-candle::before {
  content: "";
  display: block;
  width: 2px;
  height: 8px;
  background: var(--ink);
  margin: 0 auto;
}

.mini-candle::after {
  content: "";
  display: block;
  width: 10px;
  height: 22px;
  background: var(--neon);
  border: 2px solid var(--ink);
  border-radius: 2px;
  box-shadow: 0 0 10px rgba(124, 255, 58, 0.45);
}

@keyframes floatNut {
  0% {
    transform: translateY(0) rotate(0deg);
  }
  100% {
    transform: translateY(-110vh) rotate(360deg);
  }
}

@keyframes floatCandle {
  0% {
    transform: translateY(0) rotate(-4deg);
    opacity: 0;
  }
  10% {
    opacity: 0.9;
  }
  100% {
    transform: translateY(-110vh) rotate(8deg);
    opacity: 0;
  }
}

.hero__speedlines {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -18deg,
    transparent 0 38px,
    rgba(255, 255, 255, 0.03) 38px 40px
  );
  mask-image: radial-gradient(ellipse at 70% 50%, #000 10%, transparent 65%);
  pointer-events: none;
  opacity: 0.5;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: min(1200px, calc(100% - 2.5rem));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
}

.hero__eyebrow {
  display: inline-block;
  font-weight: 900;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--cream);
  border: 3px solid var(--ink);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  box-shadow: 3px 3px 0 var(--ink);
  margin-bottom: 1.1rem;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7.5vw, 6.2rem);
  line-height: 0.95;
  letter-spacing: 0.03em;
  margin-bottom: 1.25rem;
  text-shadow: 4px 4px 0 var(--ink);
}

.hero__title-line {
  display: block;
  color: var(--white);
}

.hero__title-line--accent {
  color: var(--lime);
  -webkit-text-stroke: 1px var(--ink);
}

.hero__lead {
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  color: var(--white);
  max-width: 32ch;
  margin-bottom: 0.75rem;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.35);
}

.hero__tagline {
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  color: var(--cream);
  font-weight: 800;
  max-width: 34ch;
  margin-bottom: 1.75rem;
  text-shadow: 1px 1px 0 rgba(0, 0, 0, 0.3);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

.hero__mascot-wrap {
  position: relative;
  display: grid;
  place-items: center;
  justify-self: center;
  width: min(100%, 520px);
}

.hero__mascot-glow {
  position: absolute;
  width: 70%;
  height: 55%;
  bottom: 12%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(124, 255, 58, 0.35) 0%, transparent 70%);
  filter: blur(20px);
  animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(1);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.08);
  }
}

.hero__mascot {
  position: relative;
  z-index: 2;
  width: min(100%, 480px);
  filter: drop-shadow(0 18px 0 rgba(0, 0, 0, 0.18));
  animation: mascotIdle 4s ease-in-out infinite;
  transform-origin: center bottom;
}

@keyframes mascotIdle {
  0%,
  100% {
    transform: translateY(0) rotate(-1.5deg) scale(1, 1);
  }
  35% {
    transform: translateY(-14px) rotate(1.5deg) scale(1.02, 0.98);
  }
  70% {
    transform: translateY(-6px) rotate(-0.5deg) scale(0.99, 1.01);
  }
}

.hero__mascot-shadow {
  position: absolute;
  bottom: 4%;
  left: 50%;
  width: 55%;
  height: 28px;
  background: rgba(30, 10, 5, 0.35);
  border-radius: 50%;
  transform: translateX(-50%);
  filter: blur(6px);
  animation: shadowPulse 4s ease-in-out infinite;
  z-index: 1;
}

@keyframes shadowPulse {
  0%,
  100% {
    transform: translateX(-50%) scaleX(1);
    opacity: 0.4;
  }
  35% {
    transform: translateX(-50%) scaleX(0.78);
    opacity: 0.25;
  }
}

.hero__flies {
  position: absolute;
  inset: 8% 18% auto;
  height: 40px;
  z-index: 3;
  pointer-events: none;
}

.fly {
  position: absolute;
  width: 10px;
  height: 6px;
  background: var(--ink);
  border-radius: 50%;
}

.fly::before,
.fly::after {
  content: "";
  position: absolute;
  top: -2px;
  width: 7px;
  height: 4px;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 50%;
}

.fly::before {
  left: -5px;
}
.fly::after {
  right: -5px;
}

.fly--1 {
  left: 20%;
  animation: flyBuzz 2.2s ease-in-out infinite;
}

.fly--2 {
  right: 25%;
  animation: flyBuzz 2.8s ease-in-out infinite reverse;
}

@keyframes flyBuzz {
  0%,
  100% {
    transform: translate(0, 0) rotate(0);
  }
  25% {
    transform: translate(12px, -8px) rotate(12deg);
  }
  50% {
    transform: translate(-6px, -14px) rotate(-8deg);
  }
  75% {
    transform: translate(8px, -4px) rotate(6deg);
  }
}

.hero__scroll {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 28px;
  height: 44px;
  border: 3px solid var(--ink);
  border-radius: 16px;
  background: rgba(250, 246, 236, 0.25);
}

.hero__scroll span {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 6px;
  height: 6px;
  margin-left: -3px;
  background: var(--lime);
  border-radius: 50%;
  border: 1.5px solid var(--ink);
  animation: scrollDot 1.6s ease-in-out infinite;
}

@keyframes scrollDot {
  0% {
    top: 8px;
    opacity: 1;
  }
  100% {
    top: 26px;
    opacity: 0;
  }
}

/* Hero entrance after intro */
body.is-ready .hero__copy {
  animation: riseIn 0.7s var(--ease) both;
}

body.is-ready .hero__mascot-wrap {
  animation: chargeIn 0.85s var(--ease) 0.15s both;
}

body.is-ready .hero__actions .btn {
  animation: riseIn 0.55s var(--ease) both;
}

body.is-ready .hero__actions .btn:nth-child(1) {
  animation-delay: 0.35s;
}
body.is-ready .hero__actions .btn:nth-child(2) {
  animation-delay: 0.45s;
}
body.is-ready .hero__actions .btn:nth-child(3) {
  animation-delay: 0.55s;
}

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

@keyframes chargeIn {
  from {
    opacity: 0;
    transform: translateX(60px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

/* ---------- Ticker ---------- */
.ticker {
  background: var(--ink);
  border-block: 4px solid var(--lime);
  overflow: hidden;
  padding: 0.85rem 0;
  position: relative;
  z-index: 5;
}

.ticker__track {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.ticker:hover .ticker__track {
  animation-play-state: paused;
}

.ticker__content {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding-right: 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  letter-spacing: 0.08em;
  color: var(--lime);
  white-space: nowrap;
}

.ticker__content span:nth-child(even) {
  color: var(--orange);
}

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

/* ---------- Lore ---------- */
.lore {
  background:
    radial-gradient(ellipse at 20% 0%, rgba(168, 230, 58, 0.08) 0%, transparent 45%),
    linear-gradient(180deg, var(--forest) 0%, var(--forest-mid) 100%);
}

.lore__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.lore-card {
  background: linear-gradient(165deg, #2a4528 0%, #1e321c 100%);
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.75rem 1.5rem;
  text-align: center;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.lore-card:hover {
  transform: translateY(-8px) rotate(-1.5deg);
  box-shadow: var(--shadow-hover);
}

.lore-card:nth-child(2):hover {
  transform: translateY(-8px) rotate(1.5deg);
}

.lore-card:nth-child(3):hover {
  transform: translateY(-8px) rotate(-1deg) scale(1.02);
}

.lore-card__icon {
  width: 88px;
  height: 88px;
  margin: 0 auto 1.25rem;
  border: var(--border);
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ink-soft);
  box-shadow: 4px 4px 0 var(--ink);
}

.lore-card__icon--pistachio {
  background: radial-gradient(circle at 30% 30%, #3d5a30, var(--ink-soft));
}

.pistachio-shape {
  width: 34px;
  height: 46px;
  background: radial-gradient(circle at 35% 30%, #b5d47a, var(--pistachio) 60%, var(--pistachio-deep));
  border: 2.5px solid var(--ink);
  border-radius: 50% 50% 48% 48% / 58% 58% 42% 42%;
  position: relative;
}

.pistachio-shape::after {
  content: "";
  position: absolute;
  left: 42%;
  top: 16%;
  width: 14%;
  height: 55%;
  background: var(--cream);
  border: 1px solid var(--ink);
  border-radius: 2px;
}

.candle {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.candle__wick {
  width: 3px;
  height: 10px;
  background: var(--ink);
}

.candle__body {
  width: 22px;
  height: 36px;
  border: 2.5px solid var(--ink);
  border-radius: 3px;
}

.candle--red .candle__body {
  background: var(--candle-red);
}

.candle--green .candle__body {
  background: var(--neon);
  box-shadow: 0 0 12px rgba(124, 255, 58, 0.4);
}

.lore-card__title {
  font-family: var(--font-display);
  font-size: 1.65rem;
  letter-spacing: 0.05em;
  color: var(--lime);
  margin-bottom: 0.65rem;
  text-shadow: 2px 2px 0 var(--ink);
}

.lore-card__text {
  color: var(--muted);
  font-size: 0.98rem;
}

/* ---------- Charge ---------- */
.charge {
  background:
    linear-gradient(180deg, var(--forest-mid) 0%, #2a1a12 50%, var(--forest) 100%);
  overflow: hidden;
}

.charge__arena {
  text-align: center;
}

.charge__stage {
  position: relative;
  background:
    linear-gradient(180deg, rgba(196, 92, 42, 0.35) 0%, rgba(140, 50, 25, 0.5) 100%),
    linear-gradient(180deg, #3a2418, #1e140e);
  border: var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  min-height: 260px;
  padding: 1.5rem 1rem 2rem;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.charge__stage::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 28%;
  background: linear-gradient(180deg, #b34a28, #7a2e18);
  border-top: 3px solid var(--ink);
}

.charge__bull {
  position: absolute;
  left: 4%;
  bottom: 18%;
  z-index: 3;
  width: 110px;
  transform: rotate(-5deg);
  transition: left 0.35s var(--ease), transform 0.35s var(--ease);
}

.charge__bull.is-charging {
  animation: bullCharge 0.7s var(--ease) forwards;
}

.charge__bull.is-done {
  left: 78%;
  transform: rotate(-2deg);
  animation: none;
}

.charge__bull-img {
  width: 100%;
  filter: drop-shadow(4px 6px 0 rgba(0, 0, 0, 0.3));
}

@keyframes bullCharge {
  0% {
    left: 4%;
    transform: rotate(-5deg) scale(1);
  }
  40% {
    transform: rotate(8deg) scale(1.1);
  }
  100% {
    left: 78%;
    transform: rotate(-2deg) scale(1);
  }
}

.charge__candles {
  position: absolute;
  left: 22%;
  right: 8%;
  bottom: 32%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.5rem;
  height: 140px;
  z-index: 2;
}

.charge-candle {
  flex: 1;
  max-width: 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: transform 0.3s var(--ease);
}

.charge-candle__wick {
  width: 3px;
  height: 12px;
  background: var(--ink);
}

.charge-candle__body {
  width: 100%;
  border: 2.5px solid var(--ink);
  border-radius: 3px;
  background: var(--neon);
  box-shadow: 0 0 10px rgba(124, 255, 58, 0.35);
  transition: background 0.25s ease, box-shadow 0.25s ease, height 0.35s var(--ease);
}

.charge-candle:nth-child(1) .charge-candle__body { height: 48px; }
.charge-candle:nth-child(2) .charge-candle__body { height: 72px; }
.charge-candle:nth-child(3) .charge-candle__body { height: 40px; }
.charge-candle:nth-child(4) .charge-candle__body { height: 90px; }
.charge-candle:nth-child(5) .charge-candle__body { height: 58px; }
.charge-candle:nth-child(6) .charge-candle__body { height: 78px; }
.charge-candle:nth-child(7) .charge-candle__body { height: 100px; }
.charge-candle:nth-child(8) .charge-candle__body { height: 55px; }

.charge-candle.is-red .charge-candle__body {
  background: var(--candle-red);
  box-shadow: 0 0 10px rgba(230, 57, 70, 0.35);
}

.charge-candle.is-flipped .charge-candle__body {
  background: var(--neon);
  box-shadow: 0 0 16px rgba(124, 255, 58, 0.6);
  height: calc(100% + 12px);
  min-height: 70px;
}

.charge-candle.is-flipped {
  animation: candlePop 0.4s var(--ease-bounce);
}

@keyframes candlePop {
  0% {
    transform: scaleY(0.7);
  }
  60% {
    transform: scaleY(1.15);
  }
  100% {
    transform: scaleY(1);
  }
}

.charge__impact {
  position: absolute;
  top: 18%;
  left: 50%;
  transform: translate(-50%, -20px) scale(0.6) rotate(-6deg);
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 8vw, 4.5rem);
  letter-spacing: 0.06em;
  color: var(--lime);
  text-shadow: 4px 4px 0 var(--ink), 0 0 20px rgba(124, 255, 58, 0.5);
  opacity: 0;
  z-index: 5;
  pointer-events: none;
  border: 4px solid var(--ink);
  background: var(--ink);
  padding: 0.2rem 1rem;
  border-radius: 12px;
}

.charge__impact.is-show {
  animation: impactPop 0.55s var(--ease-bounce) forwards;
}

@keyframes impactPop {
  0% {
    opacity: 0;
    transform: translate(-50%, -20px) scale(0.4) rotate(-12deg);
  }
  60% {
    opacity: 1;
    transform: translate(-50%, 0) scale(1.15) rotate(3deg);
  }
  100% {
    opacity: 1;
    transform: translate(-50%, 0) scale(1) rotate(-4deg);
  }
}

.charge__burst {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 4;
}

.charge__burst .burst-nut {
  position: absolute;
  width: 16px;
  height: 22px;
  background: radial-gradient(circle at 35% 30%, #b5d47a, var(--pistachio));
  border: 2px solid var(--ink);
  border-radius: 50% 50% 45% 45% / 55% 55% 40% 40%;
  animation: burstOut 0.85s var(--ease) forwards;
}

@keyframes burstOut {
  0% {
    opacity: 1;
    transform: translate(0, 0) scale(1) rotate(0);
  }
  100% {
    opacity: 0;
    transform: translate(var(--tx), var(--ty)) scale(0.4) rotate(220deg);
  }
}

.charge__stage.is-shake {
  animation: screenShake 0.45s ease;
}

@keyframes screenShake {
  0%,
  100% {
    transform: translate(0, 0);
  }
  20% {
    transform: translate(-6px, 3px);
  }
  40% {
    transform: translate(5px, -4px);
  }
  60% {
    transform: translate(-4px, -2px);
  }
  80% {
    transform: translate(3px, 3px);
  }
}

.charge__btn {
  min-width: 180px;
  font-size: 1.5rem;
  padding: 1rem 2rem;
}

.charge__btn:disabled {
  opacity: 0.65;
  cursor: wait;
  transform: none;
  box-shadow: var(--shadow);
}

.charge__hint {
  margin-top: 1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ---------- Philosophy ---------- */
.philosophy {
  background: linear-gradient(180deg, var(--desert-deep) 0%, var(--burnt) 45%, var(--sky) 100%);
  overflow: hidden;
  text-align: center;
  padding-block: clamp(5rem, 12vw, 8rem);
}

.philosophy__candles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.philosophy__candles .philo-candle {
  position: absolute;
  bottom: -10%;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0.35;
  animation: candleRise 6s ease-in-out infinite;
}

.philo-candle .wick {
  width: 2px;
  height: 10px;
  background: var(--ink);
}

.philo-candle .body {
  width: 14px;
  height: 40px;
  background: var(--neon);
  border: 2px solid var(--ink);
  border-radius: 2px;
}

@keyframes candleRise {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-24px);
  }
}

.philosophy__content {
  position: relative;
  z-index: 2;
}

.philosophy__title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 8vw, 5.5rem);
  line-height: 1;
  letter-spacing: 0.03em;
  text-shadow: 4px 4px 0 var(--ink);
  margin-bottom: 1.5rem;
}

.philosophy__title span {
  display: block;
}

.philosophy__title-accent {
  color: var(--lime);
  -webkit-text-stroke: 1px var(--ink);
}

.philosophy__sub {
  font-size: clamp(1.15rem, 3vw, 1.55rem);
  font-weight: 800;
  color: var(--white);
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.35);
}

/* ---------- Token ---------- */
.token {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(168, 230, 58, 0.1) 0%, transparent 40%),
    var(--forest);
}

.token__card {
  max-width: 560px;
  margin-inline: auto;
  background: linear-gradient(160deg, #2f4a2c 0%, #1a2a18 100%);
  border: var(--border);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  position: relative;
}

.token__badge {
  width: 96px;
  height: 96px;
  margin: -3.5rem auto 1.25rem;
  border: var(--border);
  border-radius: 50%;
  background: var(--cream);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: grid;
  place-items: center;
}

.token__badge img {
  width: 88%;
  height: 88%;
  object-fit: contain;
}

.token__meta {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.75rem;
}

.token__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 0.85rem 1.1rem;
  background: rgba(0, 0, 0, 0.28);
  border: 2.5px solid var(--ink);
  border-radius: 14px;
}

.token__row dt {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.token__row dd {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: 0.04em;
  color: var(--lime);
}

.token__solana {
  color: var(--orange);
}

.token__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

/* ---------- How to Buy ---------- */
.howto {
  background: linear-gradient(180deg, var(--forest) 0%, var(--forest-mid) 100%);
}

.howto__steps {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.howto-step {
  flex: 1 1 220px;
  max-width: 280px;
  background: linear-gradient(165deg, #314f2e, #1e301c);
  border: var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.75rem 1.35rem;
  text-align: center;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.howto-step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

.howto-step__num {
  display: block;
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--lime);
  letter-spacing: 0.04em;
  text-shadow: 3px 3px 0 var(--ink);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.howto-step__title {
  font-family: var(--font-display);
  font-size: 1.45rem;
  letter-spacing: 0.05em;
  margin-bottom: 0.65rem;
}

.howto-step__text {
  color: var(--muted);
  font-size: 0.95rem;
}

.howto-step__text a {
  color: var(--lime);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.howto-arrow {
  display: flex;
  align-items: center;
  color: var(--orange);
  animation: arrowPulse 1.4s ease-in-out infinite;
  flex: 0 0 auto;
  align-self: center;
}

@keyframes arrowPulse {
  0%,
  100% {
    transform: translateX(0);
    opacity: 0.7;
  }
  50% {
    transform: translateX(6px);
    opacity: 1;
  }
}

/* ---------- Memes ---------- */
.memes {
  background:
    radial-gradient(ellipse at 50% 100%, rgba(211, 92, 55, 0.15) 0%, transparent 50%),
    var(--forest-mid);
}

.memes__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.35rem;
}

.meme-card {
  border: var(--border);
  border-radius: 20px;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
  position: relative;
  min-height: 220px;
}

.meme-card:nth-child(odd) {
  transform: rotate(-1.2deg);
}

.meme-card:nth-child(even) {
  transform: rotate(1.2deg);
}

.meme-card:hover {
  transform: translateY(-10px) rotate(0deg) scale(1.02);
  box-shadow: var(--shadow-hover);
  z-index: 2;
}

.meme-card--visual {
  background: var(--ink-soft);
}

.meme-card--visual img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.meme-card--visual figcaption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.75rem 1rem;
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.85));
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.meme-card--visual:hover figcaption {
  opacity: 1;
  transform: translateY(0);
}

.meme-card--text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 1.75rem 1.5rem;
  gap: 0.5rem;
}

.meme-card--text h3 {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 1.9rem);
  letter-spacing: 0.04em;
  line-height: 1.05;
  text-shadow: 2px 2px 0 var(--ink);
}

.meme-card--text p {
  font-size: 0.95rem;
  font-weight: 700;
  opacity: 0.85;
}

.meme-card__stamp {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  padding: 0.25rem 0.55rem;
  border: 2.5px solid var(--ink);
  border-radius: 8px;
  background: var(--ink);
  color: var(--lime);
  margin-bottom: 0.35rem;
}

.meme-card--red {
  background: linear-gradient(145deg, #c43a3a, #8b1e1e);
}

.meme-card--green {
  background: linear-gradient(145deg, #5a8a3a, #2f5a22);
}

.meme-card--cream {
  background: linear-gradient(145deg, var(--cream), #c9b078);
  color: var(--ink);
}

.meme-card--cream .meme-card__stamp {
  background: var(--burnt);
  color: var(--white);
  border-color: var(--ink);
}

.meme-card--cream h3 {
  text-shadow: 2px 2px 0 rgba(255, 255, 255, 0.35);
}

.meme-card--dark {
  background: linear-gradient(145deg, #1e1a14, #0d0b08);
  color: var(--lime);
}

/* ---------- CTA ---------- */
.cta {
  background:
    linear-gradient(180deg, rgba(26, 47, 26, 0.3), rgba(26, 47, 26, 0.85)),
    url("assets/banner.png") center / cover no-repeat;
  overflow: hidden;
  border-block: 4px solid var(--ink);
}

.cta__particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.cta__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2rem;
  align-items: center;
}

.cta__mascot {
  display: grid;
  place-items: center;
}

.cta__mascot-img {
  width: min(100%, 340px);
  filter: drop-shadow(0 12px 0 rgba(0, 0, 0, 0.25));
  animation: mascotIdle 4.5s ease-in-out infinite;
}

.cta__title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5rem);
  letter-spacing: 0.04em;
  line-height: 0.95;
  color: var(--lime);
  text-shadow: 4px 4px 0 var(--ink);
  margin-bottom: 1rem;
}

.cta__lead {
  font-size: clamp(1.05rem, 2.4vw, 1.3rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1.75rem;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.5);
}

.cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--ink);
  border-top: 4px solid var(--lime);
  padding: 2.5rem 0;
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}

.footer__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-size: 1.6rem;
  letter-spacing: 0.04em;
  color: var(--lime);
}

.footer__brand img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  border-radius: 50%;
  border: 2.5px solid var(--ink);
  background: var(--cream);
}

.footer__links {
  display: flex;
  gap: 1.5rem;
  font-weight: 800;
}

.footer__links a {
  position: relative;
  transition: color 0.2s ease;
}

.footer__links a:hover {
  color: var(--lime);
}

.footer__tagline {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(36px) scale(0.98);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero__content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero__lead,
  .hero__tagline {
    margin-inline: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__mascot-wrap {
    order: -1;
    width: min(100%, 380px);
  }

  .hero__mascot {
    width: min(100%, 340px);
  }

  .hero__chart {
    opacity: 0.3;
  }

  .lore__cards {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-inline: auto;
  }

  .memes__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cta__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .cta__actions {
    justify-content: center;
  }

  .howto-arrow {
    transform: rotate(90deg);
    width: 100%;
    justify-content: center;
  }

  .howto-arrow svg {
    animation: none;
  }
}

@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
  }

  .nav__links {
    position: fixed;
    inset: 0;
    background: rgba(18, 16, 12, 0.97);
    flex-direction: column;
    justify-content: center;
    gap: 1.25rem;
    padding: 5rem 2rem 2rem;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease);
    z-index: 1000;
  }

  .nav__links.is-open {
    transform: translateX(0);
  }

  .nav__link {
    font-size: 1.4rem;
    font-family: var(--font-display);
    letter-spacing: 0.06em;
  }

  .nav__buy {
    font-size: 1.35rem;
    padding: 0.85rem 1.6rem;
  }

  .charge__bull {
    width: 80px;
  }

  .charge__bull.is-done {
    left: 70%;
  }

  .charge__candles {
    left: 28%;
    height: 110px;
  }

  @keyframes bullCharge {
    0% {
      left: 2%;
      transform: rotate(-5deg);
    }
    100% {
      left: 70%;
      transform: rotate(-2deg);
    }
  }
}

@media (max-width: 560px) {
  .container {
    width: calc(100% - 1.5rem);
  }

  .hero {
    padding-top: 1.5rem;
    padding-bottom: 3.5rem;
  }

  .hero__title {
    font-size: clamp(2.4rem, 12vw, 3.4rem);
  }

  .memes__grid {
    grid-template-columns: 1fr;
  }

  .meme-card:nth-child(odd),
  .meme-card:nth-child(even) {
    transform: none;
  }

  .token__card {
    padding: 2rem 1.25rem;
  }

  .token__actions {
    flex-direction: column;
  }

  .token__actions .btn {
    width: 100%;
  }

  .howto-step {
    max-width: none;
  }

  .charge__stage {
    min-height: 220px;
  }

  .hero__mountains--far,
  .hero__speedlines {
    opacity: 0.5;
  }
}

@media (max-width: 380px) {
  .hero__actions .btn--primary,
  .hero__actions .btn--secondary {
    width: 100%;
  }

  .cta__actions .btn {
    width: 100%;
  }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .ticker__track {
    animation: none;
  }

  .hero__mascot,
  .cta__mascot-img {
    animation: none;
  }

  .intro {
    display: none;
  }
}
