/*
Theme Name: BuyEarlier
Theme URI: https://buyearlier.com
Author: BuyEarlier Team
Description: A premium fitness & beauty affiliate blog theme with Amazon affiliate integration, SEO optimization, and stunning coral/pink design.
Version: 1.0.0
License: GNU General Public License v2 or later
Text Domain: buyearlier
Tags: affiliate, fitness, beauty, seo, blog, ecommerce
*/

/* =============================================
   CSS VARIABLES & DESIGN TOKENS
   ============================================= */
:root {
  --coral:        #FF6B6B;
  --coral-light:  #FF8E8E;
  --coral-dark:   #E85555;
  --pink:         #FFB5C8;
  --pink-light:   #FFE0EA;
  --pink-soft:    #FFF5F7;
  --white:        #FFFFFF;
  --off-white:    #FAFAFA;
  --text-dark:    #1A1A2E;
  --text-mid:     #4A4A6A;
  --text-light:   #8888A8;
  --border:       #F0E8EC;
  --gold:         #F4C430;
  --green:        #48C774;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
  --font-accent:  'DM Serif Display', serif;

  --shadow-sm:    0 2px 8px rgba(255,107,107,0.08);
  --shadow-md:    0 8px 30px rgba(255,107,107,0.15);
  --shadow-lg:    0 20px 60px rgba(255,107,107,0.2);
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --radius-xl:    40px;

  --max-width:    1200px;
  --transition:   0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--coral); }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.25;
  color: var(--text-dark);
  font-weight: 700;
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.25rem; }

p { margin-bottom: 1rem; color: var(--text-mid); }

.highlight { color: var(--coral); }

/* =============================================
   UTILITY CLASSES
   ============================================= */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 80px 0; }
.text-center { text-align: center; }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.grid { display: grid; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-xl);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  letter-spacing: 0.02em;
}

.btn-primary {
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  color: white;
  box-shadow: var(--shadow-md);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: white;
}

.btn-outline {
  background: transparent;
  color: var(--coral);
  border: 2px solid var(--coral);
}
.btn-outline:hover {
  background: var(--coral);
  color: white;
  transform: translateY(-2px);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-coral { background: var(--pink-light); color: var(--coral-dark); }
.badge-gold  { background: #FFF8E1; color: #C47E00; }
.badge-green { background: #E8F8F0; color: #2E8A57; }

/* =============================================
   HEADER & NAVIGATION
   ============================================= */
#site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

#site-header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.site-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: -0.02em;
}

.site-logo span { color: var(--coral); }

.main-nav { display: flex; align-items: center; gap: 32px; }

.main-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-mid);
  position: relative;
  padding-bottom: 4px;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--coral);
  border-radius: 2px;
  transition: width var(--transition);
}

.main-nav a:hover { color: var(--coral); }
.main-nav a:hover::after { width: 100%; }

.header-search {
  display: flex;
  align-items: center;
  background: var(--pink-soft);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 8px 16px;
  gap: 8px;
  transition: all var(--transition);
}

.header-search:focus-within {
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(255,107,107,0.1);
}

.header-search input {
  border: none; background: transparent;
  font-family: var(--font-body);
  font-size: 0.9rem; color: var(--text-dark);
  outline: none; width: 180px;
}

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text-dark); border-radius: 2px; transition: all var(--transition); }

/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  background: linear-gradient(135deg, var(--pink-soft) 0%, #FFF0F5 50%, var(--white) 100%);
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,181,200,0.3) 0%, transparent 70%);
  top: -200px; right: -100px;
  border-radius: 50%;
}

.hero::after {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(255,107,107,0.1) 0%, transparent 70%);
  bottom: -100px; left: -100px;
  border-radius: 50%;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--pink-light);
  color: var(--coral-dark);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.hero h1 { margin-bottom: 20px; }

.hero-desc {
  font-size: 1.1rem;
  color: var(--text-mid);
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 48px; }

.hero-stats {
  display: flex;
  gap: 32px;
}

.stat-item {}
.stat-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--coral);
  line-height: 1;
}
.stat-label { font-size: 0.8rem; color: var(--text-light); margin-top: 4px; }

.hero-image-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  height: 480px;
}

.hero-img-main {
  grid-row: 1 / 3;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-img-sm {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.hero-img-main img,
.hero-img-sm img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.hero-img-main:hover img,
.hero-img-sm:hover img { transform: scale(1.05); }

/* =============================================
   CATEGORY PILLS
   ============================================= */
.categories-bar {
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
  background: white;
}

.categories-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.categories-scroll::-webkit-scrollbar { display: none; }

.cat-pill {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-xl);
  background: var(--pink-soft);
  border: 1.5px solid var(--border);
  color: var(--text-mid);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}

.cat-pill:hover,
.cat-pill.active {
  background: var(--coral);
  color: white;
  border-color: var(--coral);
  box-shadow: var(--shadow-sm);
}

.cat-pill .icon { font-size: 1rem; }

/* =============================================
   FEATURED POSTS GRID
   ============================================= */
.featured-section { background: var(--off-white); }

.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
  gap: 20px;
}

.section-title-group {}
.section-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--coral);
  margin-bottom: 8px;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.posts-grid.featured-layout {
  grid-template-columns: 1.5fr 1fr 1fr;
}

/* =============================================
   POST CARD
   ============================================= */
.post-card {
  background: white;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.post-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--pink);
}

.post-card-img {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--pink-soft);
}

.post-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.post-card:hover .post-card-img img { transform: scale(1.07); }

.post-card-img .badge {
  position: absolute;
  top: 12px; left: 12px;
  z-index: 2;
}

.affiliate-tag {
  position: absolute;
  top: 12px; right: 12px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  border-radius: 20px;
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--coral);
  z-index: 2;
}

.post-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }

.post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.8rem;
  color: var(--text-light);
}

.post-meta .dot { width: 3px; height: 3px; background: var(--text-light); border-radius: 50%; }

.post-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  line-height: 1.4;
  color: var(--text-dark);
  transition: color var(--transition);
}

.post-card:hover h3 { color: var(--coral); }

.post-card p {
  font-size: 0.9rem;
  color: var(--text-mid);
  margin-bottom: 16px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.read-more {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--coral);
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}

.post-card:hover .read-more { gap: 10px; }

/* =============================================
   AMAZON PRODUCT BOX
   ============================================= */
.product-box {
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.product-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--coral), var(--pink));
}

.product-box:hover {
  border-color: var(--pink);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.product-box-header { display: flex; gap: 16px; margin-bottom: 16px; }

.product-box-img {
  width: 80px; height: 80px;
  border-radius: var(--radius-sm);
  object-fit: contain;
  background: var(--pink-soft);
  padding: 8px;
  flex-shrink: 0;
}

.product-box-info { flex: 1; }

.product-name {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 6px;
  line-height: 1.4;
}

.product-stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 6px;
}

.product-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--coral);
}

.product-price .was {
  font-size: 0.85rem;
  font-weight: 400;
  text-decoration: line-through;
  color: var(--text-light);
  margin-left: 6px;
}

.product-features { margin: 16px 0; }
.product-features li {
  font-size: 0.85rem;
  color: var(--text-mid);
  padding: 4px 0;
  padding-left: 20px;
  position: relative;
  list-style: none;
}
.product-features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--green);
  font-weight: 700;
}

.btn-amazon {
  width: 100%;
  justify-content: center;
  background: linear-gradient(135deg, #FF9900, #E88A00);
  color: white;
  border-radius: var(--radius-sm);
  padding: 12px;
  font-weight: 700;
  gap: 8px;
  transition: all var(--transition);
}

.btn-amazon:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(255,153,0,0.35);
  color: white;
}

.amazon-disclaimer {
  font-size: 0.7rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 8px;
}

/* =============================================
   REVIEW SCORE WIDGET
   ============================================= */
.review-score-box {
  background: linear-gradient(135deg, var(--coral), var(--coral-dark));
  color: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  text-align: center;
}

.score-number {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 8px;
}

.score-stars { font-size: 1.5rem; margin-bottom: 8px; letter-spacing: 4px; }
.score-label { font-size: 0.9rem; opacity: 0.9; font-weight: 600; }

.score-breakdown { margin-top: 20px; }
.score-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  font-size: 0.8rem;
}

.score-row-label { width: 80px; text-align: right; opacity: 0.9; }

.score-bar-track {
  flex: 1;
  height: 6px;
  background: rgba(255,255,255,0.25);
  border-radius: 3px;
  overflow: hidden;
}

.score-bar-fill {
  height: 100%;
  background: white;
  border-radius: 3px;
  transition: width 1s ease;
}

.score-row-val { width: 30px; font-weight: 700; opacity: 0.9; }

/* =============================================
   NEWSLETTER SECTION
   ============================================= */
.newsletter-section {
  background: linear-gradient(135deg, var(--coral) 0%, #FF8C69 50%, var(--coral-dark) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border: 60px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  top: -100px; right: -100px;
}

.newsletter-section::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border: 40px solid rgba(255,255,255,0.06);
  border-radius: 50%;
  bottom: -80px; left: -80px;
}

.newsletter-inner {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-inner h2 { color: white; margin-bottom: 12px; }
.newsletter-inner p { color: rgba(255,255,255,0.85); margin-bottom: 32px; font-size: 1.05rem; }

.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  padding: 14px 20px;
  border-radius: var(--radius-xl);
  border: 2px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.15);
  color: white;
  font-family: var(--font-body);
  font-size: 0.95rem;
  backdrop-filter: blur(8px);
  outline: none;
  transition: all var(--transition);
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.6); }
.newsletter-form input:focus { border-color: white; background: rgba(255,255,255,0.2); }

.newsletter-form .btn {
  background: white;
  color: var(--coral);
  flex-shrink: 0;
  padding: 14px 24px;
  border-radius: var(--radius-xl);
  font-weight: 700;
}

.newsletter-form .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  color: var(--coral);
}

/* =============================================
   SIDEBAR WIDGETS
   ============================================= */
.sidebar-widget {
  background: white;
  border-radius: var(--radius-lg);
  padding: 24px;
  border: 1px solid var(--border);
  margin-bottom: 24px;
}

.widget-title {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--pink-light);
  position: relative;
}

.widget-title::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 40px; height: 2px;
  background: var(--coral);
  border-radius: 2px;
}

/* =============================================
   BLOG LAYOUT (Single Post)
   ============================================= */
.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  padding: 60px 0;
}

.post-content h2 { margin: 36px 0 16px; }
.post-content h3 { margin: 28px 0 12px; }
.post-content p  { margin-bottom: 20px; }
.post-content ul, .post-content ol { padding-left: 24px; margin-bottom: 20px; }
.post-content li { margin-bottom: 8px; color: var(--text-mid); }

.post-content .product-box { margin: 32px 0; }

/* Table of Contents */
.toc-box {
  background: var(--pink-soft);
  border: 1px solid var(--pink);
  border-radius: var(--radius-md);
  padding: 24px;
  margin: 32px 0;
}

.toc-box h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--coral);
  margin-bottom: 12px;
}

.toc-box ol { padding-left: 20px; }
.toc-box li { margin-bottom: 6px; }
.toc-box a { color: var(--coral-dark); font-size: 0.9rem; }
.toc-box a:hover { text-decoration: underline; }

/* Comparison Table */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin: 32px 0;
  box-shadow: var(--shadow-sm);
}

.comparison-table th {
  background: var(--coral);
  color: white;
  padding: 14px 16px;
  text-align: left;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.comparison-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-mid);
}

.comparison-table tr:nth-child(even) td { background: var(--pink-soft); }
.comparison-table tr:last-child td { border-bottom: none; }
.comparison-table .winner td { background: #FFF0F5; font-weight: 600; }

/* =============================================
   FOOTER
   ============================================= */
#site-footer {
  background: var(--text-dark);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-brand .site-logo { color: white; margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: all var(--transition);
}

.social-link:hover {
  background: var(--coral);
  color: white;
  transform: translateY(-3px);
}

.footer-col h4 {
  color: white;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 10px; }
.footer-col a { font-size: 0.9rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-col a:hover { color: var(--coral); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  flex-wrap: wrap;
  gap: 12px;
}

.affiliate-disclaimer {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
  margin-bottom: 32px;
}

/* =============================================
   MOBILE RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .hero-image-grid { height: 340px; }
  .posts-grid, .posts-grid.featured-layout { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .blog-layout { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .hamburger { display: flex; }
  .header-search { display: none; }
  .posts-grid { grid-template-columns: 1fr; }
  .hero { padding: 60px 0 80px; }
  .hero-image-grid { display: none; }
  .hero-stats { gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .newsletter-form { flex-direction: column; }
  .section-header { flex-direction: column; align-items: flex-start; }
}

/* =============================================
   ANIMATIONS
   ============================================= */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.animate-fadeInUp { animation: fadeInUp 0.6s ease forwards; }
.animate-delay-1  { animation-delay: 0.1s; }
.animate-delay-2  { animation-delay: 0.2s; }
.animate-delay-3  { animation-delay: 0.3s; }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
