/* ============================================================
   BrijCode — About Why (Why BrijCode Exists)
   Editorial statement + asymmetric floating pills
   Scoped under .about-why — static, no motion
   ============================================================ */

.about-why {
  --aw-ink: var(--ink-deep, #0f2233);
  --aw-ink-mid: var(--ink-mid, #16304a);
  --aw-marigold: var(--marigold, #f29a1f);
  --aw-cream: #f7f4ef;
  --aw-white: #ffffff;
  --aw-muted: rgba(15, 34, 51, 0.48);
  --aw-soft: rgba(15, 34, 51, 0.58);

  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--aw-cream);
  color: var(--aw-ink);
  padding: 40px 0;
}

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

.about-why__atmosphere::before {
  content: "";
  position: absolute;
  inset: 0;
  --aw-grid-color: rgba(15, 34, 51, 0.05);
  background-image:
    linear-gradient(var(--aw-grid-color) 1px, transparent 1px),
    linear-gradient(90deg, var(--aw-grid-color) 1px, transparent 1px);
  background-size: 44px 44px;
  background-position: center top;
  mask-image: radial-gradient(ellipse 88% 78% at 50% 48%, #000 28%, transparent 82%);
  -webkit-mask-image: radial-gradient(ellipse 88% 78% at 50% 48%, #000 28%, transparent 82%);
}

.about-why__mark {
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: rgba(242, 154, 31, 0.28);
  z-index: 1;
}

.about-why__mark--tl {
  top: 10%;
  left: 7%;
}

.about-why__mark--br {
  bottom: 12%;
  right: 8%;
  width: 5px;
  height: 5px;
  background: rgba(15, 34, 51, 0.12);
}

.about-why__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1240px);
  margin: 0 auto;
  min-height: 0;
  display: grid;
  grid-template-columns: minmax(150px, 0.85fr) minmax(0, 46rem) minmax(150px, 0.85fr);
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: clamp(16px, 2.4vw, 36px);
  row-gap: 0;
}

.about-why__eyebrow {
  grid-column: 1 / -1;
  grid-row: 1;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin: 0 0 clamp(18px, 2.4vh, 28px);
  font-family: var(--font-display, "Bricolage Grotesque", sans-serif);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--aw-marigold);
  text-align: center;
}

.about-why__eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--aw-marigold);
  box-shadow: 0 0 0 3px rgba(242, 154, 31, 0.14);
  flex-shrink: 0;
}

.about-why__statement {
  grid-column: 2;
  grid-row: 2;
  z-index: 2;
  position: relative;
  margin: 0;
  width: 100%;
  justify-self: center;
  text-align: center;
  font-family: var(--font-display, "Bricolage Grotesque", sans-serif);
  font-weight: 650;
  font-size: clamp(1.28rem, 1.85vw, 1.78rem);
  line-height: 1.42;
  letter-spacing: -0.022em;
  color: var(--aw-ink);
  text-wrap: balance;
}

.about-why__statement-line {
  display: block;
}

.about-why__emphasis {
  color: var(--aw-marigold);
  font-weight: 800;
}

.about-why__fade {
  color: var(--aw-muted);
  font-weight: 650;
}

.about-why__soft {
  color: var(--aw-soft);
}

/* ---- Floating pills ---- */

.about-why__pills {
  display: contents;
}

.about-why__pills-col {
  grid-row: 2;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(28px, 4.5vh, 48px);
  min-width: 0;
  padding: clamp(4px, 1vh, 12px) 0;
}

.about-why__pills-col--left {
  grid-column: 1;
  align-items: flex-start;
}

.about-why__pills-col--right {
  grid-column: 3;
  align-items: flex-end;
}

.about-why__pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  padding: 10px 16px 10px 12px;
  border-radius: 999px;
  background: var(--aw-white);
  border: 1px solid rgba(15, 34, 51, 0.06);
  box-shadow: 0 10px 28px rgba(15, 34, 51, 0.06);
}

.about-why__pill-dot {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  flex-shrink: 0;
  background: rgba(242, 154, 31, 0.14);
  box-shadow: inset 0 0 0 5px var(--aw-marigold);
}

.about-why__pill-copy {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
}

.about-why__pill-label {
  font-family: var(--font-display, "Bricolage Grotesque", sans-serif);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--aw-ink);
  line-height: 1.2;
  white-space: nowrap;
}

.about-why__pill-value {
  font-size: 0.78rem;
  font-weight: 550;
  line-height: 1.25;
  color: var(--aw-muted);
  white-space: nowrap;
}

/* Asymmetric offsets — editorial stagger */
.about-why__pill--left-1 {
  margin-left: 0;
  transform: translateX(-4%);
}

.about-why__pill--left-2 {
  margin-left: clamp(18px, 3vw, 42px);
}

.about-why__pill--left-3 {
  margin-left: clamp(6px, 1.2vw, 18px);
  transform: translateX(2%);
}

.about-why__pill--right-1 {
  margin-right: 0;
  transform: translateX(4%);
}

.about-why__pill--right-2 {
  margin-right: clamp(18px, 3vw, 42px);
}

.about-why__pill--right-3 {
  margin-right: clamp(6px, 1.2vw, 18px);
  transform: translateX(-2%);
}
