/* ============================================================
   ViralBerry — Global Styles
   ============================================================ */

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

:root {
  --berry-red:  #DC143C;
  --dark-teal:  #0A3A3A;
  --lime:       #D4F542;
  --white:      #FFFFFF;
  --off-white:  #F5F5F5;
  --light-gray: #E0E0E0;
  --font: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--dark-teal);
  background: var(--white);
  line-height: 1.6;
}

/* ── Utility ── */
.container { max-width: 1100px; margin: 0 auto; padding: 0 1.25rem; }
.section    { padding: 80px 0; }
.section-sm { padding: 60px 0; }

/* ── Typography ── */
h1, h2, h3, h4 { line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); margin-bottom: 1rem; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); margin-bottom: 0.5rem; }
p  { font-size: 1.05rem; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--berry-red);
  color: var(--white);
  border-color: var(--berry-red);
}
.btn-primary:hover {
  background: var(--dark-teal);
  border-color: var(--lime);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--berry-red);
  border-color: var(--berry-red);
}
.btn-outline:hover {
  background: var(--berry-red);
  color: var(--white);
}

.btn-lime {
  background: var(--lime);
  color: var(--dark-teal);
  border-color: var(--lime);
}
.btn-lime:hover {
  background: var(--white);
  color: var(--dark-teal);
  border-color: var(--dark-teal);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--dark-teal);
  border-bottom: 2px solid rgba(212, 245, 66, 0.2);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 62px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Logo typography — two-tone "ViralBerryAI"
   ┌─ Change logo first word colour here ──────────────────── */
.logo-viral { color: #DC143C; } /* ← "Viral" colour           */
/* ┌─ Change logo second word colour here ─────────────────── */
.logo-berry { color: #FFFFFF; } /* ← "BerryAI" colour         */
/* ──────────────────────────────────────────────────────── */
.logo {
  text-decoration: none;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1;
}

/* Desktop nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  opacity: 0.85;
  transition: opacity 0.15s;
}
.nav-links a:hover { opacity: 1; color: var(--lime); }
.nav-links .btn-primary { opacity: 1; padding: 0.55rem 1.25rem; font-size: 0.9rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  display: none;
  position: fixed;
  top: 62px; right: 0;
  width: min(300px, 80vw);
  height: calc(100vh - 62px);
  background: var(--dark-teal);
  flex-direction: column;
  padding: 2rem 1.5rem;
  gap: 1.5rem;
  border-left: 2px solid rgba(212,245,66,0.2);
  transform: translateX(100%);
  transition: transform 0.3s ease;
  z-index: 999;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  color: var(--white);
  text-decoration: none;
  font-size: 1.15rem;
  font-weight: 600;
  opacity: 0.85;
}
.mobile-menu a:hover { opacity: 1; color: var(--lime); }
.mobile-menu .btn-primary { text-align: center; }

@media (max-width: 767px) {
  .nav-links  { display: none; }
  .hamburger  { display: flex; }
  .mobile-menu { display: flex; }
}

/* ============================================================
   PAGE OFFSET (fixed navbar)
   ============================================================ */
body { padding-top: 62px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: var(--dark-teal);
  min-height: calc(100vh - 62px);
  display: flex;
  align-items: center;
  text-align: center;
  padding: 80px 0;
}
.hero h1 { color: var(--white); margin-bottom: 1rem; }
.hero h1 span { color: var(--lime); }
.hero .subheadline { color: rgba(255,255,255,0.78); font-size: clamp(1rem, 2.5vw, 1.3rem); max-width: 560px; margin: 0 auto 2rem; }

/* ============================================================
   PROBLEM
   ============================================================ */
.problem { background: var(--off-white); }
.problem .section-label { color: var(--berry-red); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-size: 0.85rem; margin-bottom: 0.5rem; }
.problem h2 { color: var(--dark-teal); margin-bottom: 3rem; }
.pain-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 2rem; }
.pain-card {
  background: var(--white);
  border: 1.5px solid var(--light-gray);
  border-radius: 10px;
  padding: 2rem 1.5rem;
  text-align: center;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.pain-card:hover { border-color: var(--berry-red); box-shadow: 0 4px 20px rgba(220,20,60,0.08); }
.pain-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.pain-card h3 { color: var(--dark-teal); margin-bottom: 0.5rem; }
.pain-card p  { color: #555; font-size: 0.95rem; }

/* ============================================================
   SOLUTION / HOW IT WORKS
   ============================================================ */
.solution { background: var(--white); }
.solution .section-label { color: var(--berry-red); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-size: 0.85rem; margin-bottom: 0.5rem; }
.solution h2 { color: var(--dark-teal); margin-bottom: 3rem; }
.steps { display: flex; flex-direction: column; gap: 2.5rem; }
.step {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--off-white);
  border-radius: 12px;
  padding: 1.75rem;
  border-left: 5px solid var(--berry-red);
}
.step-num {
  min-width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--berry-red);
  color: var(--white);
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.step-body h3 { color: var(--dark-teal); margin-bottom: 0.4rem; }
.step-body p  { color: #555; font-size: 0.97rem; }
.step-body ul { margin: 0.5rem 0 0 1.2rem; color: #555; font-size: 0.95rem; }
.step-body ul li { margin-bottom: 0.3rem; }
.step-body .tag {
  display: inline-block;
  background: var(--lime);
  color: var(--dark-teal);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  margin-top: 0.5rem;
}

/* ============================================================
   FEATURES
   ============================================================ */
.features { background: var(--dark-teal); }
.features h2 { color: var(--white); margin-bottom: 0.5rem; }
.features .subtitle { color: rgba(255,255,255,0.65); margin-bottom: 3rem; }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.feature-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(212,245,66,0.15);
  border-radius: 10px;
  padding: 1.5rem;
  transition: border-color 0.2s, background 0.2s;
}
.feature-card:hover { border-color: var(--lime); background: rgba(212,245,66,0.05); }
.feature-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.feature-card h3 { color: var(--white); font-size: 1rem; margin-bottom: 0.4rem; }
.feature-card p  { color: rgba(255,255,255,0.6); font-size: 0.9rem; }

/* ============================================================
   A/B TEST
   ============================================================ */
.ab-section { background: var(--off-white); }
.ab-section .section-label { color: var(--berry-red); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-size: 0.85rem; margin-bottom: 0.5rem; }
.ab-section h2 { margin-bottom: 0.5rem; }
.ab-section .ab-intro { color: #555; margin-bottom: 3rem; }
.ab-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
@media (max-width: 680px) { .ab-grid { grid-template-columns: 1fr; } }

.ab-card {
  border-radius: 12px;
  padding: 2.5rem 2rem;
  text-align: center;
}
.ab-card.variant-a {
  background: var(--dark-teal);
  border: 2px solid rgba(212,245,66,0.3);
}
.ab-card.variant-b {
  background: #0d0d0d;
  border: 2px solid rgba(220,20,60,0.4);
}
.ab-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 1rem;
  opacity: 0.6;
  color: var(--white);
}
.ab-card .brand-name { font-size: 1.8rem; font-weight: 800; margin-bottom: 0.75rem; }
.ab-card.variant-a .brand-name { color: var(--lime); }
.ab-card.variant-b .brand-name { color: var(--berry-red); }
.ab-card .ab-headline { color: rgba(255,255,255,0.85); font-size: 1rem; margin-bottom: 1.5rem; line-height: 1.5; }
.ab-card .btn { font-size: 0.9rem; padding: 0.65rem 1.5rem; }

/* ============================================================
   PRICING
   ============================================================ */
.pricing-section { background: var(--white); }
.pricing-section .section-label { color: var(--berry-red); font-weight: 700; text-transform: uppercase; letter-spacing: 1px; font-size: 0.85rem; margin-bottom: 0.5rem; }
.pricing-section h2 { margin-bottom: 3rem; }
.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1.5rem; align-items: start; }

.pricing-card {
  background: var(--off-white);
  border: 1.5px solid var(--light-gray);
  border-radius: 14px;
  padding: 2rem;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
.pricing-featured {
  border-color: var(--berry-red);
  background: linear-gradient(180deg, rgba(220,20,60,0.04) 0%, var(--off-white) 100%);
  box-shadow: 0 0 0 1px var(--berry-red), 0 8px 30px rgba(220,20,60,0.1);
}
.pricing-badge {
  position: absolute;
  top: -12px; left: 50%; transform: translateX(-50%);
  background: var(--berry-red);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 3px 12px;
  border-radius: 100px;
}
.pricing-tier { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #888; margin-bottom: 0.5rem; }
.pricing-amount { font-size: 2.4rem; font-weight: 800; color: var(--dark-teal); line-height: 1; margin-bottom: 0.25rem; }
.pricing-period { font-size: 1rem; font-weight: 400; color: #888; }
.pricing-sub { font-size: 0.85rem; color: #888; margin-bottom: 1.25rem; }
.pricing-divider { border: none; border-top: 1.5px solid var(--light-gray); margin-bottom: 1.25rem; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.pricing-features li { font-size: 0.93rem; color: #444; display: flex; align-items: flex-start; gap: 0.5rem; }
.pcheck { color: var(--berry-red); font-weight: 700; flex-shrink: 0; }
.pricing-note { text-align: center; color: #888; font-size: 0.9rem; margin-top: 2rem; }

/* ============================================================
   WAITLIST CTA
   ============================================================ */
.waitlist-cta { background: var(--berry-red); text-align: center; }
.waitlist-cta h2 { color: var(--white); margin-bottom: 0.75rem; }
.waitlist-cta .sub { color: rgba(255,255,255,0.82); margin-bottom: 2rem; font-size: 1.1rem; }
.waitlist-form { display: flex; gap: 0.75rem; max-width: 480px; margin: 0 auto; flex-wrap: wrap; justify-content: center; }
.waitlist-form input[type="email"] {
  flex: 1;
  min-width: 220px;
  padding: 0.85rem 1.25rem;
  border-radius: 6px;
  border: 2px solid rgba(255,255,255,0.3);
  background: rgba(255,255,255,0.12);
  color: var(--white);
  font-size: 1rem;
  outline: none;
  transition: border-color 0.2s;
}
.waitlist-form input[type="email"]::placeholder { color: rgba(255,255,255,0.55); }
.waitlist-form input[type="email"]:focus { border-color: var(--white); }
.waitlist-form button {
  background: var(--dark-teal);
  color: var(--white);
  border: 2px solid var(--lime);
  padding: 0.85rem 1.75rem;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.waitlist-form button:hover { background: #05272a; }
.form-note { color: rgba(255,255,255,0.65); font-size: 0.85rem; margin-top: 1rem; }
.form-success { display: none; color: var(--lime); font-weight: 700; font-size: 1.1rem; margin-top: 1rem; }

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: var(--dark-teal);
  padding: 2rem 1.25rem;
  text-align: center;
  border-top: 2px solid rgba(212,245,66,0.12);
}
footer p { color: rgba(255,255,255,0.45); font-size: 0.9rem; }

/* ============================================================
   INNER PAGE HERO
   ============================================================ */
.page-hero {
  background: var(--dark-teal);
  padding: 70px 0 60px;
  text-align: center;
}
.page-hero h1 { color: var(--white); }
.page-hero h1 span { color: var(--lime); }
.page-hero p { color: rgba(255,255,255,0.7); max-width: 560px; margin: 1rem auto 0; font-size: 1.1rem; }

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-block { padding: 70px 0; }
.about-block:nth-child(even) { background: var(--off-white); }
.about-block h2 { color: var(--dark-teal); margin-bottom: 1rem; }
.about-block p  { color: #444; max-width: 720px; }
.about-quote {
  background: var(--dark-teal);
  padding: 70px 0;
  text-align: center;
}
.about-quote blockquote {
  max-width: 680px;
  margin: 0 auto;
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.4;
}
.about-quote blockquote span { color: var(--lime); }

/* ============================================================
   TEAM PAGE
   ============================================================ */
.team-section { background: var(--off-white); }
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.team-card {
  background: var(--white);
  border-radius: 14px;
  padding: 2.5rem 2rem;
  text-align: center;
  border: 1.5px solid var(--light-gray);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.team-card:hover { border-color: var(--berry-red); box-shadow: 0 6px 24px rgba(220,20,60,0.09); }
.team-avatar {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 1.25rem;
  display: block;
  border: 3px solid var(--light-gray);
}
.team-avatar-placeholder {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  border: 3px solid var(--light-gray);
}
.team-card.wanwei .team-avatar-placeholder { background: #e8f5f5; }
.team-card.benny  .team-avatar-placeholder { background: #e8f0ff; }
.team-card.aira   .team-avatar-placeholder { background: #fff0f3; }
.team-name  { font-size: 1.3rem; font-weight: 800; color: var(--dark-teal); margin-bottom: 0.25rem; }
.team-role  { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.8px; color: var(--berry-red); margin-bottom: 0.75rem; }
.team-bio   { color: #555; font-size: 0.95rem; }

.team-socials { display: flex; gap: 1rem; justify-content: center; margin-top: 1rem; flex-wrap: wrap; }
.team-social {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  color: var(--dark-teal);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  opacity: 0.65;
  transition: opacity 0.2s;
}
.team-social:hover { opacity: 1; color: var(--berry-red); }

.join-cta { background: var(--dark-teal); text-align: center; padding: 80px 0; }
.join-cta h2 { color: var(--white); margin-bottom: 0.75rem; }
.join-cta p  { color: rgba(255,255,255,0.7); margin-bottom: 2rem; }

/* ============================================================
   FAQ PAGE
   ============================================================ */
.faq-section { background: var(--off-white); }
.faq-section h2 { margin-bottom: 0.5rem; }
.faq-section .faq-sub { color: #555; margin-bottom: 3rem; }
.faq-list { display: flex; flex-direction: column; gap: 1rem; max-width: 780px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1.5px solid var(--light-gray);
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--berry-red); }
.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark-teal);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-family: var(--font);
}
.faq-question .icon {
  min-width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--off-white);
  border: 1.5px solid var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--berry-red);
  transition: transform 0.25s;
}
.faq-item.open .faq-question .icon { transform: rotate(45deg); background: var(--berry-red); color: var(--white); border-color: var(--berry-red); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.25s;
  padding: 0 1.5rem;
  color: #555;
  font-size: 0.97rem;
  line-height: 1.7;
}
.faq-item.open .faq-answer { max-height: 400px; padding: 0 1.5rem 1.25rem; }

/* ============================================================
   BLOG INDEX
   ============================================================ */
.blog-section { background: var(--off-white); }
.blog-section h2 { margin-bottom: 0.5rem; }
.blog-section .blog-sub { color: #555; margin-bottom: 3rem; }

.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2rem; }

.blog-card {
  background: var(--white);
  border: 1.5px solid var(--light-gray);
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.blog-card:hover { border-color: var(--berry-red); box-shadow: 0 6px 24px rgba(220,20,60,0.09); transform: translateY(-3px); }
.blog-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.blog-card-tag { font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--berry-red); margin-bottom: 0.6rem; }
.blog-card h3 { font-size: 1.1rem; color: var(--dark-teal); margin-bottom: 0.6rem; line-height: 1.35; }
.blog-card p { font-size: 0.9rem; color: #666; flex: 1; line-height: 1.6; }
.blog-card-footer { padding: 1rem 1.5rem; border-top: 1px solid var(--light-gray); font-size: 0.8rem; color: #999; display: flex; justify-content: space-between; }
.blog-card-footer .read-more { color: var(--berry-red); font-weight: 600; }

.hub-card { grid-column: 1 / -1; flex-direction: row; align-items: stretch; }
.hub-card .blog-card-body { padding: 2rem; }
.hub-card h3 { font-size: 1.4rem; }
@media (max-width: 600px) { .hub-card { flex-direction: column; } }

/* ============================================================
   BLOG ARTICLE
   ============================================================ */
.article-hero { background: var(--dark-teal); padding: 70px 0 60px; }
.article-hero .article-tag { font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--lime); margin-bottom: 1rem; }
.article-hero h1 { color: var(--white); max-width: 760px; margin-bottom: 1.25rem; }
.article-meta { color: rgba(255,255,255,0.55); font-size: 0.9rem; display: flex; gap: 1.5rem; flex-wrap: wrap; }

.article-body { background: var(--white); padding: 60px 0; }
.article-content { max-width: 720px; margin: 0 auto; }
.article-content p { color: #333; font-size: 1.05rem; line-height: 1.8; margin-bottom: 1.5rem; }
.article-content h2 { color: var(--dark-teal); font-size: 1.5rem; margin: 2.5rem 0 1rem; }
.article-content h3 { color: var(--dark-teal); font-size: 1.15rem; margin: 2rem 0 0.75rem; }
.article-content strong { color: var(--dark-teal); }
.article-content em { font-style: italic; }
.article-content ul, .article-content ol { margin: 0 0 1.5rem 1.5rem; color: #333; font-size: 1.05rem; line-height: 1.8; }
.article-content li { margin-bottom: 0.4rem; }
.article-content blockquote { border-left: 4px solid var(--berry-red); padding: 0.5rem 1.25rem; margin: 1.5rem 0; color: #555; font-style: italic; background: var(--off-white); border-radius: 0 6px 6px 0; }
.article-content hr { border: none; border-top: 2px solid var(--light-gray); margin: 2.5rem 0; }

.article-cta { background: var(--berry-red); text-align: center; padding: 60px 0; }
.article-cta h2 { color: var(--white); margin-bottom: 0.75rem; }
.article-cta p { color: rgba(255,255,255,0.8); margin-bottom: 1.75rem; }

.article-nav { background: var(--off-white); padding: 40px 0; border-top: 1px solid var(--light-gray); }
.article-nav-inner { max-width: 720px; margin: 0 auto; display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.article-nav a { color: var(--berry-red); text-decoration: none; font-weight: 600; font-size: 0.9rem; display: flex; align-items: center; gap: 0.4rem; }
.article-nav a:hover { text-decoration: underline; }
.spoke-links { background: var(--dark-teal); padding: 50px 0; }
.spoke-links h3 { color: var(--lime); margin-bottom: 1.5rem; font-size: 1rem; text-transform: uppercase; letter-spacing: 1px; }
.spoke-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 0.75rem; }
.spoke-list a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 0.95rem; display: flex; align-items: center; gap: 0.5rem; transition: color 0.2s; }
.spoke-list a:hover { color: var(--lime); }
.spoke-list a .num { color: var(--berry-red); font-weight: 700; font-size: 0.85rem; min-width: 20px; }
