/* ===== About Page ===== */
.about-page {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 32px;
}

/* Hero */
.about-hero {
  text-align: center;
  padding: 80px 0 64px;
  position: relative;
  overflow: hidden;
}

.about-hero-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.about-shape {
  position: absolute;
  border-radius: 8px;
  opacity: 0.06;
  background: #000;
}

.about-shape-1 {
  width: 120px;
  height: 120px;
  top: 10%;
  left: -30px;
  border-radius: 24px;
  animation: aboutFloat1 8s ease-in-out infinite;
}

.about-shape-2 {
  width: 80px;
  height: 80px;
  top: 20%;
  right: -10px;
  border-radius: 50%;
  animation: aboutFloat2 10s ease-in-out infinite;
}

.about-shape-3 {
  width: 60px;
  height: 60px;
  bottom: 10%;
  left: 10%;
  clip-path: polygon(50% 0%, 0% 100%, 100% 100%);
  border-radius: 0;
  animation: aboutFloat3 7s ease-in-out infinite;
}

.about-shape-4 {
  width: 100px;
  height: 16px;
  bottom: 30%;
  right: 5%;
  border-radius: 8px;
  animation: aboutFloat4 9s ease-in-out infinite;
}

@keyframes aboutFloat1 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(6deg); }
}
@keyframes aboutFloat2 {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-15px) scale(1.08); }
}
@keyframes aboutFloat3 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(-8deg); }
}
@keyframes aboutFloat4 {
  0%, 100% { transform: translateX(0); }
  50% { transform: translateX(-10px); }
}

.about-eyebrow {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #9ca3af;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.about-title {
  font-size: 56px;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.about-tagline {
  font-size: 22px;
  font-weight: 400;
  color: #6b7280;
  line-height: 1.5;
  position: relative;
  z-index: 1;
}

/* Content blocks */
.about-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-bottom: 80px;
}

.about-block {
  position: relative;
  padding-left: 24px;
  animation: aboutBlockIn 0.6s ease backwards;
}

.about-block:nth-child(1) { animation-delay: 0.1s; }
.about-block:nth-child(2) { animation-delay: 0.2s; }
.about-block:nth-child(3) { animation-delay: 0.3s; }
.about-block:nth-child(4) { animation-delay: 0.4s; }

@keyframes aboutBlockIn {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}

.about-block-accent {
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 3px;
  background: #e5e7eb;
  border-radius: 2px;
  transition: background 0.3s;
}

.about-block:hover .about-block-accent {
  background: #000;
}

.about-block p {
  font-size: 17px;
  line-height: 1.8;
  color: #4b5563;
  font-weight: 400;
}

.about-block-intro p {
  font-size: 18px;
  color: #374151;
}

/* Highlighted quote block */
.about-block-highlight {
  padding: 36px 40px;
  background: #000;
  border-radius: 20px;
  margin: 16px 0;
  box-shadow: 0 16px 40px -8px rgba(0,0,0,0.25);
}

.about-block-highlight p {
  font-size: 19px;
  line-height: 1.7;
  color: #f3f4f6;
  font-weight: 500;
  font-style: italic;
}

/* CTA */
.about-cta {
  text-align: center;
  padding-top: 32px;
  animation: aboutBlockIn 0.6s ease 0.5s backwards;
}

.about-closing {
  font-size: 20px;
  font-weight: 600;
  color: #2d3436;
  margin-bottom: 32px;
  letter-spacing: -0.01em;
}

.about-start-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 36px;
  background: #000;
  color: #fff;
  border-radius: 9999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  transition: transform 0.2s, box-shadow 0.2s;
}

.about-start-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}

.about-start-btn:active {
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 767px) {
  .about-title { font-size: 36px; }
  .about-tagline { font-size: 17px; }
  .about-hero { padding: 48px 0 40px; }
  .about-block-highlight { padding: 24px; }
}
