/* ═══════════════════════════════════════════════════════════════════
   MAILINGPIGEON - WW1 STORYTELLING TEMPLATE
   Light, whimsical, engaging animations
   ═══════════════════════════════════════════════════════════════════ */

/* ─────────────────────────────────────────────────────────────────
   CSS VARIABLES
   ───────────────────────────────────────────────────────────────── */
:root {
  /* WW1 Vintage Palette */
  --sepia-dark: #3d2817;
  --sepia-brown: #5c4033;
  --sepia-medium: #8b6f47;
  --sepia-light: #d4c4a8;
  --sepia-cream: #f5f1e8;
  --paper-white: #faf8f3;
  --ink-black: #1a1a1a;
  --red-accent: #c41e3a;
  --blue-accent: #1e3a5f;
  --gold-accent: #d4af37;
  
  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'IBM Plex Mono', 'Courier New', monospace;
  --font-vintage: 'Special Elite', monospace;
  
  /* Spacing */
  --section-padding: clamp(60px, 12vh, 120px);
  
  /* Animation */
  --ease-vintage: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-smooth: cubic-bezier(0.23, 1, 0.32, 1);
}

/* ─────────────────────────────────────────────────────────────────
   RESET & BASE
   ───────────────────────────────────────────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-body);
  background: var(--paper-white);
  color: var(--ink-black);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Paper texture overlay */
.paper-overlay {
  position: fixed;
  inset: 0;
  background-image: 
    url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><filter id="noise"><feTurbulence type="fractalNoise" baseFrequency="0.9" numOctaves="4" stitchTiles="stitch"/></filter><rect width="100%" height="100%" filter="url(%23noise)" opacity="0.03"/></svg>'),
    radial-gradient(circle at 20% 50%, rgba(139, 111, 71, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(139, 111, 71, 0.03) 0%, transparent 50%);
  pointer-events: none;
  z-index: 1;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

::selection {
  background: var(--gold-accent);
  color: var(--ink-black);
}

/* ─────────────────────────────────────────────────────────────────
   LAYOUT
   ───────────────────────────────────────────────────────────────── */
.section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--section-padding) 24px;
  z-index: 2;
}

.container {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}

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

/* ─────────────────────────────────────────────────────────────────
   HERO SECTION
   ───────────────────────────────────────────────────────────────── */
.hero {
  text-align: center;
  background: linear-gradient(180deg, var(--paper-white) 0%, var(--sepia-cream) 100%);
  position: relative;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(250, 248, 243, 0.7) 0%, rgba(250, 248, 243, 0.9) 100%);
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.hero-stamp {
  display: inline-block;
  padding: 8px 20px;
  border: 3px solid var(--red-accent);
  border-radius: 0;
  transform: rotate(-5deg);
  margin-bottom: 40px;
  background: var(--paper-white);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
}

.stamp-text {
  font-family: var(--font-vintage);
  font-size: 0.875rem;
  font-weight: bold;
  letter-spacing: 0.2em;
  color: var(--red-accent);
  text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--sepia-dark);
  margin-bottom: 2rem;
}

.title-line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
}

/* Cross-out + replace (Wabi.ai style beat) */
.crossout-swap {
  position: relative;
  display: inline-block;
  padding: 0 0.05em;
  margin: 0 0.1em;
}

.crossout-old {
  display: inline-block;
}

.crossout-new {
  display: inline-block;
  margin-left: 0.35em;
  opacity: 0;
  transform: translateY(6px);
  color: var(--red-accent);
  font-weight: 700;
}

.crossout-swap--hero .crossout-new {
  color: var(--blue-accent);
}

.crossout-line {
  position: absolute;
  left: -3%;
  top: 55%;
  width: 106%;
  height: 0.6em;
  transform: translateY(-50%);
  overflow: visible;
}

.crossout-line path {
  fill: none;
  stroke: var(--red-accent);
  stroke-width: 3.5;
  stroke-linecap: round;
  stroke-dasharray: 140;
  stroke-dashoffset: 140;
}

.crossout-swap--hero .crossout-line path {
  stroke: var(--blue-accent);
}

/* Underline swap effect */
.underline-swap {
  position: relative;
  display: inline-block;
  margin: 0 0.1em;
}

.underline-old {
  display: inline-block;
  text-decoration: underline;
  text-decoration-color: var(--sepia-medium);
  text-decoration-thickness: 2px;
}

.underline-new {
  display: inline-block;
  margin-left: 0.35em;
  opacity: 0;
  transform: translateY(6px);
  color: var(--blue-accent);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--blue-accent);
  text-decoration-thickness: 3px;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--sepia-medium);
  font-style: italic;
}

.typewriter-text {
  display: inline-block;
  border-right: 2px solid var(--sepia-dark);
  animation: blink-cursor 1s step-end infinite;
}

@keyframes blink-cursor {
  0%, 100% { border-color: var(--sepia-dark); }
  50% { border-color: transparent; }
}

/* Flying pigeon animation */
.pigeon-flying {
  position: absolute;
  top: 20%;
  right: -100px;
  width: 150px;
  height: 112px;
  color: var(--sepia-dark);
  opacity: 0.6;
  z-index: 0;
}

.pigeon-svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.1));
}

.pigeon-path {
  fill: currentColor;
  opacity: 0;
}

.flying-pigeon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.2));
}

/* Bullet hole overlay */
.failure-wrap {
  position: relative;
}

.bullet-hole {
  position: absolute;
  right: -30px;
  top: -30px;
  width: clamp(90px, 14vw, 140px);
  height: auto;
  opacity: 0;
  transform: rotate(12deg) scale(0.7);
  filter: drop-shadow(4px 6px 0 rgba(0, 0, 0, 0.08));
  pointer-events: none;
  z-index: 3;
}

@media (max-width: 768px) {
  .bullet-hole {
    right: -10px;
    top: -10px;
  }
}

/* ─────────────────────────────────────────────────────────────────
   STORY SECTIONS
   ───────────────────────────────────────────────────────────────── */
.story-line {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.6;
  color: var(--sepia-dark);
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(20px);
}

.story-line.emphasis {
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--sepia-brown);
}

.mission-text {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

#still-flew {
  position: relative;
  z-index: 2;
}

.mission-flyby {
  position: absolute;
  left: 50%;
  top: 72%;
  transform: translate(-50%, -50%);
  width: min(640px, 92vw);
  height: 220px;
  pointer-events: none;
  z-index: 1;
}

.mission-flyby-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: translateX(35%) rotate(6deg) scale(0.92);
  filter: drop-shadow(10px 12px 0 rgba(0, 0, 0, 0.08));
}

@media (max-width: 768px) {
  .mission-flyby {
    top: 78%;
    height: 180px;
  }
}

/* Illustration frame */
.illustration-frame {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  border: 8px solid var(--sepia-brown);
  border-radius: 4px;
  background: var(--paper-white);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.story-image {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0;
  transform: scale(0.95);
}

.image-label {
  position: absolute;
  bottom: 10px;
  right: 10px;
  font-family: var(--font-vintage);
  font-size: 0.75rem;
  color: var(--sepia-medium);
  background: rgba(255, 255, 255, 0.9);
  padding: 4px 8px;
  border-radius: 2px;
}

/* ─────────────────────────────────────────────────────────────────
   CHEZ AMI PORTRAIT
   ───────────────────────────────────────────────────────────────── */
.chez-ami {
  background: var(--sepia-cream);
}

.pigeon-portrait {
  text-align: center;
  margin-bottom: 60px;
}

.portrait-frame {
  position: relative;
  display: inline-block;
  max-width: 400px;
  width: 100%;
  border: none;
  border-radius: 50%;
  background: var(--paper-white);
  padding: 20px;
  box-shadow: 10px 14px 0 rgba(0, 0, 0, 0.08);
  margin-bottom: 20px;
}

/* subtle “paper edge” ring (replaces the dark border) */
.portrait-frame::before {
  content: '';
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  border: 2px solid rgba(92, 64, 51, 0.18);
  pointer-events: none;
}

.pigeon-image {
  width: 100%;
  height: auto;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.9);
}

.portrait-label {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.label-text {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--sepia-dark);
}

.label-subtext {
  font-family: var(--font-vintage);
  font-size: 0.875rem;
  color: var(--sepia-medium);
  letter-spacing: 0.1em;
}

.story-block {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}

.story-text {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  line-height: 1.8;
  color: var(--sepia-dark);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
}

.bullet-points {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 2rem 0;
  align-items: center;
}

.bullet {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--sepia-medium);
  font-weight: 600;
  opacity: 0;
  transform: translateX(-20px);
}

/* ─────────────────────────────────────────────────────────────────
   INJURIES SECTION
   ───────────────────────────────────────────────────────────────── */
.injuries {
  background: linear-gradient(180deg, var(--sepia-cream) 0%, var(--paper-white) 100%);
}

.injury-wrap {
  position: relative;
}

/* Reposition bullet holes for injuries section */
.bullet-hole--injury {
  left: auto;
  top: auto;
  right: auto;
  bottom: auto;
  z-index: 4;
  opacity: 0;
  transform: scale(0.6) rotate(10deg);
}

.bullet-hole--injury-1 {
  position: absolute;
  left: -18px;
  top: -10px;
}

.bullet-hole--injury-2 {
  position: absolute;
  right: -22px;
  top: 38%;
}

.bullet-hole--injury-3 {
  position: absolute;
  left: 14%;
  bottom: -26px;
}

@media (max-width: 768px) {
  .bullet-hole--injury-1 { left: -8px; top: -6px; }
  .bullet-hole--injury-2 { right: -10px; top: 44%; }
  .bullet-hole--injury-3 { left: 6%; bottom: -18px; }
}

.injury-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 60px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.injury-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: rgba(196, 30, 58, 0.05);
  border-left: 4px solid var(--red-accent);
  opacity: 0;
  transform: translateX(-30px);
}

.injury-icon {
  font-size: 1.5rem;
  color: var(--red-accent);
  flex-shrink: 0;
}

.injury-text {
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  color: var(--sepia-dark);
}

.heroic-line {
  text-align: center;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--sepia-dark);
}

.word-reveal {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  margin-right: 0.3em;
}

.word-reveal.highlight {
  color: var(--red-accent);
}

/* ─────────────────────────────────────────────────────────────────
   REASON SECTION
   ───────────────────────────────────────────────────────────────── */
.hospital {
  background: var(--sepia-cream);
  text-align: center;
}

.hospital-frame {
  max-width: 600px;
  margin: 0 auto 40px;
  border: 6px solid var(--sepia-brown);
  border-radius: 4px;
  background: var(--paper-white);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.1);
  overflow: hidden;
}

.hospital-image {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0;
  transform: scale(0.95);
}

.hospital-text {
  max-width: 600px;
  margin: 0 auto;
}

.hospital-line {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.8;
  color: var(--sepia-dark);
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(20px);
}

.hospital-line.emphasis {
  font-weight: 700;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--red-accent);
}

.reason {
  background: var(--paper-white);
  text-align: center;
}

.reason-text {
  max-width: 600px;
  margin: 0 auto;
}

.reason-line {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.8;
  color: var(--sepia-dark);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
}

/* ─────────────────────────────────────────────────────────────────
   TRANSITION SECTION
   ───────────────────────────────────────────────────────────────── */
.transition {
  background: var(--sepia-cream);
}

.transition-text {
  text-align: center;
  margin-bottom: 60px;
}

.transition-line {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--sepia-dark);
  opacity: 0;
  transform: translateY(20px);
}

.failure-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 700px;
  margin: 0 auto;
}

.failure-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px;
  background: rgba(139, 111, 71, 0.1);
  border-left: 3px solid var(--sepia-medium);
  opacity: 0;
  transform: translateX(-20px);
}

.failure-icon {
  font-size: 1.25rem;
  color: var(--sepia-medium);
  flex-shrink: 0;
  margin-top: 2px;
}

.failure-text {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: var(--sepia-dark);
  line-height: 1.6;
}

/* ─────────────────────────────────────────────────────────────────
   PRODUCT INTRO
   ───────────────────────────────────────────────────────────────── */
.product-intro {
  background: linear-gradient(180deg, var(--paper-white) 0%, var(--sepia-cream) 100%);
  text-align: center;
}

.product-logo {
  margin-bottom: 60px;
}

.logo-image {
  max-width: 300px;
  width: 100%;
  height: auto;
  opacity: 0;
  transform: scale(0.9);
}

/* Commando pigeon sidekick */
.product-intro .container {
  position: relative;
}

.product-hero {
  text-align: center;
  margin-bottom: 18px;
}

.product-commando-img {
  width: min(360px, 85vw);
  height: auto;
  opacity: 0;
  transform: translateY(10px) rotate(-4deg) scale(0.96);
  filter: drop-shadow(10px 14px 0 rgba(0, 0, 0, 0.08));
}

/* Wireless + dial “Tune in” */
.radio-widget {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin: 12px auto 34px;
  padding: 12px 14px;
  border: 2px dashed rgba(92, 64, 51, 0.35);
  border-radius: 10px;
  background: rgba(250, 248, 243, 0.65);
  cursor: pointer;
  user-select: none;
  width: fit-content;
  opacity: 0;
  transform: translateY(10px);
}

.radio-widget:focus {
  outline: 3px solid rgba(30, 58, 95, 0.25);
  outline-offset: 4px;
}

.radio-images {
  display: flex;
  align-items: flex-end;
  gap: 10px;
}

.wireless-img {
  width: clamp(140px, 22vw, 220px);
  height: auto;
  filter: drop-shadow(8px 10px 0 rgba(0, 0, 0, 0.08));
}

.dial-img {
  width: clamp(60px, 9vw, 110px); /* about half the wireless */
  height: auto;
  transform-origin: 50% 50%;
  filter: drop-shadow(6px 8px 0 rgba(0, 0, 0, 0.08));
}

.tune-copy {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.tune-label {
  font-family: var(--font-vintage);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: var(--blue-accent);
  text-transform: lowercase;
  animation: tune-wiggle 1.6s ease-in-out infinite;
}

.tune-meta {
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--sepia-medium);
  opacity: 0.9;
}

.radio-widget:hover {
  transform: translateY(8px);
}

.radio-widget.is-playing {
  border-color: rgba(196, 30, 58, 0.4);
}

.radio-widget.is-playing .tune-label {
  color: var(--red-accent);
}

.radio-widget.is-playing .dial-img {
  animation: dial-spin 1.6s linear infinite;
}

@keyframes dial-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes tune-wiggle {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-2px) rotate(-1deg); }
}

.product-mission {
  max-width: 700px;
  margin: 0 auto;
}

.mission-line {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--sepia-dark);
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
}

.principles {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.principle {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  line-height: 1.8;
  color: var(--sepia-dark);
  opacity: 0;
  transform: translateY(20px);
}

.principle.highlight {
  font-weight: 700;
  color: var(--blue-accent);
}

/* ─────────────────────────────────────────────────────────────────
   CAPABILITIES GRID
   ───────────────────────────────────────────────────────────────── */
.capabilities {
  background: #ffffff;
  position: relative;
  overflow: visible;
}

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  text-align: center;
  color: var(--sepia-dark);
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(20px);
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: 30px;
}

.standing-pigeon-wrapper {
  position: absolute;
  right: -90px; /* pushes outside container margin */
  top: 140px;
  width: clamp(220px, 22vw, 340px);
  opacity: 0;
  transform: translateX(30px);
  pointer-events: none;
  z-index: 3;
  background: transparent;
  isolation: isolate;
}

.standing-pigeon-gif {
  width: 100%;
  height: auto;
  display: block;
  filter: none;
  background: transparent;
  /* If the GIF has a white matte, this makes the “box” effectively disappear */
  mix-blend-mode: multiply;
}

@media (max-width: 1024px) {
  .capability-grid {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }

  .standing-pigeon-wrapper {
    right: -60px;
    top: 120px;
  }
}

@media (max-width: 768px) {
  .capability-grid {
    grid-template-columns: 1fr;
  }

  .standing-pigeon-wrapper {
    position: relative;
    right: auto;
    top: auto;
    margin: 30px auto 0;
    transform: translateY(10px);
    width: min(260px, 80vw);
  }
}

.capability-card {
  background: var(--sepia-cream);
  border: 3px solid var(--sepia-medium);
  border-radius: 8px;
  padding: 30px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
}

.capability-card:hover {
  transform: translateY(-5px);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.1);
}

.card-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
}

.card-title {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--sepia-dark);
  margin-bottom: 8px;
}

.card-text {
  font-family: var(--font-body);
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  color: var(--sepia-medium);
  line-height: 1.6;
}

/* ─────────────────────────────────────────────────────────────────
   COMPARISON SECTION
   ───────────────────────────────────────────────────────────────── */
.comparison {
  background: var(--sepia-cream);
}

.comparison-text {
  max-width: 700px;
  margin: 0 auto;
}

.comparison-line {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 600;
  text-align: center;
  color: var(--sepia-dark);
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
}

.resistance-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.resistance-item {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: var(--sepia-medium);
  padding: 8px 16px;
  background: rgba(139, 111, 71, 0.1);
  border-radius: 4px;
  opacity: 0;
  transform: scale(0.9);
}

.response-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
  text-align: center;
}

.response-line {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--sepia-dark);
  opacity: 0;
  transform: translateY(20px);
}

.strategy-text {
  text-align: center;
  margin-top: 40px;
}

.strategy-line {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  line-height: 1.8;
  color: var(--sepia-dark);
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(20px);
}

.strategy-line.emphasis {
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--blue-accent);
}

/* ─────────────────────────────────────────────────────────────────
   FINISH SECTION
   ───────────────────────────────────────────────────────────────── */
.finish {
  background: var(--paper-white);
}

.finish-text {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.finish-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 700;
  color: var(--sepia-dark);
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
}

/* Poster prop */
.poster-frame {
  position: relative;
  max-width: 420px;
  margin: 0 auto 40px;
  padding: 14px;
  background: var(--paper-white);
  border: 5px solid var(--sepia-brown);
  box-shadow: 8px 8px 0 rgba(0, 0, 0, 0.1);
  transform: rotate(-2deg);
}

.poster-img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0;
  transform: translateY(10px) scale(0.98);
}

.poster-frame::after {
  content: '';
  position: absolute;
  top: -10px;
  left: 50%;
  width: 14px;
  height: 14px;
  background: var(--red-accent);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.12);
}

.audience-line {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  color: var(--sepia-dark);
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(20px);
}

.audience-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.audience-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--sepia-cream);
  border-left: 4px solid var(--blue-accent);
  text-align: left;
  opacity: 0;
  transform: translateX(-30px);
}

.audience-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.audience-text {
  font-family: var(--font-body);
  font-size: clamp(1rem, 1.8vw, 1.25rem);
  color: var(--sepia-dark);
  line-height: 1.6;
}

.mantra {
  margin-top: 60px;
}

.mantra-line {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  color: var(--sepia-dark);
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(20px);
}

/* ─────────────────────────────────────────────────────────────────
   FINALE SECTION
   ───────────────────────────────────────────────────────────────── */
.finale {
  background: linear-gradient(180deg, var(--sepia-cream) 0%, var(--paper-white) 100%);
  text-align: center;
}

.finale-content {
  max-width: 700px;
  margin: 0 auto;
}

.finale-line {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.8;
  color: var(--sepia-dark);
  margin-bottom: 1.5rem;
  opacity: 0;
  transform: translateY(20px);
}

.finale-line.highlight {
  font-weight: 700;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--blue-accent);
}

.salute {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 2px solid var(--sepia-medium);
}

.salute-line {
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  line-height: 1.8;
  color: var(--sepia-dark);
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(20px);
}

.salute-line.emphasis {
  font-weight: 700;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--red-accent);
}

.cta-section {
  margin-top: 60px;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  font-family: var(--font-display);
  font-size: clamp(1.125rem, 2vw, 1.5rem);
  font-weight: 600;
  color: var(--paper-white);
  background: var(--blue-accent);
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0;
  transform: translateY(20px);
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
}

.button-icon {
  font-size: 1.25em;
  transition: transform 0.3s ease;
}

.cta-button:hover .button-icon {
  transform: translateX(4px);
}

/* ─────────────────────────────────────────────────────────────────
   FOOTER
   ───────────────────────────────────────────────────────────────── */
.footer {
  padding: 40px 24px;
  text-align: center;
  background: var(--sepia-dark);
  color: var(--sepia-light);
  z-index: 2;
  position: relative;
}

.footer-logo {
  margin-bottom: 20px;
  text-align: center;
}

.footer-logo-img {
  max-width: 200px;
  width: 100%;
  height: auto;
  opacity: 0.8;
}

.footer-text {
  font-family: var(--font-vintage);
  font-size: 0.875rem;
  letter-spacing: 0.1em;
}

/* ─────────────────────────────────────────────────────────────────
   RESPONSIVE
   ───────────────────────────────────────────────────────────────── */
@media (max-width: 768px) {
  .section {
    padding: 40px 20px;
  }
  
  .pigeon-flying {
    display: none;
  }
  
  .capability-grid {
    grid-template-columns: 1fr;
  }
  
  .resistance-list {
    flex-direction: column;
    align-items: center;
  }
}
