:root {
  --gold: #f5c842;
  --gold-light: #ffe27a;
  --gold-dark: #c9921a;
  --deep-blue: #030d2b;
  --mid-blue: #071a4a;
  --accent-blue: #0a2875;
  --red: #d42b2b;
  --white: #ffffff;
  --text-muted: #9cb4dd;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Be Vietnam Pro", sans-serif;
  background: var(--deep-blue);
  color: var(--white);
  overflow-x: hidden;
}

#stars-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 48px;
  background: linear-gradient(
    180deg,
    rgba(3, 13, 43, 0.97) 0%,
    rgba(3, 13, 43, 0) 100%
  );
  backdrop-filter: blur(4px);
}

.nav-logo {
  text-decoration: none;
  font-family: "Cinzel Decorative", serif;
  font-size: 1.5rem;
  font-weight: 900;
  background: linear-gradient(
    135deg,
    var(--gold-light),
    var(--gold),
    var(--gold-dark)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.2s;
}

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

.nav-cta {
  text-decoration: none;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--deep-blue);
  font-weight: 800;
  font-size: 0.85rem;
  padding: 10px 24px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 0 20px rgba(245, 200, 66, 0.4);
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 32px rgba(245, 200, 66, 0.65);
}

.politica {
  padding: 80px 24px 20px;
  min-height: 85vh;
}

.politica p,
li {
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
  margin-bottom: 5px;
}

.politica li {
  margin-left: 30px;
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 120px 24px 80px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      ellipse 80% 60% at 50% 30%,
      rgba(10, 40, 117, 0.55) 0%,
      transparent 70%
    ),
    radial-gradient(
      ellipse 50% 40% at 80% 70%,
      rgba(212, 43, 43, 0.18) 0%,
      transparent 60%
    ),
    linear-gradient(180deg, #030d2b 0%, #071a4a 50%, #030d2b 100%);
  z-index: 0;
}

.city-layer {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 45%;
  background: url("../images/bckg.png") center bottom / cover no-repeat;
  z-index: 1;
}

.hero-badge {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(245, 200, 66, 0.35);
  background: rgba(245, 200, 66, 0.08);
  border-radius: 50px;
  padding: 6px 18px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  animation: fadeSlideDown 0.8s ease both;
}

.hero-badge .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  animation: pulse 1.5s infinite;
}

.hero-title {
  position: relative;
  z-index: 2;
  font-family: "Cinzel Decorative", serif;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.15;
  background: linear-gradient(
    160deg,
    var(--gold-light) 0%,
    var(--gold) 40%,
    var(--gold-dark) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 30px rgba(245, 200, 66, 0.35));
  margin-bottom: 20px;
  animation: fadeSlideDown 0.9s 0.1s ease both;
}

.hero-sub {
  position: relative;
  z-index: 2;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 40px;
  animation: fadeSlideDown 1s 0.2s ease both;
}

.hero-sub strong {
  color: var(--gold);
  font-weight: 700;
}

.hero-btns {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeSlideDown 1s 0.35s ease both;
}

.btn-primary {
  background: linear-gradient(135deg, #f5c842, #c9921a);
  color: var(--deep-blue);
  text-decoration: none;
  font-weight: 800;
  font-size: 1rem;
  padding: 16px 40px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 4px 30px rgba(245, 200, 66, 0.5);
  width: 250px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.03);
  box-shadow: 0 8px 40px rgba(245, 200, 66, 0.7);
}

.btn-outline {
  background: transparent;
  border: 2px solid rgba(245, 200, 66, 0.5);
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
  padding: 14px 36px;
  border-radius: 50px;
  cursor: pointer;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition:
    background 0.2s,
    color 0.2s;
}

.btn-outline:hover {
  background: rgba(245, 200, 66, 0.12);
}

/* Coins */
.coins-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 0 5%;
  z-index: 2;
  pointer-events: none;
}

.coin-stack {
  display: flex;
  flex-direction: column-reverse;
  gap: 3px;
  animation: floatY 4s ease-in-out infinite;
}

.coin-stack:nth-child(2) {
  animation-delay: -1.5s;
}

.coin {
  width: 52px;
  height: 14px;
  border-radius: 50%;
  background: radial-gradient(
    ellipse 70% 60% at 38% 38%,
    #ffe27a,
    #c9921a 60%,
    #a86a00
  );
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.4),
    inset 0 1px 2px rgba(255, 255, 255, 0.3);
}

.red-envelope {
  width: 70px;
  height: 90px;
  border-radius: 6px 6px 8px 8px;
  background: linear-gradient(160deg, #e83030, #a31010);
  box-shadow: 4px 4px 20px rgba(0, 0, 0, 0.4);
  position: relative;
  overflow: hidden;
}

.red-envelope::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid rgba(245, 200, 66, 0.6);
  background: radial-gradient(
    circle,
    rgba(245, 200, 66, 0.25),
    transparent 70%
  );
}

.vip-badge-hero {
  width: 80px;
  height: 72px;
  background: linear-gradient(135deg, #c9921a, #f5c842, #c9921a);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cinzel Decorative", serif;
  font-size: 0.9rem;
  font-weight: 900;
  color: var(--deep-blue);
  box-shadow: 0 0 30px rgba(245, 200, 66, 0.6);
  animation: floatY 5s ease-in-out infinite;
}

/* STATS BAR */
.stats-bar {
  position: relative;
  z-index: 5;
  background: linear-gradient(
    90deg,
    rgba(7, 26, 74, 0.95),
    rgba(10, 40, 117, 0.95),
    rgba(7, 26, 74, 0.95)
  );
  border-top: 1px solid rgba(245, 200, 66, 0.2);
  border-bottom: 1px solid rgba(245, 200, 66, 0.2);
  padding: 28px 48px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.stat-item {
  text-align: center;
}

.stat-num {
  font-family: "Cinzel Decorative", serif;
  font-size: 2rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-top: 4px;
}

/* SECTIONS */
.section {
  position: relative;
  padding: 80px 48px;
  z-index: 5;
}

.section-title {
  text-align: center;
  margin-bottom: 16px;
  font-family: "Cinzel Decorative", serif;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 50px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ── BANNERS ── */
.banners-section {
  position: relative;
  z-index: 5;
  padding: 0 0 60px;
}

.banner-wide {
  width: 100%;
  cursor: pointer;
  max-width: 1100px;
  margin: 0 auto 20px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(245, 200, 66, 0.25);
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(245, 200, 66, 0.08);
  display: none;
}

.banner-wide img {
  width: 100%;
  height: auto;
  display: block;
}

.banner-tall-wrap {
  max-width: 420px;
  cursor: pointer;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(245, 200, 66, 0.25);
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.4),
    0 0 30px rgba(245, 200, 66, 0.08);
  display: block;
}

.banner-tall-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

@media screen and (min-width: 768px) {
  .banner-tall-wrap {
    display: none;
  }

  .banner-wide {
    display: block;
  }
}

/* WELCOME BONUS */
.welcome-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
}

.welcome-card {
  background: linear-gradient(
    135deg,
    rgba(10, 40, 117, 0.6),
    rgba(7, 26, 74, 0.8)
  );
  border: 1px solid rgba(245, 200, 66, 0.25);
  border-radius: 20px;
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
}

.welcome-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(
    ellipse 60% 40% at 30% 20%,
    rgba(245, 200, 66, 0.08),
    transparent 70%
  );
  pointer-events: none;
}

.welcome-card-tag {
  display: inline-block;
  background: var(--red);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 20px;
}

.welcome-card h3 {
  font-family: "Cinzel Decorative", serif;
  font-size: 1.6rem;
  line-height: 1.3;
  margin-bottom: 12px;
  color: var(--gold-light);
}

.welcome-card p {
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 28px;
}

.welcome-card ul {
  list-style: none;
  margin-bottom: 32px;
}

.welcome-card ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  padding: 6px 0;
  border-bottom: 1px solid rgba(245, 200, 66, 0.08);
}

.welcome-card ul li:last-child {
  border-bottom: none;
}

.check {
  color: var(--gold);
  font-size: 1rem;
}

.bonus-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.bonus-amount-ring {
  position: relative;
  width: 240px;
  height: 240px;
}

.bonus-amount-ring svg {
  position: absolute;
  inset: 0;
}

.bonus-inner {
  position: absolute;
  inset: 20px;
  background: linear-gradient(
    135deg,
    rgba(10, 40, 117, 0.9),
    rgba(3, 13, 43, 0.9)
  );
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 2px solid rgba(245, 200, 66, 0.3);
}

.bonus-pct {
  font-family: "Cinzel Decorative", serif;
  font-size: 3.2rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.bonus-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
}

.bonus-type {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  margin-top: 4px;
}

.bonus-chips {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.chip {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
  border: 1px solid rgba(245, 200, 66, 0.3);
  color: var(--gold);
  background: rgba(245, 200, 66, 0.08);
}

/* FEATURES */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}

.feature-card {
  background: linear-gradient(
    135deg,
    rgba(10, 40, 117, 0.45),
    rgba(7, 26, 74, 0.6)
  );
  border: 1px solid rgba(245, 200, 66, 0.15);
  border-radius: 16px;
  padding: 36px 28px;
  transition:
    transform 0.25s,
    border-color 0.25s,
    box-shadow 0.25s;
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245, 200, 66, 0.4);
  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(245, 200, 66, 0.1);
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: linear-gradient(
    135deg,
    rgba(245, 200, 66, 0.2),
    rgba(201, 146, 26, 0.1)
  );
  border: 1px solid rgba(245, 200, 66, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.feature-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ── SUBSCRIPTION ── */
.sub-section {
  position: relative;
  z-index: 5;
  padding: 70px 48px;
  background: linear-gradient(180deg, rgba(7, 26, 74, 0.3), rgba(3, 13, 43, 0));
}

.sub-card {
  max-width: 600px;
  margin: 0 auto;
  background: linear-gradient(
    135deg,
    rgba(10, 40, 117, 0.55),
    rgba(7, 26, 74, 0.8)
  );
  border: 1px solid rgba(245, 200, 66, 0.25);
  border-radius: 20px;
  padding: 48px 44px;
  position: relative;
  overflow: hidden;
  text-align: center;
}

.sub-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 20px;
  background: radial-gradient(
    ellipse 70% 50% at 50% 0%,
    rgba(245, 200, 66, 0.07),
    transparent 70%
  );
  pointer-events: none;
}

.sub-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.sub-card h3 {
  font-family: "Cinzel Decorative", serif;
  font-size: 1.6rem;
  color: var(--gold-light);
  margin-bottom: 10px;
}

.sub-card p {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 28px;
  line-height: 1.65;
}

.sub-input-row {
  display: flex;
  gap: 10px;
  margin-bottom: 16px;
}

.sub-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(245, 200, 66, 0.25);
  border-radius: 50px;
  padding: 14px 20px;
  color: white;
  font-size: 0.95rem;
  font-family: "Be Vietnam Pro", sans-serif;
  outline: none;
  transition: border-color 0.2s;
}

.sub-input::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.sub-input:focus {
  border-color: rgba(245, 200, 66, 0.6);
  background: rgba(245, 200, 66, 0.05);
}

.sub-btn {
  background: linear-gradient(135deg, #f5c842, #c9921a);
  color: var(--deep-blue);
  font-weight: 800;
  font-size: 0.9rem;
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: 1px;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
}

.sub-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(245, 200, 66, 0.5);
}

.sub-check-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-align: left;
  margin-bottom: 0;
}

.sub-checkbox {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 2px solid rgba(245, 200, 66, 0.4);
  background: transparent;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  flex-shrink: 0;
  margin-top: 2px;
  position: relative;
  transition:
    background 0.2s,
    border-color 0.2s;
}

.sub-checkbox:checked {
  background: var(--gold);
  border-color: var(--gold);
}

.sub-checkbox:checked::after {
  content: "✓";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--deep-blue);
  font-size: 11px;
  font-weight: 900;
}

.sub-check-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.sub-check-label a {
  color: var(--gold);
  text-decoration: none;
}

/* Success state */
.sub-success {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
}

.sub-success.visible {
  display: flex;
}

.success-ring {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(245, 200, 66, 0.2),
    rgba(201, 146, 26, 0.1)
  );
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  animation: successPop 0.5s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
}

.sub-success h4 {
  font-family: "Cinzel Decorative", serif;
  font-size: 1.3rem;
  color: var(--gold-light);
}

.sub-success p {
  color: var(--text-muted);
  font-size: 0.88rem;
  max-width: 320px;
  text-align: center;
}

@keyframes successPop {
  0% {
    transform: scale(0) rotate(-10deg);
    opacity: 0;
  }

  70% {
    transform: scale(1.15) rotate(3deg);
  }

  100% {
    transform: scale(1) rotate(0);
    opacity: 1;
  }
}

/* CTA BAND */
.cta-band {
  background: linear-gradient(
    90deg,
    rgba(10, 40, 117, 0.8),
    rgba(7, 26, 74, 0.95),
    rgba(10, 40, 117, 0.8)
  );
  border-top: 1px solid rgba(245, 200, 66, 0.2);
  border-bottom: 1px solid rgba(245, 200, 66, 0.2);
  padding: 72px 48px;
  text-align: center;
  position: relative;
  z-index: 5;
}

.cta-band h2 {
  font-family: "Cinzel Decorative", serif;
  font-size: clamp(1.6rem, 3vw, 2.8rem);
  margin-bottom: 16px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.cta-band p {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 36px;
}

/* FOOTER */
footer {
  padding: 48px;
  background: rgba(3, 13, 43, 0.97);
  border-top: 1px solid rgba(245, 200, 66, 0.1);
  position: relative;
  z-index: 5;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto 40px;
}

.footer-brand .logo {
  font-family: "Cinzel Decorative", serif;
  font-size: 1.3rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 14px;
}

.footer-brand p {
  font-size: 0.83rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-col {
  list-style: none;
}

.footer-col li {
  margin-bottom: 8px;
}

.footer-col li a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.83rem;
  transition: color 0.2s;
}

.footer-col li a:hover {
  color: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
}

.footer-badges {
  display: flex;
  gap: 10px;
}

.badge-pill {
  padding: 4px 12px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.35);
}

.firework {
  position: absolute;
  pointer-events: none;
  z-index: 3;
}

@keyframes fadeSlideDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatY {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.5;
    transform: scale(0.8);
  }
}

@keyframes spinRing {
  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: -628;
  }
}

@media (max-width: 900px) {
  nav {
    padding: 12px 20px;
  }

  .nav-links {
    display: none;
  }

  .stats-bar {
    grid-template-columns: 1fr 1fr;
    padding: 20px;
  }

  .welcome-wrap {
    grid-template-columns: 1fr;
  }

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

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

  .section {
    padding: 50px 20px;
  }

  .sub-section {
    padding: 50px 20px;
  }

  .sub-input-row {
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

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

  .hero-title {
    font-size: 1.8rem;
  }

  .sub-card {
    padding: 32px 24px;
  }
}
