/* ========================================================
   Planet MicroCap Ghost Theme — screen.css
   ======================================================== */

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --white: #FFFFFF;
  --off-white: #F7F8FA;
  --green: #4BA56D;
  --green-light: #7FBC93;
  --green-dim: rgba(75, 165, 109, 0.08);
  --green-glow: rgba(75, 165, 109, 0.2);
  --green-dark: #3D8F5C;
  --dark: #1C1C23;
  --dark-surface: #24242D;
  --dark-surface-2: #2E2E38;
  --gray: #707070;
  --gray-light: #A0A0A0;
  --black: #000000;
  --border: rgba(0, 0, 0, 0.08);
  --red: #DC3545;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.container-wide {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (max-width: 600px) {

  .container,
  .container-wide {
    padding: 0 1.25rem;
  }

  .section {
    padding: 4rem 0;
  }
}

/* ===================== NAV ===================== */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 2rem;
  transition: all 0.4s ease;
  background: var(--white);
}

nav.scrolled {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0.6rem 2rem;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav-logo-img {
  height: 40px;
  width: auto;
  transition: all 0.3s;
}

nav.scrolled .nav-logo-img {
  height: 32px;
}

.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
}

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

.nav-links a {
  color: var(--gray);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.3s;
}

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

.nav-close-wrap {
  display: none;
}

.nav-overlay {
  display: none;
}

.nav-cta {
  background: var(--green) !important;
  color: var(--white) !important;
  padding: 0.6rem 1.4rem;
  border-radius: 6px;
  font-weight: 700 !important;
  font-size: 0.8rem !important;
  letter-spacing: 0.06em !important;
  transition: all 0.3s !important;
}

.nav-cta:hover {
  background: var(--green-dark) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 20px var(--green-glow);
}

.nav-search {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
  transition: opacity 0.3s;
  transform: translateY(5px);
}

.nav-search:hover {
  opacity: 1;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--dark);
  margin: 5px 0;
  transition: all 0.3s;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    flex-direction: column;
    justify-content: center;
    background: var(--dark);
    padding: 2rem;
    transition: right 0.4s ease;
    gap: 1.5rem;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links.open a {
    color: rgba(255, 255, 255, 0.8) !important;
  }

  .nav-close-wrap {
    display: block;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    list-style: none;
  }

  .nav-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 2rem;
    cursor: pointer;
    padding: 0.25rem 0.5rem;
    line-height: 1;
    transition: color 0.2s;
  }

  .nav-close:hover {
    color: #fff;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 998;
  }

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

  .nav-search {
    transform: translateY(0);
  }
}

/* ===================== BUTTONS ===================== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green);
  color: var(--white);
  padding: 0.9rem 2rem;
  border: none;
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--green-glow);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--dark);
  padding: 0.9rem 2rem;
  border: 2px solid var(--border);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-secondary:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-dim);
}

.btn-waitlist {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  background: var(--off-white);
  color: var(--gray);
  padding: 0.9rem 2rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s;
}

.btn-waitlist:hover {
  border-color: var(--green);
  color: var(--green);
}

/* ===================== HERO ===================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 8rem 0 6rem;
  background: var(--dark);
  color: var(--white);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/gallery-crowd.jpg') center/cover no-repeat;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28, 28, 35, 0.92) 0%, rgba(75, 165, 109, 0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 100px;
  padding: 0.4rem 1.2rem 0.4rem 0.6rem;
  margin-bottom: 2rem;
  animation: fadeUp 0.8s ease both;
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--white);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.3);
  }

  50% {
    opacity: 0.7;
    box-shadow: 0 0 0 6px transparent;
  }
}

.hero-badge span {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--white);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1.5rem;
  animation: fadeUp 0.8s ease 0.15s both;
}

.hero-title em {
  font-style: italic;
  color: var(--green-light);
}

.hero-sub {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
  margin-bottom: 2.5rem;
  animation: fadeUp 0.8s ease 0.3s both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  animation: fadeUp 0.8s ease 0.45s both;
}

.hero .btn-primary {
  background: var(--white);
  color: var(--green);
}

.hero .btn-primary:hover {
  background: var(--off-white);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.hero .btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.hero .btn-secondary:hover {
  border-color: var(--white);
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.hero-right {
  animation: fadeUp 0.8s ease 0.5s both;
}

/* Countdown */
.countdown-card {
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 2.5rem;
  position: relative;
  overflow: hidden;
}

.countdown-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-light), var(--white), var(--green-light));
}

.countdown-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 0.4rem;
}

.countdown-event {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.countdown-venue {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.5rem;
}

.countdown-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.countdown-unit {
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 1rem 0.5rem;
}

.countdown-num {
  font-family: var(--font-mono);
  font-size: 2rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1;
}

.countdown-unit-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 0.4rem;
}

.countdown-seats {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(220, 211, 53, 0.15);
  border: 1px solid rgba(220, 211, 53, 0.3);
  border-radius: 6px;
  padding: 0.75rem 1rem;
}

.countdown-seats-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #dcd135;
  animation: pulse 1.5s ease-in-out infinite;
}

.countdown-seats span {
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(255, 251, 200, 0.9);
}

.countdown-seats a {
  color: #dcd135;
  text-decoration: underline;
  font-weight: 700;
  transition: all 0.3s;
}

.countdown-seats a:hover {
  color: #ffe46b;
  text-shadow: 0 0 8px rgba(220, 209, 53, 0.4);
}

@media (max-width: 800px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0 1.25rem;
    max-width: 100%;
  }

  .hero-title {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
    word-wrap: break-word;
  }

  .hero-sub {
    font-size: 0.95rem;
    max-width: 100%;
  }

  .hero {
    padding: 6rem 0 3rem;
    min-height: auto;
  }

  .hero-left,
  .hero-right {
    max-width: 100%;
    overflow: hidden;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn-primary,
  .hero-actions .btn-secondary {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .countdown-card {
    padding: 1.5rem;
  }
}

/* ===================== PROOF BAR ===================== */
.proof-bar {
  padding: 3rem 0;
  background: var(--green);
  color: var(--white);
}

.proof-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.proof-stat-num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.proof-stat-label {
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 0.4rem;
}

@media (max-width: 700px) {
  .proof-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

/* ===================== SECTIONS ===================== */
.section {
  padding: 7rem 0;
  position: relative;
}

.section-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 0.8rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 1rem;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.section-title em {
  font-style: italic;
  color: var(--green);
}

.section-title em.alt-italic {
  font-family: 'Lora', Georgia, serif;
}

.section-desc {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--gray);
  max-width: 620px;
}

/* ===================== WHY ===================== */
.why {
  background: var(--white);
}

.why-header {
  text-align: center;
  margin-bottom: 4rem;
}

.why-header .section-desc {
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2.5rem 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--green);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.why-card:hover {
  border-color: rgba(75, 165, 109, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.why-card:hover::after {
  transform: scaleX(1);
}

.why-icon {
  width: 48px;
  height: 48px;
  background: var(--green-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.why-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.75rem;
}

.why-card p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--gray);
}

@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: 1fr;
  }
}

/* ===================== EVENTS ===================== */
.events {
  background: var(--off-white);
}

.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.event-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.4s ease;
}

.event-card:hover {
  border-color: rgba(75, 165, 109, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
}

.event-card-image {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.event-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, var(--white) 100%);
}

.event-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--green);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.35rem 0.8rem;
  border-radius: 4px;
  z-index: 2;
}

.event-card-body {
  padding: 1.5rem 2rem 2rem;
}

.event-date {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--green);
  margin-bottom: 0.5rem;
}

.event-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 0.3rem;
}

.event-venue {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 1.2rem;
}

.event-features {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.event-features li {
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gray);
  background: var(--off-white);
  padding: 0.35rem 0.75rem;
  border-radius: 4px;
  border: 1px solid var(--border);
}

.event-card .btn-primary {
  width: 100%;
  justify-content: center;
}

@media (max-width: 800px) {
  .events-grid {
    grid-template-columns: 1fr;
  }
}

/* ===================== STAKEHOLDERS ===================== */
.stakeholder {
  padding: 7rem 0;
}

.stakeholder-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.stakeholder-grid.reverse .stakeholder-content {
  order: 2;
}

.stakeholder-grid.reverse .stakeholder-visual {
  order: 1;
}

.stakeholder-content .section-desc {
  margin-bottom: 2rem;
}

.value-list {
  list-style: none;
  margin-bottom: 2.5rem;
}

.value-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  padding: 0.6rem 0;
  font-size: 0.95rem;
  color: var(--gray);
}

.value-list li strong {
  color: var(--black);
}

.value-check {
  width: 22px;
  height: 22px;
  min-width: 22px;
  background: var(--green-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
  color: var(--green);
}

.value-check svg {
  width: 12px;
  height: 12px;
}

.stakeholder-photo {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 1.5rem;
}

.stakeholder-photo img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.visual-stats {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 2.5rem;
}

.visual-stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.visual-stat {
  text-align: center;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 8px;
  border: 1px solid var(--border);
}

.visual-stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--green);
  line-height: 1;
}

.visual-stat-label {
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 0.4rem;
  font-weight: 500;
}

.visual-stat-full {
  grid-column: 1 / -1;
  text-align: center;
  padding: 1.5rem;
  background: var(--green-dim);
  border: 1px solid rgba(75, 165, 109, 0.2);
  border-radius: 8px;
  margin-top: 1.5rem;
}

.visual-stat-full .visual-stat-num {
  font-size: 2.5rem;
}

/* Dark stakeholder variant */
.stakeholder-dark {
  background: var(--dark);
  color: var(--white);
}

.stakeholder-dark .section-label {
  color: var(--green-light);
}

.stakeholder-dark .section-title {
  color: var(--white);
}

.stakeholder-dark .section-title em {
  color: var(--green-light);
}

.stakeholder-dark .section-desc {
  color: var(--gray-light);
}

.stakeholder-dark .value-list li {
  color: rgba(255, 255, 255, 0.7);
}

.stakeholder-dark .value-list li strong {
  color: var(--white);
}

.stakeholder-dark .value-check {
  background: rgba(75, 165, 109, 0.15);
  color: var(--green-light);
}

.stakeholder-dark .visual-stats {
  background: var(--dark-surface);
  border-color: rgba(255, 255, 255, 0.08);
}

.stakeholder-dark .visual-stat {
  background: var(--dark-surface-2);
  border-color: rgba(255, 255, 255, 0.06);
}

.stakeholder-dark .visual-stat-num {
  color: var(--green-light);
}

.stakeholder-dark .visual-stat-label {
  color: var(--gray-light);
}

.stakeholder-dark .visual-stat-full {
  background: rgba(75, 165, 109, 0.1);
  border-color: rgba(75, 165, 109, 0.2);
}

@media (max-width: 900px) {
  .stakeholder-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .stakeholder-grid.reverse .stakeholder-content {
    order: 1;
  }

  .stakeholder-grid.reverse .stakeholder-visual {
    order: 2;
  }
}

@media (max-width: 600px) {
  .stakeholder {
    padding: 4rem 0;
  }

  .stakeholder-content .section-title {
    font-size: clamp(1.5rem, 6vw, 2rem);
  }

  .value-list li {
    font-size: 0.88rem;
    gap: 0.6rem;
  }

  .visual-stats {
    padding: 1.25rem;
  }

  .visual-stat-row {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }

  .visual-stat {
    padding: 1rem 0.5rem;
  }

  .visual-stat-num {
    font-size: 1.6rem;
  }

  .visual-stat-label {
    font-size: 0.7rem;
  }

  .visual-stat-full {
    margin-top: 0.75rem;
    padding: 1rem;
  }

  .visual-stat-full .visual-stat-num {
    font-size: 1.8rem;
  }

  .stakeholder-visual {
    max-width: 100%;
    overflow: hidden;
  }
}

/* ===================== TESTIMONIALS ===================== */
.testimonials {
  background: var(--off-white);
  padding: 7rem 0;
}

.testimonials-header {
  text-align: center;
  margin-bottom: 4rem;
}

.testimonials-header .section-desc {
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem;
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  border-color: rgba(75, 165, 109, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.testimonial-quote {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--green);
  line-height: 1;
  margin-bottom: 0.8rem;
  opacity: 0.5;
}

.testimonial-card>p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray);
  margin-bottom: 1.5rem;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--green-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--green);
}

.testimonial-name {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--black);
}

.testimonial-role {
  font-size: 0.78rem;
  color: var(--gray);
}

@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ===================== SPONSORS (DARK) ===================== */
.sponsors-section {
  background: var(--dark);
  color: var(--white);
}

.sponsors-section .section-label {
  color: var(--green-light);
}

.sponsors-section .section-title {
  color: var(--white);
}

.sponsors-section .section-title em {
  color: var(--green-light);
}

.sponsors-section .section-desc {
  color: var(--gray-light);
}

.sponsor-tiers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.sponsor-tier {
  background: var(--dark-surface);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 2.5rem 1.8rem;
  text-align: center;
  transition: all 0.4s ease;
  position: relative;
  display: flex;
  flex-direction: column;
}

.sponsor-tier:hover {
  transform: translateY(-4px);
  border-color: rgba(75, 165, 109, 0.3);
}

.sponsor-tier.featured {
  border-color: var(--green);
  background: linear-gradient(180deg, rgba(75, 165, 109, 0.12), var(--dark-surface));
}

.sponsor-tier.featured::before {
  content: 'MAXIMUM IMPACT';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  padding: 0.3rem 1rem;
  border-radius: 100px;
  white-space: nowrap;
}

.tier-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.3rem;
}

.tier-price {
  font-family: var(--font-mono);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--green-light);
  margin-bottom: 0.5rem;
}

.tier-tagline {
  font-size: 0.82rem;
  color: var(--gray-light);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.tier-features {
  list-style: none;
  text-align: left;
  margin-bottom: 2rem;
  flex: 1;
}

.tier-features li {
  padding: 0.5rem 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  line-height: 1.4;
}

.tier-features li:last-child {
  border-bottom: none;
}

.tier-features li::before {
  content: '\2192';
  color: var(--green-light);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.sponsor-tier .btn-primary,
.sponsor-tier .btn-secondary {
  width: 100%;
  justify-content: center;
}

.sponsor-tier .btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.15);
}

.sponsor-tier .btn-secondary:hover {
  border-color: var(--green-light);
  color: var(--green-light);
  background: rgba(75, 165, 109, 0.08);
}

@media (max-width: 1100px) {
  .sponsor-tiers {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .sponsor-tiers {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* ===================== MEDIA ===================== */
.media-section {
  background: var(--white);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.media-card {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s;
  text-decoration: none;
  color: inherit;
}

.media-card:hover {
  border-color: rgba(75, 165, 109, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.media-icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.media-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.media-card p {
  font-size: 0.88rem;
  color: var(--gray);
  margin-bottom: 1.2rem;
}

.media-link {
  color: var(--green);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

@media (max-width: 700px) {
  .media-grid {
    grid-template-columns: 1fr;
  }
}

/* Episodes */
.episodes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.episode-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.episode-card:hover {
  border-color: rgba(75, 165, 109, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.episode-thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.episode-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.episode-card:hover .episode-thumb img {
  transform: scale(1.05);
}

.episode-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: rgba(75, 165, 109, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--white);
  opacity: 0;
  transition: opacity 0.3s;
}

.episode-card:hover .episode-play {
  opacity: 1;
}

.episode-info {
  padding: 1.25rem 1.5rem;
}

.episode-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-dim);
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  margin-bottom: 0.6rem;
}

.episode-info h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--black);
  margin-bottom: 0.3rem;
}

.episode-info p {
  font-size: 0.82rem;
  color: var(--gray);
  margin-bottom: 0.5rem;
}

.episode-date {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--gray);
}

@media (max-width: 800px) {
  .episodes-grid {
    grid-template-columns: 1fr;
  }
}

/* Club callout */
.club-callout {
  background: var(--green-dim);
  border: 1px solid rgba(75, 165, 109, 0.2);
  border-radius: 12px;
  padding: 2.5rem;
}

.club-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

/* ===================== GALLERY ===================== */
.gallery {
  background: var(--off-white);
  padding: 7rem 0;
}

.gallery-header {
  text-align: center;
  margin-bottom: 3rem;
}

.gallery-header .section-desc {
  margin: 0 auto;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: dense;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.gallery-item.wide {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img {
  transform: scale(1.05);
}

.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.7) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  pointer-events: none;
}

.gallery-item-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--white);
}

.gallery-item-sub {
  font-size: 0.78rem;
  color: var(--green-light);
  font-weight: 500;
  letter-spacing: 0.04em;
}

@media (max-width: 700px) {
  .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }

  .gallery-item.wide {
    grid-column: span 2;
  }
}

@media (max-width: 500px) {
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-item.wide {
    grid-column: span 1;
  }

  .gallery-item {
    aspect-ratio: 4 / 3;
  }

  .gallery-item.wide {
    aspect-ratio: 16 / 9;
  }
}

/* ===================== FINAL CTA ===================== */
.final-cta {
  padding: 8rem 0;
  background: var(--green);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 50% at 50% 50%, rgba(255, 255, 255, 0.08), transparent);
}

.final-cta-content {
  position: relative;
  z-index: 2;
}

.final-cta .section-label {
  color: rgba(255, 255, 255, 0.8);
}

.final-cta .section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin-bottom: 1.2rem;
}

.final-cta .section-title em {
  color: var(--white);
  font-weight: 800;
}

.final-cta .section-desc {
  max-width: 600px;
  margin: 0 auto 2.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.85);
}

.final-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.final-cta .btn-primary {
  background: var(--white);
  color: var(--green);
}

.final-cta .btn-primary:hover {
  background: var(--off-white);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.final-cta .btn-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.final-cta .btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
}

/* ===================== FOOTER ===================== */
footer {
  background: var(--dark);
  color: var(--white);
  padding: 3rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  font-size: 0.88rem;
  color: var(--gray-light);
  line-height: 1.6;
  max-width: 280px;
}

.footer-logo {
  height: 36px;
  width: auto;
  margin-bottom: 1rem;
}

.footer-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-col h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-light);
  margin-bottom: 1rem;
}

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

.footer-col li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-col li {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

.footer-col a:hover {
  color: var(--green-light);
}

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

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--gray-light);
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.78rem;
  color: var(--gray-light);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: var(--green-light);
}

@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 500px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

/* ===================== BLOG / POST STYLES ===================== */

/* Blog Listing */
.blog-listing {
  padding-top: 10rem;
}

.blog-header {
  text-align: center;
  margin-bottom: 4rem;
}

.blog-header .section-desc {
  margin: 0 auto;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.blog-card:hover {
  border-color: rgba(75, 165, 109, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.blog-card-image {
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-card-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-dim);
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  margin-bottom: 0.8rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.blog-card-tag:hover {
  background: var(--green);
  color: var(--white);
}

.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.blog-card-title a {
  color: var(--black);
  text-decoration: none;
  transition: color 0.3s;
}

.blog-card-title a:hover {
  color: var(--green);
}

.blog-card-excerpt {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--gray);
  margin-bottom: 1rem;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.blog-card-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
}

.blog-card-avatar-placeholder {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--green-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--green);
}

.blog-card-author {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  display: block;
}

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

@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* Single Post */
.post-full {
  padding-top: 8rem;
}

.post-header {
  text-align: center;
  margin-bottom: 3rem;
}

.post-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-dim);
  padding: 0.3rem 0.8rem;
  border-radius: 4px;
  margin-bottom: 1.2rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.post-tag:hover {
  background: var(--green);
  color: var(--white);
}

.post-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 1rem;
}

.post-excerpt {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto 1.5rem;
}

.post-meta-header {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

.post-author-info {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.post-author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.post-author-avatar-placeholder {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--green);
}

.post-author-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
  text-decoration: none;
}

.post-author-name:hover {
  color: var(--green);
}

.post-date-reading {
  font-size: 0.8rem;
  color: var(--gray);
  display: flex;
  gap: 0.4rem;
  align-items: center;
}

.post-feature-image {
  max-width: 1000px;
  margin: 0 auto 3rem;
}

.post-feature-image img {
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.post-feature-image figcaption {
  text-align: center;
  font-size: 0.82rem;
  color: var(--gray);
  margin-top: 0.8rem;
}

/* Post Content (Ghost's content output) */
.post-body {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--dark);
}

.post-body h1,
.post-body h2,
.post-body h3,
.post-body h4,
.post-body h5,
.post-body h6 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.25;
  color: var(--black);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.post-body h2 {
  font-size: 1.6rem;
}

.post-body h3 {
  font-size: 1.3rem;
}

.post-body h4 {
  font-size: 1.1rem;
}

.post-body p {
  margin-bottom: 1.4rem;
}

.post-body a {
  color: var(--green);
  text-decoration: underline;
  transition: color 0.3s;
}

.post-body a:hover {
  color: var(--green-dark);
}

.post-body img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  margin: 2rem 0;
}

.post-body blockquote {
  border-left: 3px solid var(--green);
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--gray);
}

.post-body ul,
.post-body ol {
  margin-bottom: 1.4rem;
  padding-left: 1.5rem;
}

.post-body li {
  margin-bottom: 0.5rem;
}

.post-body pre {
  background: var(--dark);
  color: var(--white);
  padding: 1.5rem;
  border-radius: 8px;
  overflow-x: auto;
  margin: 2rem 0;
  font-family: var(--font-mono);
  font-size: 0.9rem;
  line-height: 1.6;
}

.post-body code {
  font-family: var(--font-mono);
  font-size: 0.9em;
}

.post-body p code,
.post-body li code {
  background: var(--off-white);
  padding: 0.15rem 0.4rem;
  border-radius: 3px;
}

.post-body figure {
  margin: 2rem 0;
}

.post-body figcaption {
  text-align: center;
  font-size: 0.82rem;
  color: var(--gray);
  margin-top: 0.5rem;
}

.post-body hr {
  border: none;
  border-top: 1px solid var(--border);
  margin: 3rem auto;
  max-width: 100px;
}

/* Ghost-specific content cards */
.kg-card {
  margin: 2rem 0;
}

.kg-image-card img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.kg-width-wide {
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.kg-width-full {
  max-width: none;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.kg-bookmark-card {
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}

.kg-bookmark-container {
  display: flex;
  text-decoration: none;
  color: inherit;
}

.kg-bookmark-content {
  padding: 1.5rem;
  flex: 1;
}

.kg-bookmark-title {
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.kg-bookmark-description {
  font-size: 0.88rem;
  color: var(--gray);
}

.kg-bookmark-thumbnail {
  width: 200px;
  min-height: 100%;
}

.kg-bookmark-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* YouTube & Video Embeds */
.kg-embed-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin: 2rem 0;
}

.kg-embed-card iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border-radius: 8px;
}

.kg-embed-card>div {
  width: 100%;
}

.kg-video-card {
  width: 100%;
  margin: 2rem 0;
}

.kg-video-card video {
  width: 100%;
  border-radius: 8px;
}

.post-body iframe {
  max-width: 100%;
}

/* Post Tags */
.post-tags {
  margin: 4rem 0;
}

.post-tags-inner {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.post-tag-link {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gray);
  background: var(--off-white);
  padding: 0.4rem 0.8rem;
  border-radius: 4px;
  border: 1px solid var(--border);
  text-decoration: none;
  transition: all 0.3s;
}

.post-tag-link:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-dim);
}

/* Related Posts */
.related-posts {
  background: var(--off-white);
}

.related-title {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 2rem;
  color: var(--black);
}

/* Page Template */
.page-full {
  padding-top: 8rem;
}

.page-header {
  text-align: center;
  margin-bottom: 3rem;
}

.page-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.15;
  color: var(--black);
  margin-bottom: 0.5rem;
}

.page-excerpt {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--gray);
  max-width: 700px;
  margin: 0 auto;
}

/* Author Profile */
.author-profile {
  text-align: center;
}

.author-profile-image {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
}

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}

.pagination a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--green);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 0.6rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: 6px;
  transition: all 0.3s;
}

.pagination a:hover {
  border-color: var(--green);
  background: var(--green-dim);
}

.page-number {
  font-size: 0.82rem;
  color: var(--gray);
}

/* ===================== NEWSLETTER ===================== */
.newsletter-section {
  background: var(--off-white);
  padding: 5rem 0;
}

.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 3rem;
}

.newsletter-content {
  flex: 1;
  min-width: 280px;
}

.newsletter-content .section-title {
  margin-bottom: 0.5rem;
}

.newsletter-form {
  flex: 0 0 auto;
  text-align: center;
}

.newsletter-btn {
  padding: 1rem 2.5rem;
  font-size: 0.92rem;
  border: none;
  cursor: pointer;
}

.newsletter-note {
  font-size: 0.78rem;
  color: var(--gray);
  margin-top: 0.6rem;
}

@media (max-width: 700px) {
  .newsletter-inner {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }

  .newsletter-content .section-desc {
    margin: 0 auto;
  }
}

/* ===================== BLOG HOME ===================== */
.blog-section {
  background: var(--white);
}

.blog-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.blog-section .blog-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.blog-card:hover {
  border-color: rgba(75, 165, 109, 0.3);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.blog-card-image {
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card-body {
  padding: 1.5rem;
}

.blog-card-tag {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  background: var(--green-dim);
  padding: 0.2rem 0.6rem;
  border-radius: 3px;
  margin-bottom: 0.8rem;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.blog-card-title {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}

.blog-card-title a {
  color: var(--black);
  text-decoration: none;
  transition: color 0.3s;
}

.blog-card-title a:hover {
  color: var(--green);
}

.blog-card-excerpt {
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--gray);
  margin-bottom: 1rem;
}

.blog-card-meta {
  margin-bottom: 0.8rem;
}

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

.blog-card-readmore {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
  text-decoration: none;
  transition: color 0.3s;
}

.blog-card-readmore:hover {
  color: var(--green-dark);
}

@media (max-width: 700px) {
  .blog-section .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-section-header {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===================== ANIMATIONS ===================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 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;
}

/* ===================== INFINITE SCROLL ===================== */
.infinite-scroll-spinner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  padding: 3rem 0;
}

.spinner-dot {
  width: 10px;
  height: 10px;
  background: var(--green);
  border-radius: 50%;
  animation: spinnerBounce 1.2s ease-in-out infinite;
}

.spinner-dot:nth-child(2) {
  animation-delay: 0.15s;
}

.spinner-dot:nth-child(3) {
  animation-delay: 0.3s;
}

@keyframes spinnerBounce {

  0%,
  80%,
  100% {
    opacity: 0.3;
    transform: scale(0.8);
  }

  40% {
    opacity: 1;
    transform: scale(1);
  }
}

.infinite-scroll-sentinel {
  height: 1px;
}

.blog-card-fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.blog-card-visible {
  opacity: 1;
  transform: translateY(0);
}