/* ============================================================
   SHOPBREW — Global Design System
   Brand: #3eb44b (green), #0a412a (deep green)
   Style: SaaS + Community, Stripe/Linear inspired
   ============================================================ */

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

:root {
  --green:        #3eb44b;
  --green-dark:   #0a412a;
  --green-light:  #d1fad7;
  --green-glow:   rgba(62,180,75,0.15);
  --bg:           #ffffff;
  --bg-2:         #f8faf8;
  --bg-3:         #f0f7f0;
  --surface:      #ffffff;
  --border:       #e4ede4;
  --text:         #0d1f0d;
  --text-2:       #3d5c3d;
  --text-3:       #6b896b;
  --radius-sm:    8px;
  --radius:       12px;
  --radius-lg:    16px;
  --radius-xl:    24px;
  --shadow-sm:    0 1px 3px rgba(10,65,42,0.08), 0 1px 2px rgba(10,65,42,0.04);
  --shadow:       0 4px 16px rgba(10,65,42,0.10), 0 1px 4px rgba(10,65,42,0.06);
  --shadow-lg:    0 12px 40px rgba(10,65,42,0.14), 0 4px 12px rgba(10,65,42,0.08);
  --shadow-glow:  0 0 0 3px rgba(62,180,75,0.25);
  --transition:   0.22s cubic-bezier(0.4,0,0.2,1);
  --font:         'Inter', system-ui, -apple-system, sans-serif;
}

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

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--text);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--text-2); line-height: 1.7; }
a  { color: var(--green); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green-dark); }

/* --- Layout --- */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.container-sm { max-width: 760px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-sm { padding: 64px 0; }
.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--green); background: var(--green-glow); border: 1px solid rgba(62,180,75,0.2);
  padding: 4px 12px; border-radius: 100px; margin-bottom: 16px;
}
.section-label::before { content: ''; width: 6px; height: 6px; background: var(--green); border-radius: 50%; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.95rem; font-weight: 600; letter-spacing: -0.01em;
  padding: 12px 24px; border-radius: var(--radius);
  cursor: pointer; border: none; transition: all var(--transition);
  text-decoration: none; white-space: nowrap;
}
.btn-primary {
  background: var(--green); color: #fff;
  box-shadow: 0 2px 8px rgba(62,180,75,0.35), 0 1px 2px rgba(0,0,0,0.1);
}
.btn-primary:hover {
  background: #35a040; color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(62,180,75,0.4), 0 2px 6px rgba(0,0,0,0.12);
}
.btn-primary:active { transform: translateY(0); }
.btn-secondary {
  background: transparent; color: var(--text);
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
}
.btn-secondary:hover {
  border-color: var(--green); color: var(--green);
  transform: translateY(-1px); box-shadow: var(--shadow);
}
.btn-ghost { background: transparent; color: var(--text-2); padding: 10px 16px; }
.btn-ghost:hover { color: var(--green); background: var(--green-glow); }
.btn-lg { padding: 15px 32px; font-size: 1rem; border-radius: var(--radius-lg); }
.btn-sm { padding: 8px 16px; font-size: 0.875rem; }

/* --- Cards --- */
.card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  box-shadow: var(--shadow-sm); transition: all var(--transition);
}
.card:hover {
  border-color: rgba(62,180,75,0.3);
  box-shadow: var(--shadow), 0 0 0 1px rgba(62,180,75,0.1);
  transform: translateY(-2px);
}
.card-glass {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(20px) saturate(1.8);
  -webkit-backdrop-filter: blur(20px) saturate(1.8);
  border: 1px solid rgba(255,255,255,0.6);
  box-shadow: 0 8px 32px rgba(10,65,42,0.10);
}

/* --- Navbar --- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 64px;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid rgba(228,237,228,0.8);
  transition: all var(--transition);
}
.navbar.scrolled {
  box-shadow: 0 2px 20px rgba(10,65,42,0.08);
  background: rgba(255,255,255,0.96);
}
.navbar-inner {
  max-width: 1160px; margin: 0 auto; padding: 0 24px;
  height: 100%; display: flex; align-items: center; justify-content: space-between;
}
.navbar-logo {
  display: flex; align-items: center; gap: 10px;
  font-size: 1.2rem; font-weight: 800; color: var(--text);
  letter-spacing: -0.03em; text-decoration: none;
}
.navbar-logo-icon {
  width: 36px; height: 36px; background: var(--green); border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.navbar-nav {
  display: flex; align-items: center; gap: 4px;
  list-style: none;
}
.navbar-nav a {
  display: block; padding: 8px 14px; border-radius: var(--radius-sm);
  font-size: 0.9rem; font-weight: 500; color: var(--text-2);
  transition: all var(--transition);
}
.navbar-nav a:hover, .navbar-nav a.active { color: var(--text); background: var(--bg-2); }
.navbar-cta { display: flex; align-items: center; gap: 12px; }
.navbar-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.navbar-hamburger span {
  display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px;
  transition: all var(--transition);
}
.mobile-menu {
  display: none; position: fixed; top: 64px; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.98); backdrop-filter: blur(20px);
  z-index: 999; padding: 24px; flex-direction: column; gap: 8px;
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: block; padding: 14px 16px; border-radius: var(--radius);
  font-size: 1.05rem; font-weight: 500; color: var(--text-2);
  border: 1px solid transparent; transition: all var(--transition);
}
.mobile-menu a:hover { background: var(--bg-2); color: var(--text); border-color: var(--border); }
.mobile-menu .btn { width: 100%; justify-content: center; margin-top: 8px; }

/* --- Hero --- */
.hero {
  padding-top: 140px; padding-bottom: 96px;
  background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(62,180,75,0.10) 0%, transparent 70%),
              radial-gradient(ellipse 50% 40% at 100% 60%, rgba(10,65,42,0.06) 0%, transparent 70%),
              var(--bg);
  position: relative; overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(62,180,75,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.hero-content { text-align: center; max-width: 820px; margin: 0 auto; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--green-glow); border: 1px solid rgba(62,180,75,0.25);
  color: var(--green-dark); font-size: 0.825rem; font-weight: 600;
  padding: 6px 16px; border-radius: 100px; margin-bottom: 28px;
}
.hero-badge-dot { width: 6px; height: 6px; background: var(--green); border-radius: 50%; animation: pulse 2s infinite; }
.hero h1 { margin-bottom: 20px; }
.hero h1 span { color: var(--green); }
.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem); color: var(--text-2); max-width: 600px;
  margin: 0 auto 40px;
}
.hero-actions { display: flex; align-items: center; justify-content: center; gap: 12px; flex-wrap: wrap; }
.hero-stats {
  display: flex; align-items: center; justify-content: center;
  gap: 40px; margin-top: 64px; padding-top: 40px;
  border-top: 1px solid var(--border); flex-wrap: wrap;
}
.hero-stat { text-align: center; }
.hero-stat-num { font-size: 1.8rem; font-weight: 800; color: var(--text); letter-spacing: -0.03em; }
.hero-stat-label { font-size: 0.85rem; color: var(--text-3); font-weight: 500; margin-top: 2px; }
.hero-logos {
  display: flex; align-items: center; justify-content: center; gap: 24px;
  margin-top: 48px; flex-wrap: wrap;
}
.hero-logos-label { font-size: 0.8rem; color: var(--text-3); font-weight: 500; margin-bottom: 12px; text-align: center; }
.logo-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg-2); border: 1px solid var(--border);
  padding: 8px 16px; border-radius: 100px;
  font-size: 0.85rem; font-weight: 600; color: var(--text-2);
}

/* --- Grids --- */
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; }

/* --- Badges --- */
.badge {
  display: inline-flex; align-items: center; gap: 5px;
  font-size: 0.75rem; font-weight: 600; padding: 3px 10px;
  border-radius: 100px;
}
.badge-green { background: var(--green-light); color: var(--green-dark); }
.badge-orange { background: #fff3e0; color: #e65100; }
.badge-blue  { background: #e3f2fd; color: #1565c0; }
.badge-purple{ background: #f3e5f5; color: #6a1b9a; }
.badge-red   { background: #ffebee; color: #c62828; }

/* --- Tag chips --- */
.tag {
  display: inline-block; font-size: 0.75rem; font-weight: 500;
  color: var(--text-3); background: var(--bg-2); border: 1px solid var(--border);
  padding: 3px 10px; border-radius: 100px; cursor: pointer; transition: all var(--transition);
}
.tag:hover, .tag.active { background: var(--green-glow); color: var(--green-dark); border-color: rgba(62,180,75,0.3); }

/* --- Dividers --- */
.divider { border: none; border-top: 1px solid var(--border); }

/* --- Feature icon --- */
.feature-icon {
  width: 52px; height: 52px; border-radius: var(--radius);
  background: var(--green-glow); border: 1px solid rgba(62,180,75,0.2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; margin-bottom: 16px; flex-shrink: 0;
}

/* --- Testimonial --- */
.testimonial-card {
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
}
.testimonial-quote { font-size: 1rem; color: var(--text-2); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 0.9rem; flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 0.9rem; color: var(--text); }
.testimonial-role { font-size: 0.8rem; color: var(--text-3); }

/* --- CTA Banner --- */
.cta-section {
  background: linear-gradient(135deg, var(--green-dark) 0%, #1a5c35 50%, #0d3a22 100%);
  border-radius: var(--radius-xl); padding: 72px 48px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(ellipse at 30% 30%, rgba(62,180,75,0.2) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 70%, rgba(62,180,75,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.cta-section h2, .cta-section p { color: rgba(255,255,255,0.95); }
.cta-section p { color: rgba(255,255,255,0.7); }
.cta-section .btn-primary { background: var(--green); color: #fff; }
.cta-section .btn-secondary { background: transparent; border-color: rgba(255,255,255,0.3); color: rgba(255,255,255,0.9); }
.cta-section .btn-secondary:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.1); color: #fff; }

/* --- Footer --- */
.footer {
  background: var(--green-dark); color: rgba(255,255,255,0.8);
  padding: 64px 0 32px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand { }
.footer-logo { display: flex; align-items: center; gap: 10px; color: #fff; font-weight: 800; font-size: 1.15rem; margin-bottom: 12px; }
.footer-logo-icon { width: 32px; height: 32px; background: var(--green); border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1rem; }
.footer-desc { font-size: 0.875rem; color: rgba(255,255,255,0.55); line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px; border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; color: rgba(255,255,255,0.7); transition: all var(--transition);
}
.footer-social a:hover { background: var(--green); color: #fff; }
.footer-col h5 { color: #fff; font-size: 0.875rem; font-weight: 600; margin-bottom: 16px; letter-spacing: 0.01em; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 0.875rem; color: rgba(255,255,255,0.55); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--green-light); }
.footer-bottom {
  padding-top: 28px; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.825rem; color: rgba(255,255,255,0.4); flex-wrap: wrap; gap: 12px;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: rgba(255,255,255,0.8); }

/* --- Sticky CTA Bar --- */
.sticky-cta {
  position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%);
  z-index: 900; opacity: 0; pointer-events: none; transition: all 0.4s ease;
}
.sticky-cta.visible { opacity: 1; pointer-events: auto; }
.sticky-cta-inner {
  background: var(--green-dark); color: #fff;
  border-radius: 100px; padding: 12px 12px 12px 20px;
  display: flex; align-items: center; gap: 16px;
  box-shadow: 0 8px 32px rgba(10,65,42,0.35), 0 2px 8px rgba(0,0,0,0.15);
  white-space: nowrap;
}
.sticky-cta-text { font-size: 0.875rem; font-weight: 500; color: rgba(255,255,255,0.85); }
.sticky-cta .btn { padding: 9px 20px; font-size: 0.85rem; }

/* --- Episode Card --- */
.episode-card {
  display: flex; gap: 20px; padding: 24px;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); transition: all var(--transition); cursor: pointer;
}
.episode-card:hover { border-color: rgba(62,180,75,0.3); box-shadow: var(--shadow); transform: translateY(-1px); }
.episode-thumb {
  width: 100px; height: 100px; border-radius: var(--radius);
  background: linear-gradient(135deg, var(--green-glow), var(--bg-3));
  flex-shrink: 0; display: flex; align-items: center; justify-content: center;
  font-size: 2rem; border: 1px solid var(--border); overflow: hidden;
}
.episode-content { flex: 1; min-width: 0; }
.episode-meta { display: flex; align-items: center; gap: 8px; margin-bottom: 6px; flex-wrap: wrap; }
.episode-num { font-size: 0.75rem; color: var(--text-3); font-weight: 600; }
.episode-title { font-size: 1rem; font-weight: 700; color: var(--text); margin-bottom: 6px; line-height: 1.4; }
.episode-takeaway { font-size: 0.85rem; color: var(--text-2); margin-bottom: 12px; line-height: 1.5; }
.episode-footer { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.episode-guest { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; color: var(--text-3); }
.episode-duration { font-size: 0.8rem; color: var(--text-3); }

/* --- Event Card --- */
.event-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: all var(--transition); display: flex; flex-direction: column;
}
.event-card:hover { border-color: rgba(62,180,75,0.3); box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.event-card-header { height: 180px; background: linear-gradient(135deg, var(--green-dark), #1e6b40); position: relative; display: flex; align-items: flex-end; padding: 20px; }
.event-card-date-chip {
  position: absolute; top: 16px; right: 16px;
  background: rgba(255,255,255,0.95); border-radius: var(--radius-sm);
  padding: 8px 12px; text-align: center;
}
.event-card-date-chip .day { font-size: 1.4rem; font-weight: 800; color: var(--text); line-height: 1; }
.event-card-date-chip .month { font-size: 0.7rem; font-weight: 600; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.05em; }
.event-card-title-area h3 { color: #fff; font-size: 1.1rem; }
.event-card-body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.event-card-meta { display: flex; align-items: center; gap: 16px; margin-bottom: 12px; flex-wrap: wrap; }
.event-meta-item { display: flex; align-items: center; gap: 5px; font-size: 0.82rem; color: var(--text-3); }
.event-card-desc { font-size: 0.875rem; color: var(--text-2); line-height: 1.6; flex: 1; margin-bottom: 16px; }
.event-countdown { background: var(--bg-2); border-radius: var(--radius-sm); padding: 12px; margin-bottom: 16px; }
.event-countdown-label { font-size: 0.7rem; color: var(--text-3); font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 6px; }
.event-countdown-nums { display: flex; gap: 8px; }
.count-unit { text-align: center; }
.count-num { font-size: 1.2rem; font-weight: 800; color: var(--text); line-height: 1; }
.count-label { font-size: 0.6rem; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.05em; }
.event-seats { display: flex; align-items: center; gap: 6px; font-size: 0.8rem; color: #e65100; font-weight: 600; }
.event-seats::before {
  content: '\f06d';
  font-family: 'Font Awesome 6 Free'; font-weight: 900;
  font-size: 0.85rem;
}

/* --- Countdown Timer --- */
.countdown-wrapper { display: inline-flex; gap: 4px; }
.countdown-block {
  background: var(--green-dark); color: #fff;
  border-radius: var(--radius-sm); padding: 6px 10px; text-align: center;
}
.countdown-block .num { font-size: 1.2rem; font-weight: 800; line-height: 1; }
.countdown-block .lbl { font-size: 0.55rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 0.05em; }
.countdown-sep { color: var(--text-3); font-weight: 700; display: flex; align-items: center; padding-bottom: 8px; }

/* --- Filter bar --- */
.filter-bar { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.filter-bar .tag { font-size: 0.825rem; padding: 6px 14px; }

/* --- Progress bar (seats) --- */
.progress-bar { height: 4px; background: var(--border); border-radius: 100px; overflow: hidden; margin-top: 4px; }
.progress-fill { height: 100%; background: var(--green); border-radius: 100px; transition: width 0.5s ease; }

/* --- Page Hero --- */
.page-hero {
  padding: 120px 0 64px;
  background: radial-gradient(ellipse 80% 50% at 50% -10%, rgba(62,180,75,0.08) 0%, transparent 70%), var(--bg);
}
.page-hero-content { max-width: 640px; }

/* --- Forms --- */
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 0.875rem; font-weight: 500; color: var(--text); }
.form-input, .form-select, .form-textarea {
  padding: 11px 14px; border: 1.5px solid var(--border);
  border-radius: var(--radius); font-size: 0.95rem; font-family: var(--font);
  color: var(--text); background: var(--surface);
  transition: all var(--transition); outline: none; width: 100%;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--green); box-shadow: 0 0 0 3px rgba(62,180,75,0.12);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-hint { font-size: 0.8rem; color: var(--text-3); }

/* --- Accordion --- */
.accordion-item { border-bottom: 1px solid var(--border); }
.accordion-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; cursor: pointer; font-weight: 600; color: var(--text);
  background: none; border: none; width: 100%; text-align: left;
}
.accordion-icon { font-size: 1.2rem; color: var(--text-3); transition: transform var(--transition); }
.accordion-header.open .accordion-icon { transform: rotate(45deg); color: var(--green); }
.accordion-body { overflow: hidden; max-height: 0; transition: max-height 0.35s ease; }
.accordion-body.open { max-height: 500px; }
.accordion-body-inner { padding-bottom: 20px; color: var(--text-2); font-size: 0.95rem; line-height: 1.7; }

/* --- Table of contents (legal pages) --- */
.toc { background: var(--bg-2); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; }
.toc h4 { font-size: 0.875rem; font-weight: 700; margin-bottom: 12px; }
.toc ol { padding-left: 20px; display: flex; flex-direction: column; gap: 6px; }
.toc li { font-size: 0.875rem; color: var(--text-2); }
.toc li a { color: var(--green); }

/* --- Prose (legal pages) --- */
.prose h2 { font-size: 1.4rem; margin-top: 48px; margin-bottom: 16px; padding-top: 24px; border-top: 1px solid var(--border); }
.prose h3 { font-size: 1.1rem; margin-top: 28px; margin-bottom: 10px; }
.prose p { margin-bottom: 16px; font-size: 0.95rem; }
.prose ul, .prose ol { padding-left: 24px; margin-bottom: 16px; }
.prose li { font-size: 0.95rem; color: var(--text-2); margin-bottom: 6px; line-height: 1.6; }
.prose a { text-decoration: underline; }

/* --- Animations --- */
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.85); }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
.fade-up { animation: fadeUp 0.6s ease both; }
.fade-up-delay-1 { animation-delay: 0.1s; }
.fade-up-delay-2 { animation-delay: 0.2s; }
.fade-up-delay-3 { animation-delay: 0.3s; }

[data-animate] { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
[data-animate].animated { opacity: 1; transform: translateY(0); }

/* --- Responsive --- */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-2 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .navbar-nav, .navbar-cta .btn-secondary { display: none; }
  .navbar-hamburger { display: flex; }
  .hero { padding-top: 100px; padding-bottom: 64px; }
  .hero-stats { gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .cta-section { padding: 48px 24px; }
  .episode-card { flex-direction: column; }
  .episode-thumb { width: 100%; height: 140px; }
  .sticky-cta { bottom: 12px; left: 12px; right: 12px; transform: none; }
  .sticky-cta-inner { border-radius: var(--radius-lg); }
}

@media (max-width: 480px) {
  .btn-lg { padding: 13px 24px; font-size: 0.95rem; }
  h1 { font-size: 2rem; }
}

/* --- Utility --- */
.text-center { text-align: center; }
.text-green  { color: var(--green); }
.text-muted  { color: var(--text-3); }
.mt-4  { margin-top: 16px; }
.mt-8  { margin-top: 32px; }
.mt-12 { margin-top: 48px; }
.mb-4  { margin-bottom: 16px; }
.mb-8  { margin-bottom: 32px; }
.mb-12 { margin-bottom: 48px; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.flex { display: flex; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.w-full { width: 100%; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }

/* ── Font Awesome 6 — icon colour system ── */

/* Icons on green/dark backgrounds → white */
.navbar-logo-icon,
.footer-logo-icon {
  color: #fff;
}

/* Feature icon boxes (green-glow bg) */
.feature-icon {
  color: var(--green-dark);
}

/* Contact info icon boxes */
.contact-info-icon {
  color: var(--green);
}

/* Value row / about page icons */
.value-row-icon {
  color: var(--green);
}

/* Episode thumbnails */
.ep-thumb-full,
.episode-thumb {
  color: var(--green-dark);
  font-size: 2rem;
}

/* Podcast featured player visual */
.podcast-player-visual .play-btn-large {
  color: #fff;
}
.play-btn-large {
  color: #fff;
}

/* Event card left panel icons */
.event-emoji {
  color: rgba(255, 255, 255, 0.90);
  font-size: 2rem;
  margin-bottom: 8px;
  display: block;
}
.event-emoji i {
  font-size: 2rem;
}

/* Gallery items */
.gallery-item {
  color: var(--green-dark);
  font-size: 2rem;
}
.gallery-item:first-child {
  font-size: 3rem;
}

/* Past event image placeholder */
.past-event-img {
  color: rgba(255, 255, 255, 0.70);
  font-size: 2.5rem;
}

/* Urgency / badge icons inline spacing */
.badge i,
.event-urgency i,
.event-mini-date i,
.event-mini-loc i,
.next-event-meta-item i,
.event-full-meta-item i,
.ep-guest i,
.episode-guest i,
.hero-badge i {
  font-size: 0.85em;
  vertical-align: middle;
}

/* Section label icon */
.section-label i {
  color: var(--green);
  font-size: 0.85em;
}

/* Platform pills — brand colour inherit */
.platform-pill i {
  font-size: 1em;
}

/* Search bar magnifying glass */
.search-icon i {
  color: var(--text-3);
  font-size: 0.9rem;
}

/* Testimonial avatar — text only (initials), no icon change needed */

/* Footer social links */
.footer-social a i {
  font-size: 0.95rem;
}

/* Check icons in feature list */
.fa-check {
  color: var(--green);
}

/* CTA sections — inherit white from parent */
.cta-section i,
.next-event-hero i,
.featured-ep i,
.featured-ep-label i,
.podcast-featured i {
  color: inherit;
}

/* Sticky CTA */
.sticky-cta-inner i {
  color: inherit;
}

/* Global i tag baseline nudge for inline icon + text combos */
i.fa-solid,
i.fa-regular,
i.fa-brands {
  vertical-align: -0.1em;
  line-height: 1;
}
