:root {
  --bg-gradient: radial-gradient(circle at 20% 10%, rgba(255, 246, 189, 0.85) 0%, rgba(255, 220, 97, 0) 45%),
    radial-gradient(circle at 80% 0%, rgba(255, 210, 144, 0.75) 0%, rgba(255, 220, 97, 0) 55%),
    radial-gradient(circle at 50% 100%, rgba(255, 227, 107, 0.7) 0%, rgba(255, 220, 97, 0) 55%),
    linear-gradient(180deg, #fff9d0 0%, #ffdf73 100%);
  --text-light: #2c1658;
  --text-muted: rgba(44, 22, 88, 0.72);
  --accent: #ff8c00;
  --accent-strong: #ff3d81;
  --surface: rgba(255, 255, 255, 0.85);
  --surface-strong: rgba(255, 255, 255, 0.92);
  --border: rgba(44, 22, 88, 0.16);
  --shadow: 0 20px 40px rgba(210, 140, 0, 0.25);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background: var(--bg-gradient);
  color: var(--text-light);
  font-family: "Baloo 2", cursive;
  min-height: 100vh;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1100px, 92vw);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 233, 137, 0.85);
  backdrop-filter: blur(18px);
  box-shadow: 0 8px 24px rgba(200, 150, 0, 0.35);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-family: "Luckiest Guy", cursive;
  font-size: 1.35rem;
  letter-spacing: 1px;
}

.brand__logo {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(210, 140, 0, 0.32);
}

.main-nav {
  display: flex;
  gap: 1.5rem;
  font-size: 1.05rem;
}

.main-nav a {
  position: relative;
  font-weight: 600;
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.35rem;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-strong));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
  border-radius: 999px;
}

.main-nav a:hover,
.main-nav a:focus-visible {
  color: var(--text-light);
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  font-weight: 700;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  font-size: 1.02rem;
  cursor: pointer;
}

.btn--primary {
  background: linear-gradient(135deg, var(--accent), var(--accent-strong));
  color: #2c1658;
  box-shadow: 0 16px 32px rgba(255, 150, 90, 0.35);
}

.btn--primary:hover,
.btn--primary:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 24px 40px rgba(255, 150, 90, 0.55);
}

.btn--ghost {
  background: transparent;
  border-color: rgba(44, 22, 88, 0.28);
  color: var(--text-light);
}

.btn--ghost:hover,
.btn--ghost:focus-visible {
  background: rgba(44, 22, 88, 0.08);
}

.btn--wide {
  min-width: 240px;
}

.hero {
  padding: clamp(5rem, 6vw, 6.5rem) 0 4rem;
  position: relative;
}

.hero__content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  align-items: center;
  gap: clamp(2rem, 6vw, 4.5rem);
}

.hero__text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero__badge {
  background: rgba(44, 22, 88, 0.08);
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.8rem;
  border-radius: 999px;
  font-weight: 600;
  color: var(--accent-strong);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.95rem;
  width: fit-content;
}

.hero__badge::before {
  content: "✨";
}

.hero h1 {
  font-family: "Luckiest Guy", cursive;
  font-size: clamp(2.8rem, 6vw, 4rem);
  line-height: 1.1;
}

.animated-text {
  display: inline-block;
  padding: 0 0.35rem;
  background: linear-gradient(90deg, #ffb347, #ff68f0, #ffef66);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 10px 25px rgba(255, 163, 106, 0.4));
  opacity: 0;
  transform: translateY(14px) scale(0.98);
  transition: opacity 0.35s ease, transform 0.35s ease;
  white-space: nowrap;
}

.animated-text.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.hero p {
  color: var(--text-muted);
  max-width: 520px;
  font-size: 1.1rem;
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-strip {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.social-strip__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(44, 22, 88, 0.12);
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.social-strip__item:hover,
.social-strip__item:focus-visible {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 1);
}

.hero__visual {
  position: relative;
  display: grid;
  place-items: center;
}

.hero__orb {
  position: absolute;
  width: clamp(260px, 30vw, 360px);
  height: clamp(260px, 30vw, 360px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 214, 102, 0.85), rgba(255, 158, 88, 0.2));
  filter: blur(0px);
  box-shadow: 0 40px 60px rgba(210, 140, 0, 0.35);
  animation: orbPulse 6s ease-in-out infinite;
}

.hero__logo {
  position: relative;
  width: clamp(220px, 26vw, 300px);
  border-radius: 24px;
  border: 6px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 25px 60px rgba(210, 140, 0, 0.4);
  animation: floaty 4.5s ease-in-out infinite;
}

@keyframes floaty {
  0%,
  100% {
    transform: translateY(0) rotate(-2deg);
  }
  50% {
    transform: translateY(-12px) rotate(2deg);
  }
}

@keyframes orbPulse {
  0%,
  100% {
    transform: scale(0.95);
    opacity: 0.9;
  }
  50% {
    transform: scale(1.05);
    opacity: 1;
  }
}

.stats {
  padding: 3rem 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.stat-card {
  background: var(--surface);
  padding: 2rem;
  border-radius: 24px;
  border: 1px solid var(--border);
  text-align: center;
  box-shadow: var(--shadow);
}

.stat-card h2 {
  font-family: "Luckiest Guy", cursive;
  font-size: 2.6rem;
  color: var(--accent);
  margin-bottom: 0.5rem;
}

.stat-card p {
  color: var(--text-muted);
}

.about {
  padding: 4rem 0;
}

.about__wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2.8rem;
  align-items: center;
}

.about__media img {
  border-radius: 28px;
  border: 4px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 30px 60px rgba(210, 140, 0, 0.35);
}

.about__text h2 {
  font-family: "Luckiest Guy", cursive;
  font-size: clamp(2.2rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
}

.about__text p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.about__list {
  display: grid;
  gap: 0.8rem;
  list-style: none;
}

.about__list li {
  padding: 0.85rem 1rem;
  border-radius: 16px;
  background: var(--surface-strong);
  border: 1px solid rgba(44, 22, 88, 0.12);
  box-shadow: 0 15px 35px rgba(210, 140, 0, 0.25);
  position: relative;
  padding-left: 2.6rem;
}

.about__list li::before {
  content: "⚡";
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.1rem;
}

.features {
  padding: 4rem 0 3rem;
}

.features h2,
.meme-carousel h2,
.cta h2 {
  font-family: "Luckiest Guy", cursive;
  text-align: center;
  font-size: clamp(2.4rem, 5vw, 3.2rem);
  margin-bottom: 2.4rem;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.8rem;
}

.feature-card {
  background: var(--surface);
  border-radius: 22px;
  padding: 1.8rem;
  border: 1px solid rgba(44, 22, 88, 0.14);
  box-shadow: 0 22px 45px rgba(210, 140, 0, 0.3);
  display: grid;
  gap: 1rem;
  position: relative;
  overflow: hidden;
}

.feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(135deg, rgba(255, 168, 88, 0.22), rgba(255, 227, 120, 0.2));
  transition: opacity 0.3s ease;
}

.feature-card:hover::after {
  opacity: 1;
}

.feature-card img {
  width: 76px;
  height: 76px;
  object-fit: contain;
  justify-self: center;
}

.feature-card h3 {
  font-size: 1.35rem;
  text-align: center;
}

.feature-card p {
  color: var(--text-muted);
  text-align: center;
}

.meme-carousel {
  padding: 4rem 0;
}

.meme-carousel__wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.8rem;
}

.meme-card {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  border: 1px solid rgba(44, 22, 88, 0.14);
  box-shadow: 0 24px 50px rgba(210, 140, 0, 0.28);
  overflow: hidden;
}

.meme-card img {
  width: 100%;
  object-fit: cover;
}

.meme-card figcaption {
  padding: 1.2rem 1.4rem;
  color: var(--text-muted);
  font-size: 1.05rem;
}

.meme-card--text {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.8rem;
  text-align: center;
  font-size: 1.2rem;
}

.cta {
  padding: 4rem 0 5rem;
}

.cta__content {
  background: linear-gradient(135deg, rgba(255, 230, 130, 0.7), rgba(255, 182, 193, 0.35));
  border-radius: 32px;
  padding: clamp(2.6rem, 6vw, 3.6rem);
  display: grid;
  gap: 1.4rem;
  text-align: center;
  border: 2px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 28px 60px rgba(210, 140, 0, 0.28);
}

.cta__content p {
  color: var(--text-muted);
  font-size: 1.15rem;
}

.cta__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.site-footer {
  background: rgba(255, 224, 130, 0.9);
  padding: 2rem 0;
}

.site-footer__content {
  display: flex;
  gap: 2rem;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.site-footer__brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.site-footer__brand img {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  object-fit: cover;
}

.site-footer__brand p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.site-footer__links {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
  font-weight: 600;
}

.site-footer__links a {
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
  color: var(--text-light);
}

@media (max-width: 768px) {
  .site-header .container {
    flex-wrap: wrap;
  }

  .main-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 0.5rem;
  }

  .hero__actions,
  .cta__actions {
    justify-content: flex-start;
  }

  .site-footer__content {
    flex-direction: column;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
