/* Base reset: safe defaults (doesn't overwrite your component colors) */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: #ffffff;
  color: #101828;
}

/* Links/buttons */
a {
  color: inherit;
  text-decoration: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  user-select: none;
}

.btn-primary {
  height: 56px;
  background: #A6FFFC;
  color: #101828;
  font-family: 'Jersey 10', cursive;
  font-size: 20px;
  box-shadow: 0px 4px 6px -4px rgba(0, 0, 0, 0.10), 0px 10px 15px -3px rgba(0, 0, 0, 0.10);
}

.btn-secondary {
  height: 52px;
  background: rgba(255, 255, 255, 0.10);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.30);
  font-size: 16px;
}

.btn-nav {
  height: 36px;
  padding: 0 18px;
  background: #ffffff;
  color: #2C4BFB;
  border-radius: 10px;
  box-shadow: 0px 2px 4px -2px rgba(0, 0, 0, 0.10), 0px 4px 6px -1px rgba(0, 0, 0, 0.10);
}

/* Page / hero layout */
.page {
  width: 100%;
  min-height: 100%;
  background: #ffffff;
}

.hero-wrap {
  width: 100%;
  background: #F9FAFB;
  overflow: hidden;
}

.hero-bg {
  position: relative;
  width: 100%;
  min-height: 808px;
  background: linear-gradient(180deg, #2C4BFB 0%, #D9111D 70%, #E7DB00 100%);
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.20);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.20;
}

.hero-nav {
  position: absolute;
  left: 20px;
  right: 20px;
  top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 2;
}

.brand {
  font-family: 'Jersey 10', cursive;
  font-size: 24px;
  line-height: 32px;
  color: #ffffff;
}

.hero-content {
  position: relative;
  z-index: 2;
  min-height: 808px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 68px 20px 32px;
}

.hero-card {
  width: min(448px, 100%);
  text-align: center;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.10);
  border-radius: 9999px;
  color: rgba(255, 255, 255, 0.90);
  font-size: 12px;
  font-weight: 500;
}

.hero-title {
  margin: 16px 0 10px;
  color: #ffffff;
  font-size: 36px;
  line-height: 45px;
  font-family: 'Lato', sans-serif;
  font-weight: 500;
}

.hero-subtitle {
  margin: 0 auto;
  max-width: 408px;
  color: rgba(255, 255, 255, 0.90);
  font-size: 16px;
  line-height: 26px;
}

.hero-stats {
  margin-top: 18px;
  display: flex;
  gap: 16px;
  justify-content: space-between;
}

.stat {
  flex: 1;
}

.stat-number {
  font-family: 'Jersey 10', cursive;
  font-size: 30px;
  line-height: 36px;
  color: #ffffff;
}

.stat-label {
  font-size: 12px;
  line-height: 16px;
  color: rgba(255, 255, 255, 0.80);
}

.hero-actions {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-actions .btn {
  width: 100%;
}

/* Footer */
.page-footer {
  padding: 16px 20px;
  font-size: 12px;
  color: #667085;
  background: #ffffff;
}

/* Mobile tweaks */
@media (max-width: 520px) {
  .hero-title {
    font-size: 30px;
    line-height: 38px;
  }
  .hero-stats {
    flex-direction: column;
    gap: 10px;
  }
}
