/* Base resets and typography */
body {
  margin: 0;
  font-family: system-ui, sans-serif;
  background: linear-gradient(to bottom right, #faf5ff, #fdf2f8, #fff7ed);
  min-height: 100vh;
  color: #111827;
}

h1, h3 {
  margin: 0;
}

h1 {
  font-size: 2.25rem;
  font-weight: 700;
}

@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }
}

p {
  margin: 0;
}

/* Centered header */
.header {
  text-align: center;
  padding: 2rem 1rem 1.5rem;
}

.header-gradient {
  background: linear-gradient(to right, #9333ea, #db2777);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header-underline {
  width: 6rem;
  height: 0.25rem;
  background: linear-gradient(to right, #9333ea, #db2777);
  margin: 0.5rem auto 0;
  border-radius: 9999px;
}

/* Offer box */
.offer {
  border: 2px solid #fecaca;
  background: #fef2f2;
  border-radius: 0.5rem;
  padding: 1rem;
  text-align: center;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

.offer p {
  font-size: 0.875rem;
  font-weight: 600;
  color: #b91c1c;
  margin-bottom: 0.5rem;
}

.offer-progress {
  position: relative;
  width: 100%;
  /* background: #f3f4f6; */
  background: #f97316;
  border-radius: 9999px;
  height: 0.75rem;
  overflow: hidden;
  margin-bottom: 0.5rem;
}

.offer-progress-fill {
  background: #9333ea;
  height: 100%;
  width: 70%;
  transition: width 0.3s ease;
}

.offer-subtext {
  font-size: 0.75rem;
  color: #b91c1c;
}

/* Info cards */
.cards {
  padding: 0 1rem 2rem;
}

.card {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-left: 4px solid;
  border-radius: 0.5rem;
  padding: 1rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  margin-bottom: .5rem;
}

.card-purple {
  border-left-color: #8b5cf6;
}

.card-pink {
  border-left-color: #ec4899;
}

.card-orange {
  border-left-color: #f97316;
}

.card-icon {
  padding: 0.5rem;
  border-radius: 9999px;
}

.icon-purple {
  background: #f3e8ff;
  color: #9333ea;
}

.icon-pink {
  background: #fce7f3;
  color: #db2777;
}

.icon-orange {
  background: #ffedd5;
  color: #f97316;
}

.card h3 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.card p {
  font-size: 0.875rem;
  color: #4b5563;
}

/* Video feature */
.video {
  margin: 0 1rem 2rem;
  position: relative;
  background: #111827;
  border-radius: 0.5rem;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: #ffffff;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.video-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(147,51,234,0.5), rgba(219,39,119,0.5));
  z-index: 1;
}

.video-content {
  position: relative;
  z-index: 2;
}

.video-icon {
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
  padding: 1rem;
  border-radius: 9999px;
  display: inline-block;
  margin-bottom: 1rem;
}

.video h3 {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.video p {
  font-size: 0.875rem;
  opacity: 0.9;
}

/* Buttons */
.buttons {
  padding: 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 3.5rem;
  font-size: 1.125rem;
  font-weight: 600;
  border: none;
  border-radius: 0.375rem;
  background: linear-gradient(to right, #9333ea, #db2777);
  color: white;
  cursor: pointer;
  gap: 0.5rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  transition: background 0.2s ease;
}

.btn-primary:hover {
  background: linear-gradient(to right, #7e22ce, #be185d);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 3rem;
  font-size: 1rem;
  font-weight: 500;
  border: 2px solid #d1d5db;
  border-radius: 0.375rem;
  background: transparent;
  color: #111827;
  cursor: pointer;
  gap: 0.5rem;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.btn-secondary:hover {
  border-color: #a78bfa;
  background: #f5f3ff;
}

/* Footer */
.footer {
  text-align: center;
  font-size: 0.75rem;
  color: #6b7280;
  padding: 2rem 1rem;
  border-top: 1px solid #e5e7eb;
}

.footer p {
  margin: 0.25rem 0;
}

.image-18 {
    position: static;
    left: 0%;
    top: auto;
    right: 0%;
    bottom: 0%;
    width: 100%;
}

/* About Sparketh Section */
.about {
  background: linear-gradient(to right, #f3e8ff, #fce7f3, #ffedd5);
  padding: 2rem 1rem;
  text-align: center;
  border-radius: 0.5rem;
  margin: 0 1rem 2rem;
}

.about h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #111827;
}

.about-highlight {
  background: linear-gradient(to right, #9333ea, #db2777);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.about p {
  font-size: 1rem;
  color: #374151;
  margin-bottom: 1rem;
}

.about-logo img {
  max-width: 250px;
  height: auto;
  display: inline-block;
  margin-top: 10px;
  margin-bottom: 10px;
}
