/* OutPaged Custom Styles */

/* ===== Base & Typography ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,500;1,600;1,700&family=Source+Sans+3:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

:root {
  --color-forest-dark: #0a1a0f;
  --color-forest: #132a1a;
  --color-forest-light: #1a3a24;
  --color-amber: #ea580c;
  --color-amber-light: #f97316;
  --color-amber-glow: rgba(234, 88, 12, 0.15);
  --color-teal: #0d9488;
  --color-teal-light: #14b8a6;
  --color-slate-dark: #0f172a;
  --color-slate: #1e293b;
  --color-gray-light: #f1f5f9;
  --color-white: #ffffff;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Source Sans 3', 'Segoe UI', sans-serif;
}

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

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

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
}

/* ===== Navigation ===== */
.nav-main {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 26, 15, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  transition: background 0.3s ease;
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-white);
  text-decoration: none;
  letter-spacing: -0.02em;
}

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

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

.nav-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s ease;
  font-family: var(--font-body);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-amber-light);
}

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

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

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

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

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

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 26, 15, 0.98);
  padding: 2rem 1.5rem;
  z-index: 999;
}

.nav-mobile.open {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav-mobile a {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  font-size: 1.25rem;
  font-weight: 500;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  font-family: var(--font-body);
  transition: color 0.2s ease;
}

.nav-mobile a:hover {
  color: var(--color-amber-light);
}

@media (min-width: 768px) {
  .nav-links {
    display: flex;
  }
  .nav-toggle {
    display: none;
  }
}

/* ===== Hero Sections ===== */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 6rem 1.5rem 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/background.png');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 26, 15, 0.85) 0%,
    rgba(10, 26, 15, 0.75) 50%,
    rgba(10, 26, 15, 0.95) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  color: var(--color-white);
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero p {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 640px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}

/* Sub-page heroes (shorter) */
.hero-sub {
  min-height: 50vh;
  padding-top: 8rem;
  padding-bottom: 4rem;
}

/* ===== Video Placeholder ===== */
.video-container {
  position: relative;
  width: 100%;
  max-width: 800px;
  margin: 2.5rem auto 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
}

.video-placeholder {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 */
  background: linear-gradient(135deg, #0f172a 0%, #1a1a2e 50%, #0f172a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-placeholder-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.video-placeholder-logo {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-white);
}

.video-placeholder-logo span {
  color: var(--color-amber);
}

.video-placeholder-text {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.video-play-btn {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--color-amber);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 0 30px rgba(234, 88, 12, 0.3);
}

.video-play-btn:hover {
  transform: scale(1.08);
  box-shadow: 0 0 40px rgba(234, 88, 12, 0.5);
}

.video-play-btn i {
  color: var(--color-white);
  font-size: 1.5rem;
  margin-left: 4px;
}

/* ===== Traction Bar ===== */
.traction-bar {
  background: var(--color-slate-dark);
  padding: 2.5rem 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.traction-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  text-align: center;
}

.traction-item .number {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-amber);
  line-height: 1.2;
}

.traction-item .label {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.25rem;
  line-height: 1.4;
}

@media (min-width: 768px) {
  .traction-grid {
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
  }
  .traction-item .number {
    font-size: 2rem;
  }
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--color-amber);
  color: var(--color-white);
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.3);
}

.btn-primary:hover {
  background: var(--color-amber-light);
  box-shadow: 0 6px 20px rgba(234, 88, 12, 0.4);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

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

.btn-dark {
  background: var(--color-slate-dark);
  color: var(--color-white);
}

.btn-dark:hover {
  background: var(--color-slate);
}

.btn-teal {
  background: var(--color-teal);
  color: var(--color-white);
}

.btn-teal:hover {
  background: var(--color-teal-light);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ===== Section Styles ===== */
.section {
  padding: 5rem 1.5rem;
}

.section-dark {
  background: var(--color-forest-dark);
  color: var(--color-white);
}

.section-forest {
  background: var(--color-forest);
  color: var(--color-white);
}

.section-light {
  background: var(--color-gray-light);
  color: var(--color-slate-dark);
}

.section-white {
  background: var(--color-white);
  color: var(--color-slate-dark);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-amber);
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 1.1rem;
  opacity: 0.8;
  max-width: 640px;
  line-height: 1.7;
}

/* Center variant */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ===== Cards ===== */
.card {
  background: var(--color-white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08), 0 8px 24px rgba(0, 0, 0, 0.06);
}

.card-dark {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--color-white);
}

.card-dark:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}

.card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* ===== Steps / How It Works ===== */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

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

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

.step-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.step-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--color-amber-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.step-icon i {
  font-size: 1.5rem;
  color: var(--color-amber);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-amber);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}

.step-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  color: var(--color-white);
}

.step-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* ===== Who It's For Cards ===== */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 3rem;
}

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

.audience-card {
  padding: 2.5rem 2rem;
  border-radius: 12px;
  text-align: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.audience-card .card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--color-amber-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.audience-card .card-icon i {
  font-size: 1.25rem;
  color: var(--color-amber);
}

.audience-card h3 {
  font-size: 1.3rem;
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.audience-card p {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.audience-card .card-arrow {
  color: var(--color-amber);
  font-size: 0.9rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s ease;
}

.audience-card:hover .card-arrow {
  gap: 0.75rem;
}

/* ===== Newsletter Section ===== */
.newsletter-section {
  text-align: center;
  padding: 4rem 1.5rem;
}

.newsletter-section h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.5rem;
}

.newsletter-section p {
  font-size: 1rem;
  opacity: 0.7;
  margin-bottom: 2rem;
}

/* ===== Footer ===== */
.footer {
  background: var(--color-forest-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 1.5rem 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

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

.footer-brand .footer-logo {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-white);
  text-decoration: none;
  display: inline-block;
  margin-bottom: 0.75rem;
}

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

.footer-brand .tagline {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.5rem;
}

.footer-brand .location {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.footer h4 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}

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

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

.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--color-amber-light);
}

.footer-social {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 1rem;
}

.footer-social a:hover {
  background: var(--color-amber);
  color: var(--color-white);
}

.footer-bottom {
  max-width: 1280px;
  margin: 2.5rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.35);
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom a:hover {
  color: rgba(255, 255, 255, 0.6);
}

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

/* ===== Team Section ===== */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

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

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

.team-member {
  text-align: center;
  padding: 2rem 1.5rem;
}

.team-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.25rem;
  display: block;
  border: 3px solid rgba(255, 255, 255, 0.1);
}

.team-photo-placeholder {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-forest-light), var(--color-forest));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  border: 3px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.3);
  font-size: 2.5rem;
}

.team-member h3 {
  font-size: 1.15rem;
  color: var(--color-white);
  margin-bottom: 0.25rem;
}

.team-member .role {
  font-size: 0.85rem;
  color: var(--color-amber);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.team-member .bio {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
}

/* Smaller team cards */
.team-grid-sm {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

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

.team-member-sm {
  text-align: center;
  padding: 1.5rem 1rem;
}

.team-member-sm .team-photo {
  width: 90px;
  height: 90px;
  margin-bottom: 1rem;
}

.team-member-sm h3 {
  font-size: 1rem;
  color: var(--color-white);
  margin-bottom: 0.2rem;
}

.team-member-sm .role {
  font-size: 0.8rem;
  color: var(--color-amber);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.team-member-sm .bio {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.55);
}

/* ===== Publisher Page Specifics ===== */
.process-steps {
  counter-reset: process-step;
  max-width: 720px;
  margin: 2.5rem auto 0;
}

.process-step {
  counter-increment: process-step;
  position: relative;
  padding-left: 4rem;
  padding-bottom: 2.5rem;
  border-left: 2px solid rgba(255, 255, 255, 0.1);
  margin-left: 1rem;
}

.process-step:last-child {
  border-left-color: transparent;
  padding-bottom: 0;
}

.process-step::before {
  content: counter(process-step);
  position: absolute;
  left: -1.15rem;
  top: 0;
  width: 2.25rem;
  height: 2.25rem;
  background: var(--color-amber);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--color-white);
}

.process-step p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.7;
}

/* Deal Cards */
.deal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

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

.deal-card {
  padding: 2.5rem 2rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.deal-card.phase-a {
  background: linear-gradient(135deg, rgba(13, 148, 136, 0.1), rgba(13, 148, 136, 0.02));
  border-color: rgba(13, 148, 136, 0.3);
}

.deal-card.phase-b {
  background: linear-gradient(135deg, rgba(234, 88, 12, 0.1), rgba(234, 88, 12, 0.02));
  border-color: rgba(234, 88, 12, 0.3);
}

.deal-card .phase-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.deal-card.phase-a .phase-label {
  color: var(--color-teal-light);
}

.deal-card.phase-b .phase-label {
  color: var(--color-amber-light);
}

.deal-card h3 {
  font-size: 1.35rem;
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.deal-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

/* ===== Social Proof ===== */
.proof-list {
  list-style: none;
  max-width: 720px;
  margin: 2rem auto 0;
}

.proof-list li {
  position: relative;
  padding: 1rem 0 1rem 2rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.proof-list li:last-child {
  border-bottom: none;
}

.proof-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 1.1rem;
  color: var(--color-amber);
  font-size: 0.85rem;
}

/* ===== Blog Styles ===== */
.blog-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

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

.blog-card {
  padding: 2rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
}

.blog-card .blog-date {
  font-size: 0.8rem;
  color: var(--color-amber);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.blog-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.blog-card h3 a {
  color: var(--color-slate-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

.blog-card h3 a:hover {
  color: var(--color-amber);
}

.blog-card p {
  font-size: 0.95rem;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.blog-card .read-more {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-amber);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s ease;
}

.blog-card .read-more:hover {
  gap: 0.7rem;
}

/* Updates page */
.updates-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2.5rem;
}

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

.update-card {
  padding: 2rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
}

.update-card .update-date {
  font-size: 0.8rem;
  color: var(--color-amber);
  font-weight: 600;
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.update-card .update-date i {
  font-size: 0.9rem;
}

.update-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}

.update-card h3 a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s ease;
}

.update-card h3 a:hover {
  color: var(--color-amber);
}

.update-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex-grow: 1;
}

.update-card .read-more {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-amber);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.2s ease;
}

.update-card .read-more:hover {
  gap: 0.7rem;
}

/* Blog post page */
.post-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 1.5rem 5rem;
}

.post-meta {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
}

.post-back {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  color: var(--color-amber);
  text-decoration: none;
  font-weight: 500;
  margin-bottom: 2rem;
  transition: gap 0.2s ease;
}

.post-back:hover {
  gap: 0.7rem;
}

.post-body {
  font-size: 1.1rem;
  line-height: 1.85;
  color: var(--color-slate-dark);
}

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

.post-body h2 {
  font-size: 1.5rem;
  margin: 2.5rem 0 1rem;
}

.post-body a {
  color: var(--color-amber);
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ===== Feature Cards (Readers, Authors pages) ===== */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 3rem;
}

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

.feature-card {
  text-align: center;
  padding: 2.5rem 2rem;
}

.feature-card .feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: var(--color-amber-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}

.feature-card .feature-icon i {
  font-size: 1.5rem;
  color: var(--color-amber);
}

.feature-card h3 {
  font-size: 1.25rem;
  color: var(--color-white);
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.65;
}

/* ===== Origin Story ===== */
.origin-story {
  max-width: 780px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.85;
  color: #334155;
}

.section-dark .origin-story,
.section-forest .origin-story {
  color: rgba(255, 255, 255, 0.8);
}

.origin-story p {
  margin-bottom: 1.5rem;
}

/* ===== Legal Pages ===== */
.legal-content {
  max-width: 780px;
  margin: 0 auto;
  padding: 2rem 1.5rem 5rem;
}

.legal-content h1 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
  color: var(--color-slate-dark);
}

.legal-content .last-updated {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
}

.legal-content h2 {
  font-size: 1.35rem;
  margin: 2.5rem 0 0.75rem;
  color: var(--color-slate-dark);
}

.legal-content p {
  margin-bottom: 1rem;
  line-height: 1.8;
  color: #475569;
}

.legal-content ul {
  margin: 0.5rem 0 1rem 1.5rem;
  color: #475569;
  line-height: 1.8;
}

.legal-content ul li {
  margin-bottom: 0.35rem;
}

/* ===== Scroll Animations ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Utility ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

/* ===== Responsive Spacing ===== */
@media (min-width: 768px) {
  .section {
    padding: 6rem 2rem;
  }
  .hero {
    padding: 8rem 2rem 6rem;
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 7rem 2rem;
  }
}
