/* ==========================================================================
   DESIGN SYSTEM — CSS VARIABLES
   ========================================================================== */
:root {
  --color-primary: #7C3AED;
  --color-primary-dark: #5B21B6;
  --color-secondary: #F5B942;
  --color-accent-pink: #F472B6;
  --color-background: #FFFFFF;
  --color-surface: #F7F5FC;
  --color-text: #1A1523;
  --color-text-muted: #6B6478;
  --color-text-inverse: #FFFFFF;
  --color-success: #22C55E;
  --color-success-bg: #DCFCE7;
  --color-danger: #E11D48;
  --color-border: #E7E3F0;

  --hero-gradient: linear-gradient(135deg, #0F0B1E 0%, #241645 55%, #3B1E6E 100%);
  --hero-gradient-customer: linear-gradient(135deg, #1C0F2E 0%, #3B1550 55%, #6B1E5E 100%);

  --border-radius: 16px;
  --border-radius-sm: 10px;
  --border-radius-lg: 24px;
  --shadow-card: 0 10px 30px rgba(17, 12, 34, 0.08);
  --shadow-modal: 0 25px 60px rgba(10, 6, 24, 0.35);
  --container-width: 1200px;
  --font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-family);
  color: var(--color-text);
  background: var(--color-background);
  line-height: 1.5;
  overflow-x: hidden;
}

body.modal-open { overflow: hidden; }

h1, h2, h3, h4, p, ol, ul, dl, dd, figure { margin: 0; }

img { max-width: 100%; display: block; }

button { font-family: inherit; cursor: pointer; }

a { color: inherit; }

ol, ul { padding: 0; list-style: none; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-primary);
  color: #fff;
  padding: 12px 20px;
  z-index: 1000;
  border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--color-secondary);
  outline-offset: 2px;
}

/* ==========================================================================
   LAYOUT COMPONENTS
   ========================================================================== */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow { max-width: 760px; }

.section { padding: 72px 0; }
.section-alt { background: var(--color-surface); }

.section-heading {
  font-size: clamp(1.75rem, 2.5vw, 2.25rem);
  font-weight: 700;
  margin-bottom: 40px;
  text-align: center;
  line-height: 1.3;
}

.section-disclaimer {
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.875rem;
  margin-top: -24px;
  margin-bottom: 32px;
}

.section-highlight {
  text-align: center;
  margin-top: 32px;
  font-weight: 600;
  color: var(--color-primary-dark);
}

.section-cta { display: flex; justify-content: center; margin-top: 40px; }

/* ==========================================================================
   BUTTONS
   ========================================================================== */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  text-decoration: none;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.button:hover { transform: translateY(-1px); }
.button:active { transform: translateY(0); }

.button-primary {
  background: var(--color-primary);
  color: #fff;
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
}
.button-primary:hover { background: var(--color-primary-dark); }

.button-secondary {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-primary);
}
.button-secondary:hover { background: rgba(124, 58, 237, 0.08); }

.button-large { padding: 18px 36px; font-size: 1.05rem; }
.button-full { width: 100%; }

/* Path switcher buttons in header */
.path-btn {
  padding: 10px 20px;
  font-size: 0.85rem;
  background: transparent;
  color: var(--color-text-muted);
  border-color: var(--color-border);
}
.path-btn-active {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
  box-shadow: 0 6px 16px rgba(124, 58, 237, 0.3);
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--color-border);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 14px;
  padding-bottom: 14px;
  flex-wrap: wrap;
}

.header-brand { display: flex; flex-direction: column; line-height: 1.2; }

.logo { font-weight: 800; font-size: 1.15rem; letter-spacing: -0.01em; }
.logo-caption { font-size: 0.72rem; color: var(--color-text-muted); }

.header-nav { display: flex; align-items: center; }

.nav-link {
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  padding: 8px 12px;
  border-radius: var(--border-radius-sm);
}
.nav-link:hover { background: var(--color-surface); color: var(--color-text); }

.path-switcher { display: flex; gap: 8px; }

/* ==========================================================================
   BADGE
   ========================================================================== */
.badge {
  display: inline-flex;
  align-items: center;
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.badge-prototype {
  background: rgba(245, 185, 66, 0.18);
  color: #B67A0A;
  margin-bottom: 20px;
}

.badge-success {
  background: var(--color-success-bg);
  color: #15803D;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  color: var(--color-text-inverse);
  padding: 80px 0 96px;
}
.hero-creator { background: var(--hero-gradient); }
.hero-customer { background: var(--hero-gradient-customer); }

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

.hero-heading {
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
}

.hero-subheading {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 16px;
  max-width: 52ch;
}

.hero-note {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 32px;
  max-width: 54ch;
}

.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero .button-secondary { color: #fff; border-color: rgba(255, 255, 255, 0.4); }
.hero .button-secondary:hover { background: rgba(255, 255, 255, 0.1); }

.hero-visual { display: flex; justify-content: center; }

/* ==========================================================================
   CARD (generic)
   ========================================================================== */
.card {
  background: #fff;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-card);
}

/* ==========================================================================
   AUTHOR CARD (creator hero)
   ========================================================================== */
.author-card {
  width: 100%;
  max-width: 360px;
  padding: 24px;
  position: relative;
  color: var(--color-text);
}

.author-card-badge {
  position: absolute;
  top: -14px;
  left: 24px;
}

.portrait-placeholder {
  width: 100%;
  height: 200px;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.portrait-gradient-1 { background: linear-gradient(135deg, #7C3AED, #F472B6); }

.portrait-initials {
  font-size: 2.5rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.05em;
}

.author-name { font-size: 1.25rem; font-weight: 700; margin-bottom: 4px; }
.author-category { color: var(--color-text-muted); font-size: 0.9rem; margin-bottom: 12px; }

.author-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}
.author-rating { color: var(--color-secondary); font-weight: 700; }

.author-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.author-price { font-weight: 700; }

.play-button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.play-button:hover { background: var(--color-primary-dark); }
.play-button-large { width: 72px; height: 72px; font-size: 1.6rem; }
.play-button.is-playing { background: var(--color-success); }

/* ==========================================================================
   STEPS
   ========================================================================== */
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.steps-4 { grid-template-columns: repeat(4, 1fr); }

.step-card {
  padding: 28px 20px;
  text-align: center;
  position: relative;
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.step-icon { display: block; font-size: 1.75rem; margin-bottom: 12px; }
.step-title { font-size: 1rem; font-weight: 700; margin-bottom: 8px; }
.step-text { font-size: 0.875rem; color: var(--color-text-muted); }

/* ==========================================================================
   ADVANTAGES
   ========================================================================== */
.advantages-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 800px;
  margin: 0 auto 40px;
}

.advantage-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  background: #fff;
  padding: 16px 20px;
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-card);
}

.advantage-icon { color: var(--color-success); font-weight: 700; }

.finance-highlight {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-primary-dark);
  max-width: 640px;
  margin: 0 auto 32px;
}

.income-example {
  max-width: 480px;
  margin: 0 auto;
  padding: 28px;
}
.income-example-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 16px; }
.income-example-grid { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.income-row { display: flex; justify-content: space-between; font-size: 0.95rem; }
.income-row dt { color: var(--color-text-muted); }
.income-row dd { font-weight: 700; margin: 0; }
.income-disclaimer {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  border-top: 1px solid var(--color-border);
  padding-top: 12px;
}

/* ==========================================================================
   DASHBOARD MOCKUP
   ========================================================================== */
.dashboard {
  max-width: 720px;
  margin: 0 auto;
  padding: 32px;
}

.dashboard-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}

.avatar-placeholder {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.avatar-gradient-1 { background: linear-gradient(135deg, #7C3AED, #F472B6); }
.avatar-gradient-2 { background: linear-gradient(135deg, #F472B6, #F5B942); }
.avatar-gradient-3 { background: linear-gradient(135deg, #5B21B6, #7C3AED); }
.avatar-gradient-4 { background: linear-gradient(135deg, #F5B942, #7C3AED); }
.avatar-gradient-5 { background: linear-gradient(135deg, #22C55E, #7C3AED); }
.avatar-gradient-6 { background: linear-gradient(135deg, #F472B6, #5B21B6); }

.dashboard-name { font-size: 1.15rem; font-weight: 700; margin-bottom: 4px; }

.dashboard-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
}
.dashboard-stat {
  background: var(--color-surface);
  border-radius: var(--border-radius-sm);
  padding: 16px;
  text-align: center;
}
.dashboard-stat-label {
  display: block;
  font-size: 0.78rem;
  color: var(--color-text-muted);
  margin-bottom: 6px;
}
.dashboard-stat-value { font-size: 1.2rem; font-weight: 700; }

.dashboard-progress { margin-bottom: 28px; }
.dashboard-progress-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}
.progress-bar {
  height: 10px;
  border-radius: 999px;
  background: var(--color-border);
  overflow: hidden;
}
.progress-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--color-primary), var(--color-accent-pink));
  border-radius: 999px;
}

.dashboard-orders { margin-bottom: 24px; }
.dashboard-orders-title { font-size: 0.95rem; font-weight: 700; margin-bottom: 12px; }
.orders-list { display: flex; flex-direction: column; gap: 10px; }
.order-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  padding: 12px 16px;
  background: var(--color-surface);
  border-radius: var(--border-radius-sm);
}
.order-amount { font-weight: 700; color: var(--color-primary-dark); }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card { padding: 24px; }

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.testimonial-name { font-weight: 700; font-size: 0.95rem; }
.testimonial-role { font-size: 0.8rem; color: var(--color-text-muted); }
.testimonial-text { font-size: 0.9rem; margin-bottom: 16px; color: var(--color-text); }
.testimonial-result {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--color-success);
}

/* ==========================================================================
   VIDEO CARD / PLACEHOLDER
   ========================================================================== */
.video-card {
  width: 100%;
  max-width: 360px;
  overflow: hidden;
  padding: 0;
}

.video-placeholder {
  position: relative;
  aspect-ratio: 16 / 10;
  background: linear-gradient(135deg, #3B1E6E, #6B1E5E);
  display: flex;
  align-items: center;
  justify-content: center;
}

.video-placeholder-large { aspect-ratio: 16 / 9; border-radius: var(--border-radius-sm); margin-bottom: 16px; }

.video-status-badge { position: absolute; top: 14px; right: 14px; }

.video-card-body { padding: 20px; }
.video-card-row { font-size: 0.9rem; margin-bottom: 6px; }

.modal-preview-author { font-weight: 600; margin-bottom: 8px; }
.modal-preview-note { font-size: 0.82rem; color: var(--color-text-muted); }

/* ==========================================================================
   SHOWCASE GRID
   ========================================================================== */
.showcase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.showcase-card { overflow: hidden; padding: 0; }

.showcase-image {
  aspect-ratio: 16 / 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.showcase-emoji { font-size: 2.75rem; }

.showcase-gradient-1 { background: linear-gradient(135deg, #F5B942, #F472B6); }
.showcase-gradient-2 { background: linear-gradient(135deg, #F472B6, #7C3AED); }
.showcase-gradient-3 { background: linear-gradient(135deg, #7C3AED, #22C55E); }
.showcase-gradient-4 { background: linear-gradient(135deg, #5B21B6, #F472B6); }
.showcase-gradient-5 { background: linear-gradient(135deg, #F5B942, #7C3AED); }
.showcase-gradient-6 { background: linear-gradient(135deg, #3B1E6E, #22C55E); }

.showcase-body { padding: 20px; }
.showcase-title { font-size: 1.1rem; font-weight: 700; margin-bottom: 8px; }
.showcase-desc { font-size: 0.85rem; color: var(--color-text-muted); margin-bottom: 12px; }
.showcase-author { font-size: 0.85rem; font-weight: 600; margin-bottom: 12px; }
.showcase-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 16px;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */
.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-sm);
  overflow: hidden;
}
.faq-item h3 { margin: 0; }

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: none;
  border: none;
  padding: 18px 20px;
  text-align: left;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--color-text);
}
.faq-question:hover { background: var(--color-surface); }

.faq-icon {
  flex-shrink: 0;
  transition: transform 0.2s ease;
  color: var(--color-primary);
  font-weight: 400;
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); }

.faq-answer {
  padding: 0 20px 18px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

/* ==========================================================================
   FINAL CTA
   ========================================================================== */
.final-cta { text-align: center; }
.final-cta-creator {
  background: var(--hero-gradient);
  color: #fff;
}
.final-cta-customer {
  background: var(--hero-gradient-customer);
  color: #fff;
}
.final-cta-inner { display: flex; flex-direction: column; align-items: center; gap: 20px; max-width: 640px; }
.final-cta-heading { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 800; }
.final-cta-text { color: rgba(255, 255, 255, 0.8); }

/* ==========================================================================
   ABOUT SECTION
   ========================================================================== */
.about-section { text-align: center; }
.about-text { font-size: 1.05rem; color: var(--color-text-muted); }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
  background: #14101F;
  color: rgba(255, 255, 255, 0.8);
  padding: 48px 0;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.footer-brand { max-width: 360px; }
.logo-footer { color: #fff; display: block; margin-bottom: 8px; }
.footer-desc { font-size: 0.85rem; margin-bottom: 12px; color: rgba(255, 255, 255, 0.6); }
.footer-email { font-size: 0.85rem; color: rgba(255, 255, 255, 0.6); }

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-link {
  font-size: 0.85rem;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
}
.footer-link:hover { color: #fff; }

/* ==========================================================================
   MODAL
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 11, 30, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 1000;
}
.modal-overlay[hidden] { display: none; }

.modal {
  background: #fff;
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-modal);
  width: 100%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  padding: 36px;
  position: relative;
}

.modal-preview { max-width: 640px; text-align: center; }

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--color-surface);
  color: var(--color-text);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-close:hover { background: var(--color-border); }

.modal-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 24px;
  padding-right: 32px;
}

.modal-success {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.modal-success-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-success-bg);
  color: var(--color-success);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
}
.modal-success .modal-title { margin-bottom: 0; }

/* ==========================================================================
   FORMS
   ========================================================================== */
.form-field { margin-bottom: 18px; display: flex; flex-direction: column; gap: 6px; }

.form-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text);
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="url"],
.form-field select,
.form-field textarea {
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: var(--border-radius-sm);
  font-family: inherit;
  font-size: 0.92rem;
  color: var(--color-text);
  background: #fff;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--color-primary);
}

.form-field textarea { resize: vertical; }

.form-field-checkbox {
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.form-field-checkbox label { font-weight: 500; }

.form-error {
  font-size: 0.78rem;
  color: var(--color-danger);
  min-height: 1em;
}

.form-field.has-error input,
.form-field.has-error select,
.form-field.has-error textarea {
  border-color: var(--color-danger);
}

/* ==========================================================================
   TOAST
   ========================================================================== */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  background: var(--color-text);
  color: #fff;
  padding: 14px 24px;
  border-radius: var(--border-radius-sm);
  font-size: 0.9rem;
  box-shadow: var(--shadow-modal);
  z-index: 1100;
  opacity: 0;
  transition: opacity 0.2s ease, transform 0.2s ease;
  max-width: 90vw;
}
.toast[hidden] { display: none; }
.toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { justify-content: flex-start; }
  .steps { grid-template-columns: repeat(3, 1fr); }
  .steps-4 { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .showcase-grid { grid-template-columns: repeat(2, 1fr); }
  .dashboard-stats { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .header-inner { flex-direction: column; align-items: flex-start; }
  .header-nav { order: 3; }
  .path-switcher { width: 100%; order: 2; }
  .path-btn { flex: 1; }

  .section { padding: 56px 0; }

  .steps,
  .steps-4 { grid-template-columns: 1fr; }

  .advantages-list { grid-template-columns: 1fr; }

  .testimonial-grid,
  .showcase-grid { grid-template-columns: 1fr; }

  .dashboard-stats { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; }

  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .button { width: 100%; }
}

@media (max-width: 480px) {
  .modal { padding: 24px; max-width: 100%; }
  .hero { padding: 56px 0 64px; }
  .author-card,
  .video-card { max-width: 100%; }
}
