/* ===== CSS Variables ===== */
:root {
  /* Primary colors from Kiddytales app */
  --primary: #77BC2D;
  --primary-dark: #4F8E0B;
  --secondary: #FFB70A;
  --orange: #FF9B54;
  --pink: #F991D4;
  --light-blue: #6BC4FC;
  --yellow: #FFD426;
  --purple: #7B68EE;

  /* Neutrals */
  --header-text: #2B3445;
  --body-text: #010005;
  --text-light: #87837B;
  --scaffold: #FFF9F0;
  --container: #FBFEFB;
  --white: #ffffff;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;

  /* Border radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 30px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);

  /* Transitions */
  --transition: 0.3s ease;
}

/* ===== Google Fonts Import ===== */
@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=DM+Sans:wght@400;500;600;700&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--body-text);
  background-color: var(--scaffold);
  position: relative;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(107, 196, 252, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: float 20s ease-in-out infinite;
}

body::after {
  content: '';
  position: fixed;
  bottom: -30%;
  left: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(249, 145, 212, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  animation: float 18s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(20px, -30px) rotate(5deg); }
  50% { transform: translate(-20px, 20px) rotate(-5deg); }
  75% { transform: translate(30px, 10px) rotate(3deg); }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover {
  color: var(--primary-dark);
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Fredoka', 'DM Sans', sans-serif;
  color: var(--header-text);
  font-weight: 600;
  line-height: 1.2;
}

h1 { font-size: 2.5rem; font-weight: 700; }
h2 { font-size: 2rem; font-weight: 600; }
h3 { font-size: 1.5rem; font-weight: 600; }
h4 { font-size: 1.25rem; font-weight: 600; }

@media (min-width: 768px) {
  h1 { font-size: 3.75rem; }
  h2 { font-size: 2.75rem; }
  h3 { font-size: 1.75rem; }
}

/* ===== Container ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  position: relative;
  z-index: 1;
}

/* ===== Header & Navigation ===== */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 3px solid transparent;
  border-image: linear-gradient(90deg, var(--primary), var(--secondary), var(--orange), var(--pink), var(--light-blue)) 1;
  animation: slideDown 0.5s ease-out;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--spacing-sm);
  padding-bottom: var(--spacing-sm);
}

.logo {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--header-text);
}

.logo span:nth-child(1) { color: var(--primary); }
.logo span:nth-child(2) { color: var(--secondary); }
.logo span:nth-child(3) { color: var(--orange); }
.logo span:nth-child(4) { color: var(--pink); }
.logo span:nth-child(5) { color: var(--light-blue); }

.nav {
  display: none;
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--spacing-xs);
}

.nav-toggle span {
  width: 24px;
  height: 3px;
  background: var(--header-text);
  border-radius: 2px;
  transition: var(--transition);
}

@media (min-width: 768px) {
  .nav {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
  }
  
  .nav-toggle {
    display: none;
  }
}

.nav a {
  color: var(--header-text);
  font-weight: 600;
  padding: var(--spacing-xs) 0;
  position: relative;
  transition: color var(--transition);
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--light-blue));
  border-radius: 2px;
  transition: width 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.nav a:hover::after {
  width: 100%;
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: var(--white);
  box-shadow: var(--shadow-md);
  padding: var(--spacing-md);
}

.mobile-nav.active {
  display: block;
}

.mobile-nav a {
  display: block;
  padding: var(--spacing-sm);
  color: var(--header-text);
  font-weight: 500;
  border-bottom: 1px solid var(--scaffold);
}

.mobile-nav a:last-child {
  border-bottom: none;
}

/* ===== Hero Section ===== */
.hero {
  background: linear-gradient(135deg, #FFF9F0 0%, #FFF3E6 50%, #FFE8D6 100%);
  padding: var(--spacing-2xl) 0 var(--spacing-2xl);
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '✨';
  position: absolute;
  top: 10%;
  left: 5%;
  font-size: 3rem;
  opacity: 0.3;
  animation: twinkle 3s ease-in-out infinite;
}


@keyframes twinkle {
  0%, 100% { opacity: 0.2; transform: scale(1) rotate(0deg); }
  50% { opacity: 0.4; transform: scale(1.1) rotate(5deg); }
}

.hero .container {
  display: grid;
  gap: var(--spacing-xl);
  align-items: center;
}

@media (min-width: 768px) {
  .hero .container {
    grid-template-columns: 1fr 1fr;
  }
}

.hero-content {
  text-align: center;
}

@media (min-width: 768px) {
  .hero-content {
    text-align: left;
  }
}

.hero-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--secondary), var(--orange));
  color: var(--white);
  font-size: 0.875rem;
  font-weight: 700;
  padding: var(--spacing-xs) var(--spacing-md);
  border-radius: var(--radius-xl);
  margin-bottom: var(--spacing-md);
  box-shadow: 0 4px 15px rgba(255, 183, 10, 0.3);
  animation: badge-pop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.3s backwards;
}

@keyframes badge-pop {
  0% { transform: scale(0) rotate(-10deg); opacity: 0; }
  100% { transform: scale(1) rotate(0deg); opacity: 1; }
}

.hero h1 {
  margin-bottom: var(--spacing-md);
  animation: fadeInUp 0.8s ease-out 0.5s backwards;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--primary), var(--light-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.hero h1 .highlight::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 12px;
  background: url("data:image/svg+xml,%3Csvg width='100' height='12' viewBox='0 0 100 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 8 Q 25 4, 50 7 T 100 6' stroke='%2377BC2D' stroke-width='3' fill='none' stroke-linecap='round' opacity='0.3'/%3E%3C/svg%3E") repeat-x;
  background-size: 100px 12px;
  z-index: -1;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-description {
  font-size: 1.125rem;
  color: var(--text-light);
  margin-bottom: var(--spacing-lg);
  max-width: 500px;
  animation: fadeInUp 0.8s ease-out 0.7s backwards;
}

@media (min-width: 768px) {
  .hero-description {
    margin-left: 0;
    margin-right: auto;
    font-size: 1.2rem;
  }
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-sm);
  justify-content: center;
  animation: fadeInUp 0.8s ease-out 0.9s backwards;
}

@media (min-width: 768px) {
  .hero-buttons {
    justify-content: flex-start;
  }
}

.hero-image {
  display: flex;
  justify-content: center;
  animation: fadeInUp 0.8s ease-out 1.1s backwards;
}

.hero-screenshot {
  max-width: 300px;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
  transform: rotate(-2deg);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hero-screenshot:hover {
  transform: rotate(0deg) scale(1.02);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.2);
}

@media (min-width: 768px) {
  .hero-screenshot {
    max-width: 350px;
  }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-sm) var(--spacing-lg);
  border-radius: var(--radius-xl);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border: none;
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  box-shadow: 0 4px 20px rgba(119, 188, 45, 0.4);
}

.btn-primary:hover {
  color: var(--white);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 30px rgba(119, 188, 45, 0.5);
}

.btn-secondary {
  background: linear-gradient(135deg, var(--header-text), #1a2030);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(43, 52, 69, 0.4);
}

.btn-secondary:hover {
  color: var(--white);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 6px 30px rgba(43, 52, 69, 0.5);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
}

/* ===== Screenshots Section ===== */
.screenshots {
  padding: var(--spacing-2xl) 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.screenshots::before {
  content: '🎨';
  position: absolute;
  top: 5%;
  right: 3%;
  font-size: 4rem;
  opacity: 0.05;
  transform: rotate(15deg);
}

.section-header {
  text-align: center;
  margin-bottom: var(--spacing-xl);
  position: relative;
}

.section-header h2 {
  margin-bottom: var(--spacing-sm);
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--secondary), var(--orange));
  border-radius: 2px;
}

.section-header p {
  color: var(--text-light);
  max-width: 600px;
  margin: var(--spacing-md) auto 0;
  font-size: 1.1rem;
}

.screenshots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-lg);
  justify-items: center;
}

@media (min-width: 768px) {
  .screenshots-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .screenshots-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.screenshot-item {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow var(--transition);
  max-width: 200px;
  position: relative;
}

.screenshot-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(119, 188, 45, 0.1), rgba(107, 196, 252, 0.1));
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 1;
  pointer-events: none;
}

.screenshot-item:hover::before {
  opacity: 1;
}

.screenshot-item:hover {
  transform: translateY(-12px) rotate(2deg);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.screenshot-item:nth-child(odd):hover {
  transform: translateY(-12px) rotate(-2deg);
}

.screenshot-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== Features Section ===== */
.features {
  padding: var(--spacing-2xl) 0;
  background: linear-gradient(180deg, var(--scaffold) 0%, rgba(255, 249, 240, 0.5) 100%);
  position: relative;
}

.features::before {
  content: '⭐';
  position: absolute;
  top: 10%;
  left: 2%;
  font-size: 3rem;
  opacity: 0.08;
  animation: twinkle 4s ease-in-out infinite;
}

.features-grid {
  display: grid;
  gap: var(--spacing-lg);
}

@media (min-width: 768px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-card {
  background: var(--white);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
  border: 2px solid transparent;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(135deg, var(--primary), var(--light-blue), var(--pink));
  border-radius: var(--radius-lg);
  opacity: 0;
  transition: opacity var(--transition);
  z-index: -1;
}

.feature-card:hover::before {
  opacity: 0.6;
}

.feature-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
  border-color: transparent;
}

.feature-icon {
  width: 72px;
  height: 72px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin-bottom: var(--spacing-md);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(-5deg);
}

.feature-icon.green {
  background: linear-gradient(135deg, rgba(119, 188, 45, 0.2), rgba(119, 188, 45, 0.1));
}
.feature-icon.orange {
  background: linear-gradient(135deg, rgba(255, 183, 10, 0.2), rgba(255, 183, 10, 0.1));
}
.feature-icon.blue {
  background: linear-gradient(135deg, rgba(107, 196, 252, 0.2), rgba(107, 196, 252, 0.1));
}
.feature-icon.pink {
  background: linear-gradient(135deg, rgba(249, 145, 212, 0.2), rgba(249, 145, 212, 0.1));
}
.feature-icon.purple {
  background: linear-gradient(135deg, rgba(123, 104, 238, 0.2), rgba(123, 104, 238, 0.1));
}
.feature-icon.yellow {
  background: linear-gradient(135deg, rgba(255, 212, 38, 0.2), rgba(255, 212, 38, 0.1));
}

.feature-card h3 {
  margin-bottom: var(--spacing-sm);
}

.feature-card p {
  color: var(--text-light);
}

/* ===== CTA Section ===== */
.cta {
  padding: var(--spacing-2xl) 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 15s ease-in-out infinite;
}

.cta::after {
  content: '';
  position: absolute;
  bottom: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 18s ease-in-out infinite reverse;
}

.cta h2 {
  color: var(--white);
  margin-bottom: var(--spacing-sm);
  position: relative;
  z-index: 1;
}

.cta p {
  opacity: 0.95;
  margin-bottom: var(--spacing-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  font-size: 1.1rem;
  position: relative;
  z-index: 1;
}

.cta .btn-secondary {
  background: var(--white);
  color: var(--primary-dark);
  position: relative;
  z-index: 1;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.cta .btn-secondary:hover {
  background: var(--scaffold);
  color: var(--primary-dark);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

/* ===== Footer ===== */
.footer {
  background: linear-gradient(180deg, #1a2030 0%, var(--header-text) 100%);
  color: var(--white);
  padding: var(--spacing-xl) 0 var(--spacing-lg);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary), var(--orange), var(--pink), var(--light-blue), var(--purple));
}

.footer-content {
  display: grid;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

@media (min-width: 768px) {
  .footer-content {
    grid-template-columns: 2fr 1fr 1fr;
  }
}

.footer-brand .logo {
  margin-bottom: var(--spacing-sm);
  color: var(--white);
}

.footer-brand p {
  opacity: 0.8;
  max-width: 300px;
}

.footer-links h4 {
  color: var(--white);
  margin-bottom: var(--spacing-md);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: var(--spacing-xs);
}

.footer-links a {
  color: var(--white);
  opacity: 0.8;
  transition: opacity var(--transition);
}

.footer-links a:hover {
  opacity: 1;
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: var(--spacing-lg);
  text-align: center;
  opacity: 0.7;
  font-size: 0.875rem;
}

/* ===== Policy & Contact Pages ===== */
.page-header {
  background: linear-gradient(135deg, #F9FFF2 0%, var(--container) 100%);
  padding: var(--spacing-2xl) 0;
  text-align: center;
}

.page-header h1 {
  margin-bottom: var(--spacing-sm);
}

.page-header p {
  color: var(--text-light);
}

.page-content {
  padding: var(--spacing-2xl) 0;
  background: var(--white);
}

.content-wrapper {
  max-width: 800px;
  margin: 0 auto;
}

.content-wrapper h2 {
  margin-top: var(--spacing-xl);
  margin-bottom: var(--spacing-md);
  padding-bottom: var(--spacing-xs);
  border-bottom: 2px solid var(--primary);
}

.content-wrapper h2:first-child {
  margin-top: 0;
}

.content-wrapper h3 {
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-sm);
}

.content-wrapper p {
  margin-bottom: var(--spacing-md);
  color: var(--body-text);
}

.content-wrapper ul, .content-wrapper ol {
  margin-bottom: var(--spacing-md);
  padding-left: var(--spacing-lg);
}

.content-wrapper li {
  margin-bottom: var(--spacing-xs);
}

.last-updated {
  font-size: 0.875rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: var(--spacing-lg);
}

/* Contact specific styles */
.contact-card {
  background: var(--scaffold);
  padding: var(--spacing-lg);
  border-radius: var(--radius-lg);
  margin-bottom: var(--spacing-lg);
}

.contact-card h3 {
  margin-top: 0;
  margin-bottom: var(--spacing-sm);
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.contact-card p {
  margin-bottom: var(--spacing-sm);
}

.contact-card a {
  font-weight: 600;
}

/* ===== Utilities ===== */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-lg { margin-top: var(--spacing-lg); }

/* ===== Custom Cursor Effect (subtle) ===== */
@media (hover: hover) and (pointer: fine) {
  body {
    cursor: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='8' fill='%2377BC2D' opacity='0.3'/%3E%3Ccircle cx='12' cy='12' r='3' fill='%2377BC2D'/%3E%3C/svg%3E") 12 12, auto;
  }

  a, button, .btn {
    cursor: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='12' cy='12' r='10' fill='%23FFB70A' opacity='0.4'/%3E%3Ccircle cx='12' cy='12' r='4' fill='%23FFB70A'/%3E%3C/svg%3E") 12 12, pointer;
  }
}

/* ===== Scroll-triggered fade-in animations ===== */
@keyframes fadeInScale {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ===== Loading state animations ===== */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

/* ===== Decorative blob shapes ===== */
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(249, 145, 212, 0.1) 0%, transparent 70%);
  border-radius: 40% 60% 70% 30% / 60% 40% 60% 40%;
  z-index: 0;
  animation: blob-morph 10s ease-in-out infinite;
}

@keyframes blob-morph {
  0%, 100% {
    border-radius: 40% 60% 70% 30% / 60% 40% 60% 40%;
    transform: rotate(0deg);
  }
  50% {
    border-radius: 60% 40% 30% 70% / 40% 60% 40% 60%;
    transform: rotate(180deg);
  }
}

/* ===== Enhanced focus states for accessibility ===== */
*:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ===== Print styles ===== */
@media print {
  .header,
  .nav,
  .mobile-nav,
  .hero-buttons,
  .cta,
  .footer {
    display: none;
  }

  body {
    background: white;
  }

  body::before,
  body::after {
    display: none;
  }
}
