/* =========================================
   SharpFleet – About Page
   Calm, confident, brand-aligned
========================================= */

.sf-about-card {
  max-width: 820px;
  margin: 0 auto;
}

/* HERO */
.sf-about-hero {
  margin-bottom: 28px;
}

.sf-about-title {
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.5px;
  margin: 0 0 12px 0;
  color: #0A2A4D; /* Solid SharpFleet navy */
}

/* Underline: teal, longer, animated */
.sf-about-underline {
  display: block;
  width: 200px;
  height: 3px;
  background: #2CBFAE;
  border-radius: 2px;
  margin-top: 10px;

  /* Animation */
  transform-origin: left;
  animation: sfUnderlineReveal 0.6s ease-out forwards;
}

/* STORY TEXT */
.sf-about-story p {
  margin: 0 0 16px 0;
  line-height: 1.65;
  max-width: 680px;
}

.sf-about-key {
  font-weight: 600;
  margin-top: 12px;
}

.sf-about-close {
  margin-top: 24px;
}

/* Underline animation */
@keyframes sfUnderlineReveal {
  from {
    transform: scaleX(0);
    opacity: 0;
  }
  to {
    transform: scaleX(1);
    opacity: 1;
  }
}

/* Respect reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  .sf-about-underline {
    animation: none;
    transform: scaleX(1);
  }
}

/* Mobile breathing room */
@media (max-width: 640px) {
  .sf-about-story p {
    max-width: none;
  }
}
