/* ══════════════════════════════════════════════════════════
   HOME PAGE
═══════════════════════════════════════════════════════════ */

/* ─── HERO ───────────────────────────────────── */
.hero { padding: 100px 0 0; position: relative; }
.hero .container { position: relative; }

.hero-tag {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 48px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-tag::before { content: ''; width: 40px; height: 1px; background: var(--accent); }
.hero-tag .blink {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: blink 2s infinite;
}
@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

.manifesto {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(56px, 9vw, 144px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--ink);
  max-width: 14ch;
  margin-bottom: 56px;
  font-variation-settings: 'opsz' 72;
}
.manifesto em {
  font-style: normal;
  font-weight: 600;
  color: var(--accent);
  display: inline-block;
}

.hero-deck {
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 60ch;
  margin-bottom: 48px;
  font-weight: 300;
}
.hero-deck strong { color: var(--ink); font-weight: 500; }

.hero-actions {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.hero-image-wrap {
  background: var(--bg);
  padding: 0 0 0;
  line-height: 0;
}
.hero-image {
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  background: transparent;
  line-height: 0;
  filter: drop-shadow(0 -8px 32px rgba(0, 0, 0, 0.08));
}
.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-tag { animation: fadeUp 0.8s ease-out both; animation-delay: 0.05s; }
.manifesto { animation: fadeUp 0.9s ease-out both; animation-delay: 0.15s; }
.hero-deck { animation: fadeUp 0.9s ease-out both; animation-delay: 0.4s; }
.hero-actions { animation: fadeUp 0.9s ease-out both; animation-delay: 0.55s; }
.hero-image { animation: fadeUp 1s ease-out both; animation-delay: 0.7s; }

/* ─── PAIN ───────────────────────────────────── */
.pain {
  background: var(--ink);
  color: white;
  padding: 140px 0;
  position: relative;
  overflow: hidden;
  margin-top: 0;
}

.pain-eyebrow {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 48px;
}
.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
  margin-bottom: 80px;
}
.pain-card {
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.02);
  transition: all 0.3s;
}
.pain-card:hover {
  border-color: var(--accent-bright);
  background: rgba(162, 28, 175, 0.08);
}
.pain-card-num {
  font-size: 13px;
  font-weight: 500;
  color: var(--accent-bright);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 24px;
}
.pain-card-title {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.015em;
  margin-bottom: 20px;
  color: white;
  line-height: 1.2;
  font-variation-settings: 'opsz' 72;
}
.pain-card-text {
  font-size: 17px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.8);
}
.pain-card-text em {
  font-style: normal;
  font-weight: 500;
  color: white;
}
.pain-conclusion {
  font-family: var(--display);
  font-size: clamp(32px, 4.5vw, 56px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  font-weight: 400;
  max-width: 26ch;
  color: white;
  font-variation-settings: 'opsz' 72;
}
.pain-conclusion em {
  font-style: normal;
  font-weight: 600;
  color: var(--accent-bright);
}

/* ─── PRINCIPLES ─────────────────────────────── */
.principles { padding: 140px 0; background: var(--bg); }

.principles .section-title { max-width: 48ch; }

.principle-list {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--line);
}
.principle {
  display: grid;
  grid-template-columns: 100px 1fr 1fr;
  gap: 60px;
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
  transition: transform 0.2s;
}
.principle:hover { transform: translateX(12px); }
.principle:hover .principle-num { color: var(--accent); }
.principle-num {
  font-family: var(--display);
  font-size: 56px;
  font-weight: 500;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variation-settings: 'opsz' 72;
  font-style: italic;
  transition: color 0.2s;
}
.principle-name {
  font-family: var(--display);
  font-size: 36px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.1;
  font-variation-settings: 'opsz' 72;
}
.principle-name em { font-style: normal; font-weight: 600; color: var(--accent); }
.principle-desc {
  font-size: 18px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.principle-desc strong { color: var(--ink); font-weight: 500; }

/* ─── VIDEO / WORKED EXAMPLE ─────────────────── */
.example {
  padding: 140px 0;
  background: var(--bg-soft);
  border-top: 1px solid var(--line);
}
.example-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-bottom: 80px;
}
.example-intro-text {
  font-family: var(--display);
  font-size: 24px;
  line-height: 1.5;
  color: var(--ink-soft);
  max-width: 55ch;
  font-variation-settings: 'opsz' 72;
}
.example-intro-text em { font-style: normal; font-weight: 600; color: var(--accent); }
.example-intro-meta {
  font-size: 17px;
  color: var(--ink-mid);
  line-height: 1.6;
  max-width: 40ch;
}
.example-intro-meta a {
  color: var(--accent);
  font-weight: 500;
}
.example-intro-meta a:hover { text-decoration: underline; }
.example-image {
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--bg);
}
.example-image .img-slot { height: 100%; border: none; background: var(--bg); }

/* ─── ABOUT THE AUTHOR ───────────────────────── */
.about {
  padding: 100px 0;
  background: var(--bg);
  border-top: 1px solid var(--line);
}
.about-block { max-width: 700px; }
.about-text {
  font-family: var(--display);
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink-soft);
  font-variation-settings: 'opsz' 72;
}
.about-text strong { color: var(--ink); font-weight: 500; }

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 900px) {
  .hero { padding: 60px 0 40px; }
  .pain-grid { grid-template-columns: 1fr; gap: 24px; }
  .pain { padding: 100px 0; }
  .principle { grid-template-columns: 60px 1fr; gap: 24px; padding: 32px 0; }
  .principle-num { font-size: 36px; }
  .principle-name { font-size: 26px; grid-column: 2; margin-bottom: 12px; }
  .principle-desc { grid-column: 2; }
  .principles, .example, .about { padding: 100px 0; }
  .example-intro { grid-template-columns: 1fr; gap: 32px; }
}
