/* ================================================
   JELLIES — style.css
   ================================================ */



/* ---- Reset & base ---- */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --purple:       #8B7FD8;
  --purple-mid:   #A99EE8;
  --purple-pale:  #EDE9FF;
  --purple-soft:  #F5F3FF;
  --blue:         #6B9FD8;
  --blue-pale:    #E4EEFF;
  --blue-soft:    #F0F4FF;
  --teal:         #6BB6C0;
  --teal-pale:    #E4F4F6;
  --warm:         #FFF0E8;

  --text-dark:    #2D2A3E;
  --text-mid:     #5E5A78;
  --text-soft:    #9B97B8;

  --bg-white:     #FFFFFF;
  --bg-purple:    #F8F7FF;
  --bg-blue:      #F0F4FF;

  --radius-sm:    10px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --radius-xl:    32px;

  --shadow-card:  0 2px 16px rgba(139,127,216,0.10), 0 1px 4px rgba(139,127,216,0.06);
  --shadow-hover: 0 12px 40px rgba(139,127,216,0.18), 0 2px 8px rgba(139,127,216,0.08);
  --shadow-cta:   0 4px 24px rgba(139,127,216,0.38);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg-white);
  color: var(--text-dark);
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ================================================
   HERO
   ================================================ */

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, #1A1635 0%, #1F1C48 45%, #1A2245 100%);
  padding: 88px 24px 100px;
  text-align: center;
}

/* Decorative blurred bubbles */
.hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: 0.6;
}

.hero-blob-1 {
  width: 420px;
  height: 420px;
  background: radial-gradient(circle, rgba(139,127,216,0.55) 0%, transparent 70%);
  top: -140px;
  left: -100px;
}

.hero-blob-2 {
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(107,159,216,0.45) 0%, transparent 70%);
  top: -80px;
  right: -100px;
}

.hero-blob-3 {
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(107,182,192,0.35) 0%, transparent 70%);
  bottom: 20px;
  right: 12%;
}

.hero-blob-4 {
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(169,158,232,0.4) 0%, transparent 70%);
  bottom: 40px;
  left: 8%;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-logo {
  width: 200px;
  height: 200px;
  object-fit: contain;
  margin-bottom: 10px;
}

.hero-brand {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(200,192,255,0.6);
  margin-bottom: 24px;
}

.hero-tagline {
  font-size: 60px;
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -1.5px;
  color: #F0EEFF;
  margin-bottom: 18px;
}

.hero-sub {
  font-size: 20px;
  font-weight: 500;
  color: rgba(220,215,255,0.65);
  line-height: 1.45;
  margin-bottom: 36px;
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--purple) 0%, var(--blue) 100%);
  color: white;
  font-family: 'Nunito', sans-serif;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 30px;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: var(--shadow-cta);
  cursor: default;
  user-select: none;
  letter-spacing: 0.01em;
}

.hero-cta-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(255,255,255,0.8);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

.hero-launch {
  font-size: 13px;
  font-weight: 600;
  color: rgba(200,192,255,0.45);
}

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

/* ================================================
   ABOUT
   ================================================ */

.about {
  max-width: 680px;
  margin: 0 auto;
  padding: 88px 24px;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple);
  background: var(--purple-pale);
  padding: 5px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.about-heading {
  font-size: 30px;
  font-weight: 800;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 20px;
  letter-spacing: -0.3px;
}

.about-body {
  font-size: 17px;
  font-weight: 500;
  color: var(--text-mid);
  line-height: 1.8;
  max-width: 540px;
  margin: 0 auto;
}

/* ================================================
   FEATURES
   ================================================ */

.features {
  background: var(--bg-purple);
  padding: 88px 24px;
}

.features-inner {
  max-width: 720px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-heading {
  font-size: 30px;
  font-weight: 800;
  color: var(--text-dark);
  margin-top: 12px;
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.feature-card {
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  box-shadow: var(--shadow-card);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.feature-icon-wrap {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
}

.icon-purple { background: var(--purple-pale); }
.icon-blue   { background: var(--blue-pale); }
.icon-teal   { background: var(--teal-pale); }
.icon-warm   { background: var(--warm); }

.feature-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.feature-desc {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-mid);
  line-height: 1.65;
}

/* ================================================
   WHO IS IT FOR
   ================================================ */

.for-section {
  max-width: 680px;
  margin: 0 auto;
  padding: 88px 24px;
}

.for-heading {
  font-size: 30px;
  font-weight: 800;
  color: var(--text-dark);
  margin-top: 12px;
  margin-bottom: 32px;
  letter-spacing: -0.3px;
  line-height: 1.2;
}

.for-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.for-list li {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 16px;
  font-weight: 600;
  color: var(--text-mid);
  line-height: 1.5;
}

.for-bullet {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--purple-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

.for-close {
  background: linear-gradient(135deg, var(--purple-soft) 0%, var(--blue-soft) 100%);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  font-size: 16px;
  font-weight: 500;
  color: var(--text-mid);
  line-height: 1.7;
}

.for-close strong {
  color: var(--purple);
  font-weight: 700;
}

/* ================================================
   DISCLAIMER
   ================================================ */

.disclaimer {
  background: var(--bg-purple);
  padding: 72px 24px;
}

.disclaimer-card {
  max-width: 680px;
  margin: 0 auto;
  background: var(--bg-white);
  border-radius: var(--radius-xl);
  padding: 36px 40px;
  box-shadow: var(--shadow-card);
}

.disclaimer-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--purple);
  margin-bottom: 12px;
}

.disclaimer-body {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 20px;
}

.disclaimer-body strong {
  color: var(--text-dark);
  font-weight: 700;
}

.crisis-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.crisis-chip {
  background: var(--purple-pale);
  border-radius: var(--radius-sm);
  padding: 7px 14px;
  font-size: 13px;
  font-weight: 700;
  color: var(--purple);
}

/* ================================================
   FOOTER
   ================================================ */

.footer {
  background: var(--bg-white);
  border-top: 1px solid rgba(139,127,216,0.12);
  padding: 44px 24px 36px;
  text-align: center;
}

.footer-wordmark {
  display: inline-block;
  font-size: 20px;
  font-weight: 900;
  letter-spacing: -0.3px;
  background: linear-gradient(135deg, var(--purple) 0%, var(--blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.footer-email {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-soft);
  margin-bottom: 16px;
}

.footer-email a {
  color: var(--purple);
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s;
}

.footer-email a:hover { opacity: 0.75; text-decoration: underline; }

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 20px;
  margin-bottom: 20px;
  align-items: center;
}

.footer-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-soft);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--purple); }

.footer-social {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.footer-social a {
  color: var(--text-soft);
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

.footer-social a:hover { color: var(--purple); }

.footer-copy {
  font-size: 12px;
  font-weight: 500;
  color: var(--text-soft);
}


/* ================================================
   FEATURE SHOWCASE
   ================================================ */
.showcase {
  max-width: 840px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}

.showcase-text .eyebrow {
  margin-bottom: 16px;
}

.showcase-text h3 {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.4px;
  color: var(--text-dark);
  line-height: 1.25;
  margin-bottom: 16px;
}

.showcase-text p {
  font-size: 17px;
  color: var(--text-mid);
  line-height: 1.65;
}

.showcase-img img {
  width: 240px;
  border-radius: 36px;
  box-shadow: 0 20px 60px rgba(139,127,216,0.15), 0 4px 16px rgba(139,127,216,0.1);
}

.showcase-reverse {
  grid-template-columns: auto 1fr;
}

/* ================================================
   SCROLL FADE
   ================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.feature-card.fade-up:nth-child(2) { transition-delay: 80ms; }
.feature-card.fade-up:nth-child(3) { transition-delay: 160ms; }
.feature-card.fade-up:nth-child(4) { transition-delay: 240ms; }

@media (prefers-reduced-motion: reduce) {
  .fade-up { opacity: 1; transform: none; transition: none; }
}

/* ================================================
   SECTION DIVIDER
   ================================================ */

.section-divider {
  width: 100%;
  max-width: 640px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139,127,216,0.2), transparent);
  margin: 0 auto;
}

/* ================================================
   RESPONSIVE
   ================================================ */

@media (max-width: 640px) {
  .hero { padding: 64px 20px 80px; }
  .showcase-reverse .showcase-text { order: 1; }
  .showcase-reverse .showcase-img { order: 2; }
  .hero-tagline { font-size: 42px; letter-spacing: -0.5px; }
  .hero-logo { width: 150px; height: 150px; }
  .hero-sub { font-size: 17px; }

  .about,
  .for-section { padding: 64px 20px; }
  .features { padding: 64px 20px; }
  .disclaimer { padding: 56px 20px; }

  .about-heading,
  .section-heading,
  .for-heading { font-size: 26px; }

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

  .disclaimer-card { padding: 26px 22px; }
  .for-close { padding: 20px 22px; }

  .showcase { grid-template-columns: 1fr; text-align: center; gap: 36px; padding: 64px 20px; }
  .showcase-img { display: flex; justify-content: center; }
  .showcase-img img { width: 200px; }
  .showcase-text h3 { font-size: 24px; }

  .footer { padding: 40px 20px 28px; }
}
