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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Inter', 'Segoe UI', sans-serif;
  background: #fff;
  color: #000;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  min-height: 100dvh;
  padding-bottom: 72px;
}

.container {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

.hero {
  padding: 32px 0 24px;
  text-align: center;
}

.hero-image {
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 20px;
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.hero h1 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 0;
}

.handle {
  font-size: 15px;
  color: #999;
  margin-bottom: 4px;
}

.bio {
  font-size: 15px;
  color: #666;
  margin-bottom: 16px;
}

.social-row {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
}

.social-pill {
  color: #bbb;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s;
}

.social-pill:hover {
  color: #000;
}

.about-text {
  margin-bottom: 20px;
}

.about-text p {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.book-call-hero {
  display: block;
  width: 100%;
  padding: 14px;
  background: #000;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 10px;
  text-align: center;
  transition: opacity 0.15s;
}

.book-call-hero:hover {
  opacity: 0.85;
}

.press-strip {
  padding: 20px 0;
  text-align: center;
}

.press-label {
  font-size: 11px;
  font-weight: 500;
  color: #ccc;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}

.press-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 24px;
  row-gap: 10px;
  flex-wrap: wrap;
  max-width: 280px;
  margin: 0 auto;
}

.press-logo {
  color: #d0d0d0;
  flex-shrink: 0;
}

.impact-section {
  padding: 24px 0;
}

.impact-item {
  font-size: 18px;
  font-weight: 600;
  color: #000;
  line-height: 1.3;
  padding: 20px 0;
  text-align: center;
  border-bottom: 1px solid #f0f0f0;
}

.impact-item:first-child {
  border-top: 1px solid #f0f0f0;
}

.writing-section {
  padding: 8px 0 24px;
  text-align: center;
}

.section-heading {
  font-size: 13px;
  font-weight: 600;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 14px;
}

.writing-grid {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.writing-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 16px;
  background: #f7f7f7;
  border: none;
  border-radius: 12px;
  transition: background 0.15s;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
}

.writing-card:hover {
  background: #f0f0f0;
}

.writing-card-title {
  font-size: 14px;
  font-weight: 600;
  color: #000;
  line-height: 1.4;
}

.writing-card-arrow {
  color: #ccc;
  font-size: 18px;
  flex-shrink: 0;
  transition: color 0.15s;
}

.writing-card:hover .writing-card-arrow {
  color: #999;
}

.bottom-cta {
  padding: 32px 0;
  text-align: center;
}

.bottom-cta-text {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 16px;
}

.book-call-bottom {
  display: block;
  width: 100%;
  padding: 14px;
  background: #000;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 10px;
  text-align: center;
  transition: opacity 0.15s;
}

.book-call-bottom:hover {
  opacity: 0.85;
}

footer {
  padding: 20px 0 24px;
  text-align: center;
}

footer a {
  font-size: 13px;
  color: #ccc;
  display: block;
  margin-bottom: 4px;
  transition: color 0.15s;
}

footer a:hover {
  color: #999;
}

footer p {
  font-size: 12px;
  color: #ddd;
}

.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px 16px;
  padding-bottom: max(10px, env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid #f0f0f0;
  z-index: 100;
  display: flex;
  justify-content: center;
}

.sticky-cta-button {
  display: block;
  width: 100%;
  max-width: 480px;
  padding: 12px;
  background: #000;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  border-radius: 10px;
  text-align: center;
  transition: opacity 0.15s;
}

.sticky-cta-button:hover {
  opacity: 0.85;
}

.fade-in {
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

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

.article-overlay {
  position: fixed;
  inset: 0;
  background: #fff;
  z-index: 200;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.article-overlay.active {
  transform: translateY(0);
}

.article-header {
  position: sticky;
  top: 0;
  display: flex;
  justify-content: flex-end;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1;
}

.article-close {
  background: #f0f0f0;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 20px;
  color: #666;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}

.article-close:hover {
  background: #e0e0e0;
}

.article-body {
  max-width: 480px;
  margin: 0 auto;
  padding: 0 20px 80px;
}

.article-body h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 24px;
}

.article-body p {
  font-size: 16px;
  color: #333;
  line-height: 1.8;
  margin-bottom: 20px;
}

.article-body p:last-child {
  margin-bottom: 0;
}

body.article-open {
  overflow: hidden;
}

@media (min-width: 768px) {
  .container {
    max-width: 520px;
  }

  .hero {
    padding: 40px 0 28px;
  }

  .impact-item br {
    display: none;
  }

  .press-logos {
    max-width: none;
  }
}
