/* styles.css */

/* Universal box-sizing for consistent sizing */
*, *::before, *::after {
  box-sizing: border-box;
}

/* ------------------------- */
/* 1. Typography Scale       */
/* ------------------------- */
html {
  font-size: 16px; /* Base scale: 1rem = 16px */
  scroll-behavior: smooth;
}

/* CSS Custom Properties for brand colors */
:root {
  --gradient-start: #FFB347; /* Golden yellow */
  --gradient-mid: #FF5722; /* Orange */
  --gradient-end: #E53935; /* Red */
  --brand-gradient: linear-gradient(135deg, #FFB347 0%, #FF5722 50%, #E53935 100%);
  --brand-gradient-hover: linear-gradient(135deg, #FFC166 0%, #FF6D3B 50%, #EF5350 100%);
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 87, 34, 0.2);
  --shadow-soft: 0 4px 24px rgba(255, 87, 34, 0.12);
  --shadow-hover: 0 8px 32px rgba(255, 87, 34, 0.2);
}

body {
  margin: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #fafafa;
  color: #333;
  line-height: 1.6;
  font-size: 1rem;
  overflow-x: hidden;
}

img {
  image-rendering: crisp-edges;
  image-rendering: -webkit-optimize-contrast;
}


.hero {
  background: 
    radial-gradient(ellipse at 20% 0%, rgba(255, 179, 71, 0.15) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 0%, rgba(229, 57, 53, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, #fff8f0 0%, #fafafa 100%);
  color: #000;
  padding: 6rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 30% 20%, rgba(255, 179, 71, 0.08) 0%, transparent 40%);
  animation: float 20s ease-in-out infinite;
  pointer-events: none;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  50% { transform: translate(2%, 2%) rotate(2deg); }
}

/* Headings */
h1,
.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 1rem;;
  font-family: 'Montserrat', sans-serif;
  font-style: italic;
  color: #000; /* Dark headings */
}

.hero p {
  color: #000; /* Dark text */
}

h2,
.section-title,
.deck-theme h2,
.testimonials h2 {
  font-size: 2rem; /* 32px */
  color: #222; /* Dark headings */
  font-family: 'Montserrat', sans-serif;
  font-style: italic;
}

h3,
.deck-cover h3,
.card-preview h3 {
  font-size: 1.25rem; /* 20px */
  color: #222; /* Dark headings */
  font-family: 'Montserrat', sans-serif;
  font-style: italic;
}

/* Body copy */
p,
.decks li,
.deck-cover p,
.card-preview p,
.deck-theme p,
.section-subtitle,
.download p,
.transformation-quote blockquote,
.sub-brand {
  
  font-size: 1.125rem; /* 18px */
  color: #555; /* Medium gray text */
}

/* Small text */
.card-tag,
.card-preview .deck-name,
.quote-source,
cite,
.footer {
  font-size: 0.875rem; /* 14px */
}

.footer a, .footer a:hover, .footer a:visited {
  color: #FF5722; /* Orange accent */
  text-decoration: none;
  transition: color 0.3s;
}

.story a, .story a:hover, .story a:visited {
  color: #FF5722; /* Orange accent */
  text-decoration: none;
  transition: color 0.3s;
}

.link_cta, .link_cta:visited {
  color: #FF5722; /* Orange text for outline buttons */
  text-decoration: none;
}

/* Buttons */
.cta,
.link_cta {
  font-size: 1rem; /* 16px */
}



.gradient-text {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta {
  display: inline-block;
  background: var(--brand-gradient);
  color: white;
  padding: 0.9rem 2.8rem;
  margin-top: 1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 20px rgba(255, 87, 34, 0.35), 0 0 0 0 rgba(255, 87, 34, 0);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255, 87, 34, 0.45), 0 0 0 4px rgba(255, 87, 34, 0.1);
}

.cta:hover::before {
  left: 100%;
}

.link_cta {
  display: inline-block;
  background: transparent;
  color: #FF5722;
  border: 2px solid #FF5722;
  padding: 0.75rem 1.5rem;
  margin-top: 2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.link_cta:hover {
  color: #fff !important;
  background: var(--brand-gradient);
  border-color: #FF5722;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(255, 87, 34, 0.3);
}

.cta-secondary {
  display: inline-block;
  border: 2px solid rgba(255, 87, 34, 0.3);
  color: #FF5722;
  padding: 0.75rem 2.5rem;
  margin-top: 1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
  box-shadow: 0 4px 16px rgba(255, 87, 34, 0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  font-size: 1rem;
  background: rgba(255, 87, 34, 0.05);
}

.cta-secondary:hover {
  background: rgba(255, 87, 34, 0.1);
  border-color: #FF5722;
  box-shadow: 0 6px 24px rgba(255, 87, 34, 0.2);
  transform: translateY(-2px);
}


/* ------------------------- */
/* 2. Layout & Components    */
/* (font sizes removed/unified) */
/* ------------------------- */

.features {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 3rem 1.5rem;
  background: linear-gradient(180deg, #fafafa 0%, #fff 50%, #fafafa 100%);
  gap: 0.5rem;
}

.feature {
  flex: 1 1 300px;
  margin: 1rem;
  padding: 1.5rem;
  border-left: none;
  border-radius: 16px;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--glass-border);
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--brand-gradient);
  border-radius: 4px 0 0 4px;
}

.feature:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.decks {
  background: linear-gradient(180deg, #fafafa 0%, #fff5f0 50%, #fafafa 100%);
  padding: 3rem 2rem;
  text-align: center;
}

.decks ul {
  list-style: none;
  padding: 0;
  margin-top: 1rem;
}

.deck-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin: 1rem auto;
  padding: 1rem;
  border-radius: 8px;
  max-width: 100%;
  box-sizing: border-box;
}

.deck-cover {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 1.5rem 1rem;
  width: 200px;
  box-shadow: var(--shadow-soft);
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.deck-cover::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--brand-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.deck-list a.deck-cover {
  color: #333 !important;
  text-decoration: none !important;
  display: flex;
  flex-direction: column;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 1.5rem 1rem;
  width: 200px;
  box-shadow: var(--shadow-soft);
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.deck-cover:visited,
.deck-cover:hover,
.deck-cover:active {
  color: #333 !important;
  text-decoration: none !important;
}

.deck-list .deck-cover:hover {
  transform: translateY(-6px);
  border-color: transparent !important;
  box-shadow: var(--shadow-hover);
}

.deck-list .deck-cover:hover::after {
  opacity: 1;
}

/* Remove the old .deck-cover a, .deck-cover a:visited, .deck-cover a:hover rule */
/* ...existing code... */

.card-preview-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 1.5rem;
  align-items: flex-start; /* Prevents stretching cards vertically */
  max-width: 100%;
  padding: 0 1rem;
  box-sizing: border-box;
}

.card-preview {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 1.5rem 1.75rem;
  width: 280px;
  min-height: 290px;
  height: auto;
  box-shadow: var(--shadow-soft);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.card-preview::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--brand-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.card-preview:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  z-index: 2;
}

.card-preview:hover::before {
  transform: scaleX(1);
}

/* Align tag to bottom-right inside card-preview */
.card-preview .card-tag {
  position: absolute !important;
  right: 1.5rem;
  bottom: 1rem;
  left: auto;
  margin-top: 0;
  align-self: auto;
}

/* Ensure .card-flip matches .card-preview size */
.card-flip {
  perspective: 1000px;
  width: 250px;
  height: 210px; /* match card-preview height */
  position: relative;
  display: flex;
  align-items: stretch;
  cursor: pointer;
  flex-shrink: 0;
  flex-grow: 0;
  /* Remove any margin/padding that could affect sizing */
  margin: 0;
  padding: 0;
}

.card-tag {
  display: inline-block;
  margin-top: 0.75rem;
  color: #fff;
  background: var(--brand-gradient);
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
  align-self: flex-end;
  box-shadow: 0 2px 8px rgba(255, 87, 34, 0.3);
}

/* Only for the flippable card: keep tag inside the card */
.card-flip .card-tag {
  position: static !important; /* revert tag to normal flow at bottom of card */
  margin-top: auto;
  bottom: 1rem;
  right: 1.5rem;
  margin-top: 0;
  align-self: auto;
}

.download {
  padding: 4rem 2rem;
  text-align: center;
  background: linear-gradient(180deg, #fafafa 0%, #fff5f0 100%);
}

.footer {
  text-align: center;
  padding: 2rem 1rem;
  background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
  color: #fff;
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--brand-gradient);
}

/* Logo styling */
.logo {
  transition: all 0.4s ease;
  filter: drop-shadow(0 4px 16px rgba(255, 87, 34, 0.2));
}

.logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 8px 24px rgba(255, 87, 34, 0.35));
}

/* Brand link for sub-pages */
.brand-link {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  text-decoration: none;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  padding: 0.4rem 1rem 0.4rem 0.4rem;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 999px;
  border: 1px solid rgba(255, 87, 34, 0.15);
  transition: all 0.3s ease;
}

.brand-link:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(255, 87, 34, 0.3);
  box-shadow: 0 4px 16px rgba(255, 87, 34, 0.15);
}

.brand-logo {
  height: 32px;
  width: auto;
  transition: transform 0.3s ease;
}

.brand-link:hover .brand-logo {
  transform: rotate(-5deg);
}

.brand-name {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.3px;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.footer-links a {
  color: #FF5722;
  text-decoration: none;
  font-weight: 500;
  padding: 0 0.25rem;
  transition: color 0.2s;
}

.footer-links a:hover,
.footer-links a:focus {
  color: #FF8C00;
  text-decoration: underline;
}

.footer-separator {
  color: #444;
  font-size: 1.1em;
  padding: 0 0.2em;
  user-select: none;
}

.footer-copy {
  color: #bbb;
  font-size: 0.95em;
  margin-top: 0.25rem;
}

.deck-theme {
  padding: 4rem 2rem;
  text-align: center;
  background-color: #f8f9fa; /* Light background */
}

.struggle-vs-solution {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 1.5rem 0;       
  border-radius: 1rem;
  padding: 1rem;
  color: #333; /* Dark text */
}

.struggle,
.solution {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #333;
  padding: 1.75rem;
  border-left: 4px solid;
  border-image: var(--brand-gradient) 1;
  border-radius: 16px;
  text-align: left;
  box-shadow: var(--shadow-soft);
}

.transformation-quote {
  font-style: italic;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-left: 4px solid;
  border-image: var(--brand-gradient) 1;
  padding: 1.75rem;
  margin-top: 1.5rem;
  border-radius: 16px;
  color: #333;
  box-shadow: var(--shadow-soft);
}

.transformation-quote blockquote {
  margin: 0;
  color: #555; /* Medium gray text */
}

.deck-list-section {
  padding: 3rem 2rem;
  background: #f8f9fa; /* Light background */
  text-align: center;
}

.testimonials {
  background: #f8f9fa;
  padding: 3rem 2rem;
  text-align: center;
}

.testimonials blockquote {
  font-style: italic;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
  font-size: 1.15rem;
  color: #333;
  padding: 1.5rem 2rem;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 16px;
  border-left: 4px solid;
  border-image: var(--brand-gradient) 1;
  box-shadow: var(--shadow-soft);
  margin-bottom: 1.5rem;
}

.testimonials blockquote:last-of-type {
  margin-bottom: 0;
}

cite {
  display: block;
  margin-top: 0.5rem;
  margin-bottom: 1rem;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

.sub-brand, .sub-brand a, .sub-brand a:hover, .sub-brand a:visited {
  font-weight: 700;
  color: #FF5722 !important;
  text-decoration: none;
}


.story {
  max-width: 700px;
  margin: 0 auto;
  padding: 2.5rem;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.story h2 {
  text-align: center;
}

.story img { 
  display: block;
  margin: 0 auto 1.5rem;
}


.deck-cover {
  display: flex;
  flex-direction: column;
}

.deck-cover .cta-bottom {
  display: inline-block;
  background: var(--brand-gradient);
  color: white;
  padding: 0.5rem 1.5rem;
  margin-top: auto;
  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;
  font-size: 0.9rem;
  box-shadow: 0 2px 12px rgba(255, 87, 34, 0.3);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.deck-cover .cta-bottom:hover {
  box-shadow: 0 4px 16px rgba(255, 87, 34, 0.45);
  transform: translateY(-2px);
}

.phone {
  display: block;
  margin: 2rem auto;
  max-width: 500px;
}

/* ------------------------- */
/* 3. Responsive tweaks       */
/* ------------------------- */

/* Mobile-first responsive styles */
@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .hero {
    padding: 3rem 1rem 2.5rem;
  }

  h1,
  .hero h1 {
    font-size: 1.75rem;
    letter-spacing: -0.5px;
    line-height: 1.3;
  }

  h2,
  .section-title,
  .deck-theme h2,
  .testimonials h2 {
    font-size: 1.5rem;
  }

  h3,
  .deck-cover h3,
  .card-preview h3 {
    font-size: 1.1rem;
  }

  p,
  .decks li,
  .deck-cover p,
  .card-preview p,
  .deck-theme p,
  .section-subtitle,
  .download p,
  .transformation-quote blockquote,
  .sub-brand {
    font-size: 1rem;
  }

  .logo {
    height: 100px;
  }

  /* Limit all mascot/section images on mobile */
  .decks > img,
  .deck-theme > img,
  .deck-list-section > img,
  .example-cards > img,
  .story > img,
  section > img[alt*="Mascot"],
  img[alt*="Mascot"] {
    height: 80px !important;
    width: auto !important;
  }

  .cta {
    padding: 0.75rem 2rem;
    font-size: 0.9rem;
  }

  .link_cta {
    padding: 0.6rem 1.25rem;
    font-size: 0.9rem;
  }

  .features {
    padding: 2rem 1rem;
    gap: 0.5rem;
  }

  .feature {
    flex: 1 1 100%;
    margin: 0.5rem 0;
    padding: 1.25rem;
  }

  .decks {
    padding: 2rem 1rem;
  }

  .deck-list {
    gap: 1rem;
    padding: 0.5rem;
    margin: 0.5rem 0;
  }

  .deck-cover,
  .deck-list a.deck-cover {
    width: 100%;
    max-width: 280px;
    padding: 1.25rem 1rem;
  }

  .card-preview-container {
    gap: 1rem;
    padding: 0 0.5rem;
  }

  .card-preview {
    width: 100%;
    max-width: 500px;
    height: auto;
    min-height: 250px;
    padding: 1.25rem 1.5rem;
  }

  .card-preview .card-tag {
    position: relative !important;
    right: auto;
    bottom: auto;
    margin-top: 1rem;
    align-self: flex-start;
  }

  .card-flip {
    width: 100%;
    max-width: 280px;
    height: 180px;
  }

  .example-cards {
    padding: 2rem 1rem;
  }

  .download {
    padding: 2.5rem 1rem;
  }

  .phone {
    max-width: 260px;
  }

  .deck-theme {
    padding: 2rem 1rem;
  }

  .struggle-vs-solution {
    padding: 0.5rem;
    gap: 1rem;
    margin: 1rem 0;
  }

  .struggle,
  .solution {
    padding: 1.25rem;
  }

  .transformation-quote {
    padding: 1.25rem;
    margin-top: 1rem;
  }

  .testimonials {
    padding: 2rem 1rem;
  }

  .testimonials blockquote {
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
  }

  .story {
    padding: 1.5rem;
    border-radius: 16px;
    margin: 0 0.5rem;
  }

  .footer {
    padding: 1.5rem 1rem;
  }

  .footer-links {
    flex-direction: column;
    gap: 0.75rem;
  }

  .footer-separator {
    display: none;
  }

  .fivef-section {
    padding: 2rem 1rem;
  }

  .fivef-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .fivef-card {
    padding: 1.5rem 1rem;
  }

  .brand-link {
    margin-bottom: 1rem;
  }

  .brand-logo {
    height: 28px;
  }

  .brand-name {
    font-size: 0.75rem;
  }
}

/* Tablet styles */
@media (min-width: 481px) and (max-width: 768px) {
  html {
    font-size: 15px;
  }

  .hero {
    padding: 4rem 1.5rem 3.5rem;
  }

  h1,
  .hero h1 {
    font-size: 2.25rem;
  }

  .features {
    padding: 2.5rem 1.25rem;
  }

  .feature {
    flex: 1 1 45%;
    margin: 0.75rem;
  }

  .deck-list {
    gap: 1.25rem;
  }

  .deck-cover,
  .deck-list a.deck-cover {
    width: 180px;
  }

  .card-preview {
    width: 220px;
    height: 230px;
  }

  .card-flip {
    width: 220px;
    height: 190px;
  }

  .phone {
    max-width: 280px;
  }

  .fivef-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Limit mascot images on tablet */
  .decks > img,
  .deck-theme > img,
  .deck-list-section > img,
  .example-cards > img,
  .story > img,
  img[alt*="Mascot"] {
    height: 120px !important;
    width: auto !important;
  }
}

/* Desktop (original behavior) */
@media (min-width: 769px) {
  .struggle-vs-solution {
    flex-direction: row;
  }

  .struggle,
  .solution {
    flex: 1;
  }
}

/* Improve touch targets for mobile */
@media (max-width: 768px) {
  .cta,
  .link_cta,
  .cta-secondary {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .footer-links a {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }

  /* Prevent horizontal scroll */
  .hero::before {
    display: none;
  }

  /* Better image handling */
  img {
    max-width: 100%;
    height: auto;
  }

  .logo {
    max-width: 150px;
    height: auto;
  }

  /* Stack decks section content nicely */
  .decks h3 {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
}

/* 4. Light-mode all panels & backgrounds */
.features,
.decks,
.example-cards,
.testimonials,
.download,
.deck-theme,
.deck-list-section,
.story {
  background-color: #f8f9fa; /* Light background */
  color: #333; /* Dark text */
}

.feature {
  background: #fff; /* White background */
  border-left-color: #FF5722; /* Orange accent */
}

.deck-list .deck-cover,
.card-preview {
  background: #fff !important; /* White background */
  border-color: #e0e0e0 !important; /* Light border */
}

.feature h2,
.feature p,
.decks h2,
.decks p,
.example-cards h2,
.example-cards p,
.testimonials blockquote,
.download p,
.deck-theme h2,
.deck-list-section h2,
.story p {
  color: #333; /* Dark text */
}

/* ensure the example-cards title & subtitle are centered */
.example-cards h2,
.example-cards p {
  text-align: center;
}

.title-highlight {
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.example-cards {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.example-cards .link_cta {
  margin-left: auto;
  margin-right: auto;
  display: block;
}


.example-cards .link_cta {
  margin-left: auto;
  margin-right: auto;
  display: block;
}

/* Custom bullet styling for all unordered lists */
ul {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

ul li {
  position: relative;
  padding-left: 1.7em;
  margin-bottom: 0.75em;
  color: #333; /* Dark text */
}

ul li::before {
  content: '';
  position: absolute;
  left: 0.3em;
  top: 0.7em;
  width: 0.35em;
  height: 0.35em;
  background: var(--brand-gradient);
  border-radius: 50%;
  display: inline-block;
  transform: translateY(-50%);
  box-shadow: 0 0 4px rgba(255, 87, 34, 0.4);
}


.fivef-section {
  padding: 4rem 2rem;
  text-align: center;
  background-color: #f8f9fa; /* Light background */
}

.fivef-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.fivef-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 2rem 1.5rem;
  border-radius: 20px;
  border: 1px solid var(--glass-border);
  color: #333;
  box-shadow: var(--shadow-soft);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.fivef-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--brand-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.fivef-card:hover {
  transform: translateY(-8px);
  border-color: transparent;
  box-shadow: var(--shadow-hover);
}

.fivef-card:hover::before {
  opacity: 1;
}

.fivef-icon {
  font-size: 2rem;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.fivef-label {
  font-size: 1.25rem;
  font-weight: 700;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-family: 'Montserrat', sans-serif;
}

.fivef-desc {
  margin-top: 0.5rem;
  font-size: 1rem;
  color: #555; /* Medium gray text */
  line-height: 1.5;
}

/* ------------------------- */
/* Creator Guide Styles      */
/* ------------------------- */
.creator-format {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 16px;
  padding: 1.5rem 2rem;
  margin: 1.5rem 0;
  box-shadow: var(--shadow-soft);
  text-align: left;
}

.creator-format h3 {
  font-size: 1.25rem;
  font-weight: 700;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.5rem;
}

.creator-format p {
  margin: 0.5rem 0;
  color: #333;
}

.creator-format .hooks {
  font-size: 0.95rem;
  color: #555;
  background: rgba(255, 87, 34, 0.05);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  border-left: 3px solid var(--gradient-mid);
  margin-top: 0.75rem;
}

.creator-format .hooks em {
  color: var(--gradient-mid);
  font-weight: 600;
}
