/* ===== DESIGN TOKENS ===== */
:root {
  --navy: #0a0e27;
  --navy-light: #131842;
  --navy-mid: #1a2156;
  --gold: #d4a843;
  --gold-light: #f0d080;
  --gold-dark: #b8922e;
  --white: #f8f6f1;
  --white-pure: #ffffff;
  --gray-light: #c5c3bd;
  --gray: #8a8880;
  --red-accent: #c0392b;
  --red-light: #e74c3c;
  --glass-bg: rgba(19, 24, 66, 0.6);
  --glass-border: rgba(212, 168, 67, 0.18);
  --card-bg: rgba(26, 33, 86, 0.55);
  --card-border: rgba(212, 168, 67, 0.12);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 30px rgba(212, 168, 67, 0.15);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold-light); }
button { cursor: pointer; font-family: var(--font-body); }

/* ===== UTILITY ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 24px;
  height: 2px;
  background: var(--gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--white);
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-light);
  max-width: 600px;
  line-height: 1.7;
}

.gold-text { color: var(--gold); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  transition: var(--transition);
  border: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white-pure);
  box-shadow: 0 4px 20px rgba(212, 168, 67, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 168, 67, 0.45);
  color: var(--white-pure);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid rgba(212, 168, 67, 0.4);
}

.btn-outline:hover {
  background: rgba(212, 168, 67, 0.1);
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ===== BACKGROUND EFFECTS ===== */
.bg-gradient {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: -1;
  background: 
    radial-gradient(ellipse 80% 50% at 20% 20%, rgba(212, 168, 67, 0.04), transparent),
    radial-gradient(ellipse 60% 40% at 80% 80%, rgba(192, 57, 43, 0.03), transparent),
    var(--navy);
}

.floating-badge {
  position: fixed;
  border-radius: 50%;
  opacity: 0.03;
  pointer-events: none;
  z-index: -1;
}

.floating-badge-1 {
  width: 400px; height: 400px;
  background: var(--gold);
  top: 10%; right: -100px;
  animation: float 20s ease-in-out infinite;
}

.floating-badge-2 {
  width: 300px; height: 300px;
  background: var(--red-accent);
  bottom: 20%; left: -80px;
  animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(5deg); }
  66% { transform: translate(-20px, 20px) rotate(-3deg); }
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  background: rgba(10, 14, 39, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  border-bottom: 1px solid var(--glass-border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
}

.nav-logo .badge-icon {
  font-size: 1.5rem;
}

.nav-logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  color: var(--gray-light);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

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

.nav-cta {
  padding: 10px 24px !important;
  font-size: 0.85rem !important;
  background: var(--navy) !important;
  border: 2px solid var(--gold) !important;
  color: var(--white-pure) !important;
  box-shadow: 0 0 12px rgba(212, 168, 67, 0.2) !important;
}

.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--navy) !important;
}

.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.mobile-toggle span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 100px;
  position: relative;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212, 168, 67, 0.1);
  border: 1px solid rgba(212, 168, 67, 0.2);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.8rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(212, 168, 67, 0.1); }
  50% { box-shadow: 0 0 20px 4px rgba(212, 168, 67, 0.08); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.08;
  margin-bottom: 24px;
  letter-spacing: -1px;
}

.hero-title .line { display: block; }
.hero-title .gold-underline {
  position: relative;
  color: var(--gold);
}

.hero-title .gold-underline::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 0;
  width: 100%; height: 6px;
  background: rgba(212, 168, 67, 0.2);
  border-radius: 3px;
}

.hero-description {
  font-size: 1.15rem;
  color: var(--gray-light);
  line-height: 1.8;
  margin-bottom: 36px;
  max-width: 520px;
}

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

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

.hero-stat {
  text-align: left;
}

.hero-stat-number {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
}

.hero-stat-label {
  font-size: 0.8rem;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 2px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
  width: 100%;
  max-width: 440px;
}

.hero-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.hero-card-badge {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.hero-card-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
}

.hero-card-sub {
  font-size: 0.8rem;
  color: var(--gray);
}

.hero-episode-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-episode-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: var(--transition);
}

.hero-episode-item:hover {
  background: rgba(212, 168, 67, 0.06);
  border-color: rgba(212, 168, 67, 0.15);
}

.episode-icon {
  width: 36px; height: 36px;
  background: rgba(212, 168, 67, 0.12);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.episode-info {
  flex: 1;
}

.episode-name {
  font-size: 0.88rem;
  font-weight: 500;
}

.episode-meta {
  font-size: 0.75rem;
  color: var(--gray);
}

.hero-glow {
  position: absolute;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(212, 168, 67, 0.12), transparent 70%);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
  50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
}

/* ===== FEATURES GRID (Checklist, Budget, Timeline, etc.) ===== */
.features {
  background: linear-gradient(180deg, var(--navy), var(--navy-light));
}

.features-header {
  text-align: center;
  margin-bottom: 64px;
}

.features-header .section-subtitle {
  margin: 0 auto;
}

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

.feature-card {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: var(--transition);
}

.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 168, 67, 0.25);
  box-shadow: var(--shadow-glow);
}

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

.feature-icon {
  width: 56px; height: 56px;
  background: rgba(212, 168, 67, 0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 12px;
}

.feature-card p {
  font-size: 0.92rem;
  color: var(--gray-light);
  line-height: 1.65;
  margin-bottom: 16px;
}

.feature-link {
  font-size: 0.85rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.feature-link:hover { gap: 10px; }

/* ===== CHECKLIST SECTION ===== */
.checklist-section {
  background: var(--navy-light);
}

.checklist-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.checklist-info {
  position: sticky;
  top: 120px;
}

.checklist-info .section-subtitle {
  margin-bottom: 28px;
}

.checklist-progress {
  margin-top: 28px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.progress-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.progress-label {
  font-size: 0.85rem;
  font-weight: 500;
}

.progress-count {
  font-size: 0.85rem;
  color: var(--gold);
  font-weight: 600;
}

.progress-bar {
  height: 8px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 4px;
  transition: width 0.5s ease;
  width: 0%;
}

.checklist-container {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.checklist-month {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.checklist-month:hover {
  border-color: rgba(212, 168, 67, 0.2);
}

.month-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  cursor: pointer;
  transition: var(--transition);
}

.month-header:hover {
  background: rgba(212, 168, 67, 0.04);
}

.month-title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.95rem;
}

.month-icon {
  font-size: 1.2rem;
}

.month-count {
  font-size: 0.75rem;
  color: var(--gray);
  background: rgba(255, 255, 255, 0.05);
  padding: 2px 10px;
  border-radius: 20px;
}

.month-toggle {
  font-size: 1.2rem;
  color: var(--gray);
  transition: var(--transition);
}

.checklist-month.open .month-toggle {
  transform: rotate(180deg);
}

.month-tasks {
  display: none;
  padding: 0 24px 18px;
}

.checklist-month.open .month-tasks {
  display: block;
}

.task-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.task-checkbox {
  appearance: none;
  -webkit-appearance: none;
  width: 20px; height: 20px;
  border: 2px solid rgba(212, 168, 67, 0.3);
  border-radius: 4px;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
  transition: var(--transition);
  position: relative;
}

.task-checkbox:checked {
  background: var(--gold);
  border-color: var(--gold);
}

.task-checkbox:checked::after {
  content: '✓';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
}

.task-label {
  font-size: 0.9rem;
  color: var(--gray-light);
  cursor: pointer;
  transition: var(--transition);
}

.task-item.completed .task-label {
  text-decoration: line-through;
  color: var(--gray);
}

/* ===== BUDGET CALCULATOR ===== */
.budget-section {
  background: linear-gradient(180deg, var(--navy-light), var(--navy));
}

.budget-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.budget-input-card {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.budget-input-group {
  margin-bottom: 28px;
}

.budget-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--gray-light);
  margin-bottom: 8px;
  letter-spacing: 0.3px;
}

.budget-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-sm);
  padding: 16px 20px;
  font-size: 1.8rem;
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--gold);
  text-align: center;
  transition: var(--transition);
}

.budget-input:focus {
  outline: none;
  border-color: rgba(212, 168, 67, 0.4);
  background: rgba(212, 168, 67, 0.05);
}

.budget-input::placeholder {
  color: var(--gray);
  font-size: 1.2rem;
}

.budget-presets {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.preset-btn {
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  color: var(--gray-light);
  font-size: 0.8rem;
  font-weight: 500;
  transition: var(--transition);
}

.preset-btn:hover, .preset-btn.active {
  background: rgba(212, 168, 67, 0.15);
  border-color: rgba(212, 168, 67, 0.3);
  color: var(--gold);
}

.budget-results {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.budget-results h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 24px;
}

.budget-breakdown {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.budget-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.budget-item-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.budget-item-info {
  flex: 1;
}

.budget-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}

.budget-item-name {
  font-size: 0.88rem;
  font-weight: 500;
}

.budget-item-amount {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold);
}

.budget-item-bar {
  height: 6px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 3px;
  overflow: hidden;
}

.budget-item-fill {
  height: 100%;
  border-radius: 3px;
  transition: width 0.8s ease;
}

.budget-cta {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  text-align: center;
}

.budget-cta p {
  font-size: 0.85rem;
  color: var(--gray);
  margin-bottom: 12px;
}

/* ===== TIMELINE ===== */
.timeline-section {
  background: var(--navy);
  overflow: hidden;
}

.timeline-header {
  text-align: center;
  margin-bottom: 64px;
}

.timeline-header .section-subtitle {
  margin: 0 auto;
}

.timeline-wrapper {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), rgba(212, 168, 67, 0.1));
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 40px;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
  padding-right: calc(50% + 40px);
  text-align: right;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
  padding-left: calc(50% + 40px);
  text-align: left;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 16px; height: 16px;
  background: var(--gold);
  border-radius: 50%;
  border: 3px solid var(--navy);
  box-shadow: 0 0 0 4px rgba(212, 168, 67, 0.2);
  z-index: 2;
}

.timeline-content {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  padding: 24px;
  transition: var(--transition);
}

.timeline-content:hover {
  border-color: rgba(212, 168, 67, 0.25);
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow);
}

.timeline-month-label {
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 8px;
}

.timeline-content h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 0.85rem;
  color: var(--gray-light);
  line-height: 1.6;
}

/* ===== WEDDING FAILS ===== */
.fails-section {
  background: linear-gradient(180deg, var(--navy), var(--navy-light));
}

.fails-header {
  text-align: center;
  margin-bottom: 64px;
}

.fails-header .section-subtitle {
  margin: 0 auto;
}

.fails-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.fail-card {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.fail-card:hover {
  transform: translateY(-6px);
  border-color: rgba(192, 57, 43, 0.3);
  box-shadow: 0 0 30px rgba(192, 57, 43, 0.1);
}

.fail-severity {
  position: absolute;
  top: 16px; right: 16px;
  display: flex;
  gap: 4px;
}

.fail-severity .siren {
  font-size: 0.9rem;
}

.fail-body {
  padding: 28px;
}

.fail-category {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--red-light);
  font-weight: 600;
  margin-bottom: 10px;
}

.fail-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin-bottom: 12px;
  line-height: 1.3;
}

.fail-card p {
  font-size: 0.9rem;
  color: var(--gray-light);
  line-height: 1.65;
  margin-bottom: 16px;
}

.fail-episode {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(212, 168, 67, 0.08);
  border: 1px solid rgba(212, 168, 67, 0.15);
  border-radius: 50px;
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 500;
  transition: var(--transition);
}

.fail-episode:hover {
  background: rgba(212, 168, 67, 0.15);
  color: var(--gold-light);
}

/* ===== ARTICLES / BLOG ===== */
.articles-section {
  background: var(--navy-light);
}

.articles-header {
  text-align: center;
  margin-bottom: 64px;
}

.articles-header .section-subtitle {
  margin: 0 auto;
}

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

.article-card {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.article-card:hover {
  transform: translateY(-6px);
  border-color: rgba(212, 168, 67, 0.25);
  box-shadow: var(--shadow-glow);
}

.article-img {
  height: 180px;
  position: relative;
  overflow: hidden;
}

.article-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.article-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.article-tag {
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 10px;
}

.article-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin-bottom: 12px;
  line-height: 1.35;
}

.article-card p {
  font-size: 0.88rem;
  color: var(--gray-light);
  line-height: 1.6;
  margin-bottom: 20px;
  flex: 1;
}

.article-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.article-listen {
  font-size: 0.82rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.article-read-time {
  font-size: 0.75rem;
  color: var(--gray);
}

/* ===== ABOUT / CTA SECTION ===== */
.about-section {
  background: linear-gradient(180deg, var(--navy-light), var(--navy));
}

.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-content .section-subtitle {
  margin-bottom: 28px;
}

.about-hosts {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
}

.host-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50px;
  padding: 8px 20px 8px 8px;
}

.host-avatar {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.host-name {
  font-size: 0.88rem;
  font-weight: 600;
}

.about-player {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
}

.about-player h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  margin-bottom: 20px;
}

.about-player iframe {
  border-radius: var(--radius-md);
  width: 100%;
}

.listen-platforms {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  justify-content: center;
}

.platform-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  font-size: 0.85rem;
  color: var(--gray-light);
  font-weight: 500;
  transition: var(--transition);
}

.platform-link:hover {
  background: rgba(212, 168, 67, 0.1);
  border-color: rgba(212, 168, 67, 0.3);
  color: var(--gold);
}

/* ===== BIG CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-mid), var(--navy));
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  text-align: center;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; left: -50%;
  width: 200%; height: 200%;
  background: radial-gradient(circle at center, rgba(212, 168, 67, 0.05), transparent 50%);
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 16px;
  position: relative;
}

.cta-banner p {
  font-size: 1.1rem;
  color: var(--gray-light);
  margin-bottom: 32px;
  position: relative;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* ===== FOOTER ===== */
.footer {
  background: rgba(5, 7, 18, 0.8);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 60px 0 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

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

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.footer-logo span { color: var(--gold); }

.footer-desc {
  font-size: 0.85rem;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 20px;
}

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

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

.social-link:hover {
  background: rgba(212, 168, 67, 0.15);
  border-color: rgba(212, 168, 67, 0.3);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  margin-bottom: 16px;
  color: var(--white);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--gray);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 0.8rem;
  color: var(--gray);
}

.footer-tagline {
  font-size: 0.8rem;
  color: var(--gray);
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 992px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .hero-visual {
    order: -1;
  }

  .hero-card {
    max-width: 100%;
  }

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

  .checklist-layout,
  .budget-layout,
  .about-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .checklist-info {
    position: static;
  }

  .articles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .timeline-item:nth-child(odd) {
    padding-right: 0;
    padding-left: 50px;
    text-align: left;
    flex-direction: row;
  }

  .timeline-item:nth-child(even) {
    padding-left: 50px;
    flex-direction: row;
  }

  .timeline-line {
    left: 16px;
  }

  .timeline-dot {
    left: 16px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100vh;
    background: rgba(10, 14, 39, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 32px;
    z-index: 999;
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    font-size: 1.3rem;
  }

  .mobile-toggle {
    display: flex;
    z-index: 1001;
  }

  .mobile-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

  .mobile-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .mobile-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

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

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

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

  .hero-stats {
    gap: 24px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start;
  }

  .listen-platforms {
    flex-direction: column;
    align-items: center;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .about-hosts {
    flex-direction: column;
  }

  .budget-presets {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero { padding-top: 80px; }
  .hero-card { padding: 24px; }
  .budget-input-card, .budget-results { padding: 24px; }
}

/* ===== BLOG PAGE ===== */
.blog-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.blog-post {
  background: var(--card-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.blog-post:hover {
  border-color: rgba(212, 168, 67, 0.2);
  box-shadow: var(--shadow-glow);
}

.blog-post-header {
  padding: 32px 36px 0;
}

.blog-post-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
}

.blog-tag {
  font-size: 0.75rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  background: rgba(212, 168, 67, 0.1);
  padding: 4px 12px;
  border-radius: 20px;
}

.blog-date {
  font-size: 0.78rem;
  color: var(--gray);
}

.blog-post-title {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 3vw, 1.7rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--white);
}

.blog-post-body {
  padding: 24px 36px 36px;
}

.blog-post-body p {
  font-size: 0.95rem;
  color: var(--gray-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.blog-post-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  margin-top: 28px;
  margin-bottom: 12px;
}

.blog-post-body ul,
.blog-post-body ol {
  margin: 0 0 20px 20px;
  color: var(--gray-light);
}

.blog-post-body li {
  font-size: 0.93rem;
  line-height: 1.7;
  margin-bottom: 8px;
}

.blog-post-body strong {
  color: var(--white);
}

.blog-post-body em {
  color: var(--gold-light);
}

.blog-post-body a {
  color: var(--gold);
  text-decoration: underline;
  text-decoration-color: rgba(212, 168, 67, 0.3);
  text-underline-offset: 3px;
}

.blog-post-body a:hover {
  text-decoration-color: var(--gold);
}

.blog-podcast-cta {
  display: flex;
  gap: 20px;
  margin-top: 28px;
  padding: 24px;
  background: rgba(212, 168, 67, 0.05);
  border: 1px solid rgba(212, 168, 67, 0.12);
  border-radius: var(--radius-md);
}

.blog-podcast-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.blog-podcast-cta p {
  margin-bottom: 4px !important;
  font-size: 0.88rem !important;
}

.blog-podcast-cta p:first-child {
  color: var(--white) !important;
}

@media (max-width: 768px) {
  .blog-post-header { padding: 24px 20px 0; }
  .blog-post-body { padding: 16px 20px 24px; }
  .blog-podcast-cta { flex-direction: column; gap: 12px; }
}

