/* ==========================================================================
   UP AL — About (מי עומד מאחורי UP AL?)
   Sits between Why UP AL and Services. Two-column composition matching
   the same convention already used by Services and Contact in this RTL
   site: primary content (the text) first in source / on the right,
   supporting visual (the portrait) second in source / on the left,
   sticky at desktop widths — the same device as Why UP AL's sticky
   intro and Services' sticky preview frame, reused rather than
   reinvented.

   The portrait frame reuses the exact layered-glass recipe already
   established for Portfolio's media frame and Services' preview frame
   (same gradients, --radius-md, --shadow-frame), in a 1:1 square aspect
   ratio matching the source photo, which is itself cropped to a perfect
   square. A single soft light-blue glow is folded into the frame's own
   box-shadow — no separate floating decoration, just a subtle bloom
   hugging the glass frame itself. No new visual material introduced
   anywhere in this file.
   ========================================================================== */

.about {
  position: relative;
  padding-block: var(--space-10);
  scroll-margin-top: var(--header-height);
  border-top: 1px solid var(--color-border-soft);
  overflow: hidden;
  overflow: clip;
}

.about__orb {
  width: 680px;
  height: 680px;
  inset-inline-start: -240px;
  top: -180px;
  background: radial-gradient(circle, rgba(158, 207, 247, 0.13), transparent 70%);
  opacity: 0.8;
}

.about__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: var(--space-9);
  align-items: center;
}

@media (max-width: 900px) {
  .about__layout {
    grid-template-columns: 1fr;
    gap: var(--space-7);
  }
}

/* ---------- Text column ---------- */

.about__heading {
  font-size: var(--fs-h2);
  font-weight: var(--fw-extrabold);
  line-height: var(--lh-tight);
  color: var(--color-text-primary);
  text-wrap: balance;
  margin-block-end: var(--space-6);
}

.about__body {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  max-width: 62ch;
}

.about__body p {
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: var(--lh-relaxed);
  color: var(--color-text-secondary);
}

/* First line reads as a short, direct introduction — lifted to the lead
   size and brighter, same hierarchy device every other section already
   uses for its opening line (no new type scale introduced). */

.about__body p:first-child {
  font-size: var(--fs-lead);
  font-weight: var(--fw-medium);
  line-height: var(--lh-snug);
  color: var(--color-text-primary);
}

/* ---------- Badges ---------- */

.about__badges {
  list-style: none;
  margin: var(--space-7) 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-3);
}

.about__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: 0.6rem 1.05rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  background: var(--color-accent-soft);
  font-size: 0.8125rem;
  font-weight: var(--fw-medium);
  color: var(--color-text-secondary);
  transition: border-color var(--duration-base) var(--ease-premium), color var(--duration-base) var(--ease-premium);
}

.about__badge:hover {
  border-color: rgba(158, 207, 247, 0.4);
  color: var(--color-text-primary);
}

.about__badge-dot {
  flex: none;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gradient-chrome-blue);
}

/* ---------- Portrait column ---------- */

.about__media {
  position: relative;
}

@media (min-width: 901px) {
  .about__media {
    position: sticky;
    top: calc(var(--header-height) + var(--space-8));
  }
}

.about__portrait-frame {
  position: relative;
  aspect-ratio: 1 / 1;
  max-width: 420px;
  margin-inline: auto;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: radial-gradient(140% 90% at 16% -10%, rgba(255, 255, 255, 0.07), transparent 55%),
    radial-gradient(36% 30% at 84% 6%, rgba(255, 255, 255, 0.05), transparent 62%),
    linear-gradient(200deg, rgba(255, 255, 255, 0.03) 0%, transparent 42%),
    radial-gradient(120% 75% at 50% 122%, rgba(0, 0, 0, 0.32), transparent 60%), var(--color-bg-elevated);
  /* --shadow-frame (the same neutral drop-shadow every media frame on
     the site uses) plus one soft light-blue bloom hugging the glass
     frame itself — no separate floating shapes, just a subtle glow. */
  box-shadow: var(--shadow-frame), 0 0 44px -14px rgba(158, 207, 247, 0.4);
}

.about__portrait-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

@media (max-width: 900px) {
  .about__portrait-frame {
    max-width: 340px;
  }
}

/* ---------- Small screens ----------
   Matches the same padding-block reduction used across every other
   section at this breakpoint. */

@media (max-width: 560px) {
  .about {
    padding-block: var(--space-8);
  }
}
