/* ===========================================================
   ABOUT — Smoovie (public)
   Hard edges, symmetrical, white space, photo-led
   =========================================================== */

.about-page{
  max-width: 980px;
  margin: 0 auto;
  padding: 28px var(--public-pad) 56px;
  display: grid;
  gap: 18px;
}

/* Card shell used across the page */
.about-card{
  border: 1px solid var(--line);
  background: #fff;
  padding: 22px;
  box-shadow: var(--shadow);
  border-radius: 0;
}

.about-hero h1{
  margin: 0 0 10px;
  font-size: clamp(28px, 3.6vw, 42px);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.about-lede{
  margin: 0 0 14px;
  color: rgba(15,15,16,.78);
  font-size: 15px;
  line-height: 1.75;
  max-width: 75ch;
}

/* Small spacing polish */
.about-card h2{
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 950;
  letter-spacing: -0.01em;
}

.about-card p{
  margin: 0 0 12px;
  color: rgba(15,15,16,.82);
  line-height: 1.75;
}

.about-note{
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--line);
  color: rgba(15,15,16,.72);
  font-size: 14px;
}

/* Lists */
.about-list{
  margin: 10px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
}
.about-list li{
  color: rgba(15,15,16,.82);
}

/* Carousel */
.about-carousel{
  position: relative;
  border: 1px solid var(--line);
  overflow: hidden;
  border-radius: 0;
  margin-top: 12px;
}

.about-carousel__track{
  display: flex;
  transition: transform 240ms ease;
  will-change: transform;
}

.about-carousel__track img{
  width: 100%;
  height: auto;
  display: block;
  flex: 0 0 100%;
}

/* Square nav buttons */
.about-carousel__btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 0;
  border: 1px solid rgba(255,255,255,.45);
  background: rgba(0,0,0,.35);
  color: #fff;
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.about-carousel__btn:hover{ background: rgba(0,0,0,.5); }

.about-carousel__btn--prev{ left: 10px; }
.about-carousel__btn--next{ right: 10px; }

/* Grids */
.about-grid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}

.about-featuregrid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 10px;
}

.about-feature{
  border: 1px solid var(--line);
  padding: 14px;
  background: #fff;
  border-radius: 0;
}

.about-feature h3{
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 950;
  letter-spacing: -0.01em;
  color: var(--ink);
}

.about-feature p{
  margin: 0;
  font-size: 14px;
  color: rgba(15,15,16,.78);
}

/* Buttons (ensure this page is self-contained even if other page CSS changes) */
.about-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 16px;
  border-radius: 0;
  border: 1px solid var(--line);
  text-decoration: none;
  font-weight: 950;
  letter-spacing: .01em;
  color: var(--ink);
  background: #fff;
  cursor: pointer;
}
.btn:hover{ background: var(--hover); }

.btn-primary{
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover{ opacity: .92; background: var(--accent); }

.btn-secondary{
  border-color: rgba(0,0,0,.20);
  background: #fff;
}

.btn-ghost{
  border-color: transparent;
  background: transparent;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Responsive */
@media (max-width: 900px){
  .about-grid{ grid-template-columns: 1fr; }
  .about-featuregrid{ grid-template-columns: 1fr; }
  .about-card{ padding: 18px; }
}
