/* PL1 marketing — component styles.
   Loaded after tokens.css. Scoped to .pl1 root. */

/* ── header ────────────────────────────────────────────────────── */
.pl1 .site-header {
  position: relative;
  background: var(--bg);
  border-bottom: 1px solid var(--hairline);
  z-index: 10;
}
.pl1 .site-header__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 24px;
}
.pl1 .site-header__brand {
  display: flex; align-items: center; gap: 12px;
}
.pl1 .site-header__wordmark {
  display: flex; flex-direction: column; line-height: 1;
}
.pl1 .site-header__wm-top {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  letter-spacing: 0.04em;
}
.pl1 .site-header__wm-sub {
  font-family: var(--font-body);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-top: 3px;
}
.pl1 .site-header__nav {
  display: flex; align-items: center; gap: 26px;
}
.pl1 .site-header__link {
  font-size: 13.5px;
  font-weight: 500;
  color: var(--fg-muted);
  letter-spacing: 0.01em;
  position: relative;
  padding-block: 6px;
}
.pl1 .site-header__link:hover { color: var(--fg); }
.pl1 .site-header__link.is-active {
  color: var(--fg);
}
.pl1 .site-header__link.is-active::after {
  content: ""; position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--accent);
}
.pl1 .site-header__cta { display: flex; align-items: center; gap: 8px; }

/* mobile header */
@media (max-width: 768px) {
  .pl1 .site-header__nav { display: none; }
  .pl1 .site-header__wordmark { display: none; }
  .pl1 .site-header__cta .btn--ghost { display: none; }
}

/* ── footer ────────────────────────────────────────────────────── */
.pl1 .site-footer {
  position: relative;
  background: var(--bg-elevated);
  border-top: 1px solid var(--line);
  margin-top: 0;
  overflow: hidden;
}
.pl1 .site-footer__inner {
  padding-block: var(--s-11) var(--s-7);
  position: relative;
  z-index: 1;
}
.pl1 .site-footer__cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: var(--s-9);
  padding-bottom: var(--s-10);
  border-bottom: 1px solid var(--hairline);
}
@media (max-width: 900px) {
  .pl1 .site-footer__cols { grid-template-columns: 1fr 1fr; gap: var(--s-8); }
}
@media (max-width: 520px) {
  .pl1 .site-footer__cols { grid-template-columns: 1fr; gap: var(--s-7); }
}
.pl1 .site-footer__col h4,
.pl1 .site-footer__heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.pl1 .site-footer__col ul {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.pl1 .site-footer__col a {
  color: var(--fg-muted);
  font-size: 14px;
  transition: color var(--dur-fast) var(--ease-out-quart);
}
.pl1 .site-footer__col a:hover { color: var(--fg); }
.pl1 .site-footer__tagline {
  font-size: 14px;
  color: var(--fg-muted);
  line-height: var(--lh-loose);
  margin-top: 16px;
  max-width: 28ch;
}
.pl1 .site-footer__social {
  display: flex; flex-direction: column; gap: 8px; margin-top: 18px;
}
.pl1 .site-footer__soc {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 500;
  color: var(--fg);
}
.pl1 .site-footer__soc-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
}
.pl1 .site-footer__base {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 16px;
  padding-top: var(--s-7);
  font-size: 12px;
  color: var(--fg-subtle);
}
.pl1 .site-footer__legal { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.pl1 .site-footer__legal a:hover { color: var(--fg); }
.pl1 .site-footer__est {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 11px;
  color: var(--fg);
  display: inline-flex; align-items: center; gap: 10px;
}
.pl1 .site-footer__est-glyph {
  width: 8px; height: 8px;
  background: var(--accent);
  transform: rotate(45deg);
  display: inline-block;
}

/* giant background mark */
.pl1 .big-mark {
  position: absolute;
  right: -180px; bottom: -180px;
  width: 620px; height: 620px;
  opacity: 0.04;
  z-index: 0;
  pointer-events: none;
}
[data-theme="dark"] .big-mark { opacity: 0.06; }
.pl1 .big-mark img { width: 100%; height: 100%; display: block; }

/* ── stat proof block ──────────────────────────────────────────── */
.pl1 .stat-proof {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: var(--s-8);
  padding: var(--s-9) var(--s-8);
  background: var(--bg-inverse);
  color: var(--fg-on-inverse);
  border-radius: var(--r-4);
  position: relative;
  overflow: hidden;
}
.pl1 .stat-proof::before {
  content: ""; position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(125deg,
      transparent 0 40px,
      rgba(57,255,20,0.04) 40px 41px);
  pointer-events: none;
}
.pl1 .stat-proof__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: var(--t-stat);
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  position: relative;
}
.pl1 .stat-proof__copy { position: relative; max-width: 50ch; }
.pl1 .stat-proof__copy p {
  font-size: var(--t-h3);
  line-height: var(--lh-snug);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: -0.01em;
  margin-top: 8px;
}
.pl1 .stat-proof__copy strong { color: var(--accent); font-weight: 700; }
.pl1 .stat-proof--compact { padding: var(--s-7); gap: var(--s-7); }
.pl1 .stat-proof--compact .stat-proof__num { font-size: clamp(72px, 8vw, 120px); }
.pl1 .stat-proof--compact .stat-proof__copy p { font-size: var(--t-h4); }

@media (max-width: 720px) {
  .pl1 .stat-proof { grid-template-columns: 1fr; gap: var(--s-5); }
}

/* ── hero (home) ───────────────────────────────────────────────── */
.pl1 .hero {
  position: relative;
  padding-block: var(--s-8) var(--s-8);
  overflow: hidden;
}
.pl1 .hero__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--s-9);
  align-items: center;
}
@media (max-width: 900px) {
  .pl1 .hero__grid { grid-template-columns: 1fr; gap: var(--s-7); }
}
.pl1 .hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: var(--s-5);
}
.pl1 .hero__eyebrow-dot {
  width: 6px; height: 6px; background: var(--accent); border-radius: 50%;
}
.pl1 .hero__display {
  font-size: clamp(38px, 5vw + 4px, 84px);
  font-weight: 800;
  line-height: var(--lh-tight);
  letter-spacing: var(--tr-display);
  color: var(--fg);
  font-stretch: 110%;
}
.pl1 .hero__display em {
  font-style: normal;
  color: var(--accent-text);
  position: relative;
  display: inline-block;
}
[data-theme="light"] .pl1 .hero__display em { color: var(--brand-ink); background: var(--accent); padding: 0 0.08em; }
[data-theme="dark"]  .pl1 .hero__display em { color: var(--accent); }

.pl1 .hero__lede {
  margin-top: var(--s-4);
  font-size: var(--t-body-lg);
  color: var(--fg-muted);
  max-width: 52ch;
  line-height: var(--lh-loose);
}
.pl1 .hero__paths {
  margin-top: var(--s-5);
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 560px) {
  .pl1 .hero__paths { grid-template-columns: 1fr; }
}
.pl1 .hero__path {
  display: flex;
  flex-direction: column;
  padding: var(--s-6) 0;
  gap: 6px;
  position: relative;
}
.pl1 .hero__path + .hero__path { padding-left: var(--s-6); }
.pl1 .hero__path + .hero__path::before {
  content: ""; position: absolute;
  top: 14%; bottom: 14%;
  left: 0;
  width: 1px;
  background: var(--line);
}
@media (max-width: 560px) {
  .pl1 .hero__path + .hero__path { padding-left: 0; padding-top: var(--s-4); border-top: 1px solid var(--line); }
  .pl1 .hero__path + .hero__path::before { display: none; }
}
.pl1 .hero__path-kicker {
  font-size: var(--t-small);
  color: var(--fg-muted);
}
.pl1 .hero__path-link {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(22px, 1.6vw + 14px, 30px);
  letter-spacing: -0.01em;
  color: var(--fg);
}
.pl1 .hero__path-link:hover { color: var(--accent-text); }
.pl1 .hero__path-link .arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--fg-on-accent);
  flex: 0 0 36px;
}
.pl1 .hero__path--secondary .hero__path-link .arrow {
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--fg);
}

.pl1 .hero__media {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--r-4);
  overflow: hidden;
}
.pl1 .hero__media .photo-slot { width: 100%; height: 100%; border-radius: var(--r-4); }
.pl1 .hero__media::after {
  /* keeper diving silhouette overlay accent */
  content: "";
  position: absolute; right: -40px; bottom: -40px;
  width: 64%; height: 64%;
  background:
    radial-gradient(closest-side, var(--accent) 0 36%, transparent 72%);
  filter: blur(2px);
  opacity: 0.55;
  mix-blend-mode: screen;
  pointer-events: none;
}
[data-theme="light"] .pl1 .hero__media::after { mix-blend-mode: multiply; opacity: 0.25; }

.pl1 .hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-5);
  margin-top: var(--s-5);
}
.pl1 .hero__stat {
  padding-top: var(--s-3);
  border-top: 2px solid var(--accent);
}
.pl1 .hero__stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 2vw + 16px, 40px);
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}
.pl1 .hero__stat-label {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  margin-top: 4px;
}

/* ── generic section ───────────────────────────────────────────── */
.pl1 .section {
  padding-block: var(--section-y);
  position: relative;
}
.pl1 .section--inverse {
  background: var(--bg-inverse);
  color: var(--fg-on-inverse);
}
.pl1 .section--inverse .eyebrow { color: var(--accent); }
.pl1 .section--inverse h2,
.pl1 .section--inverse h3 { color: var(--fg-on-inverse); }
.pl1 .section--inverse p { color: rgba(250,250,247,0.74); }

.pl1 .section__head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-9);
  margin-bottom: var(--s-9);
  align-items: end;
}
@media (max-width: 900px) {
  .pl1 .section__head { grid-template-columns: 1fr; gap: var(--s-5); margin-bottom: var(--s-7); }
}
.pl1 .section__title {
  font-size: var(--t-h1);
  font-weight: 700;
  letter-spacing: var(--tr-display);
  line-height: var(--lh-tight);
}
.pl1 .section__title em {
  font-style: normal;
  color: var(--accent-text);
}
.pl1 .section__intro {
  font-size: var(--t-body-lg);
  color: var(--fg-muted);
  line-height: var(--lh-loose);
  max-width: 50ch;
}

/* ── program cards ─────────────────────────────────────────────── */
.pl1 .programs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-6);
}
@media (max-width: 900px) { .pl1 .programs { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pl1 .programs { grid-template-columns: 1fr; } }

.pl1 .program {
  position: relative;
  display: flex; flex-direction: column;
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--r-3);
  overflow: hidden;
  transition: transform var(--dur-base) var(--ease-out-quart), border-color var(--dur-base);
}
.pl1 .program:hover { transform: translateY(-2px); border-color: var(--line-strong); }
.pl1 .program__media { aspect-ratio: 4/3; }
.pl1 .program__body { padding: var(--s-6); display: flex; flex-direction: column; gap: var(--s-3); flex: 1; }
.pl1 .program__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--t-h3);
  letter-spacing: -0.01em;
}
.pl1 .program__meta { display: flex; gap: 6px; flex-wrap: wrap; }
.pl1 .program__copy { color: var(--fg-muted); font-size: 14.5px; line-height: var(--lh-loose); }
.pl1 .program__price {
  display: flex; align-items: baseline; justify-content: space-between;
  padding-top: var(--s-4);
  border-top: 1px solid var(--hairline);
  font-family: var(--font-display);
  font-weight: 600;
}
.pl1 .program__price-num { font-size: 22px; }
.pl1 .program__price-unit { font-size: 12px; color: var(--fg-muted); }
.pl1 .program__cta { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--accent-text); font-weight: 600; }
.pl1 .program--featured {
  background: var(--accent);
  color: var(--brand-ink);
  border-color: var(--accent);
}
.pl1 .program--featured .program__copy { color: rgba(23,28,32,0.78); }
.pl1 .program--featured .program__price { border-top-color: rgba(23,28,32,0.18); }
.pl1 .program--featured .program__cta { color: var(--brand-ink); }

/* ── coach cards ───────────────────────────────────────────────── */
.pl1 .coach-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-7);
}
@media (max-width: 900px) { .pl1 .coach-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pl1 .coach-grid { grid-template-columns: 1fr; } }
.pl1 .coach__photo { aspect-ratio: 3/4; border-radius: var(--r-3); }
.pl1 .coach__name {
  margin-top: var(--s-4);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: var(--t-h3);
  letter-spacing: -0.01em;
}
.pl1 .coach__role {
  font-size: 13px; color: var(--fg-muted);
  letter-spacing: 0.08em; text-transform: uppercase;
  margin-top: 4px;
}
.pl1 .coach__bio {
  margin-top: var(--s-3);
  color: var(--fg-muted);
  font-size: 14.5px;
  line-height: var(--lh-loose);
}
.pl1 .coach__creds {
  display: flex; flex-wrap: wrap; gap: 6px;
  margin-top: var(--s-3);
}

/* ── testimonials ──────────────────────────────────────────────── */
.pl1 .quote-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-6);
}
@media (max-width: 760px) { .pl1 .quote-grid { grid-template-columns: 1fr; } }
.pl1 .quote {
  background: var(--bg-elevated);
  border: 1px solid var(--line);
  border-radius: var(--r-3);
  padding: var(--s-7);
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: var(--s-5);
}
.pl1 .quote__mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 64px;
  line-height: 0.7;
  color: var(--accent);
  height: 28px;
}
.pl1 .quote__body {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(18px, 1vw + 12px, 22px);
  letter-spacing: -0.005em;
  line-height: var(--lh-snug);
}
.pl1 .quote__attribution {
  display: flex; align-items: center; gap: 14px;
  padding-top: var(--s-4);
  border-top: 1px solid var(--hairline);
}
.pl1 .quote__avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--bg-muted);
}
.pl1 .quote__name { font-weight: 700; font-family: var(--font-display); font-size: 15px; }
.pl1 .quote__meta { font-size: 12px; color: var(--fg-muted); margin-top: 2px; }

/* ── results table ─────────────────────────────────────────────── */
.pl1 .results-table {
  width: 100%; border-collapse: collapse;
  font-family: var(--font-body);
  font-size: 14px;
}
.pl1 .results-table th,
.pl1 .results-table td {
  text-align: left;
  padding: 14px 16px;
  border-bottom: 1px solid var(--hairline);
  vertical-align: middle;
}
.pl1 .results-table th {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--fg-muted);
  border-bottom: 1px solid var(--line-strong);
}
.pl1 .results-table td.tier {
  font-family: var(--font-display);
  font-weight: 700;
}
.pl1 .results-table .level {
  display: inline-flex; align-items: center; gap: 8px;
}
.pl1 .results-table .level::before {
  content: ""; width: 8px; height: 8px;
  background: var(--accent); border-radius: 2px;
}
.pl1 .results-table .level--l2::before { background: var(--accent); opacity: 0.45; }
.pl1 .results-table .level--l1::before { background: var(--accent); }

/* ── contact ───────────────────────────────────────────────────── */
.pl1 .contact {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--s-9);
  align-items: start;
}
@media (max-width: 900px) { .pl1 .contact { grid-template-columns: 1fr; } }
.pl1 .field { display: flex; flex-direction: column; gap: 6px; }
.pl1 .field label {
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--fg-muted);
}
.pl1 .field input,
.pl1 .field select,
.pl1 .field textarea {
  font: inherit;
  padding: 14px 16px;
  background: var(--bg);
  color: var(--fg);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-2);
  outline: none;
  transition: border-color var(--dur-fast);
}
.pl1 .field input:focus,
.pl1 .field select:focus,
.pl1 .field textarea:focus { border-color: var(--accent); box-shadow: var(--focus-ring); }
.pl1 .field--row { display: grid; grid-template-columns: 1fr 1fr; gap: var(--s-4); }
.pl1 .form-grid {
  display: flex; flex-direction: column; gap: var(--s-4);
  padding: var(--s-7);
  background: var(--bg-elevated);
  border: 1px solid var(--line-strong);
  border-radius: var(--r-3);
  box-shadow: var(--shadow-2);
}
.pl1 .contact-info { display: flex; flex-direction: column; gap: var(--s-5); }
.pl1 .contact-row { display: flex; align-items: flex-start; gap: var(--s-4); padding: var(--s-4) 0; border-bottom: 1px solid var(--line-strong); }
.pl1 .contact-row__icon {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--accent); color: var(--fg-on-accent);
  display: grid; place-items: center; flex: 0 0 36px;
  font-family: var(--font-mono); font-weight: 700; font-size: 13px;
}
.pl1 .contact-row__label { font-size: 12px; color: var(--fg-muted); letter-spacing: 0.1em; text-transform: uppercase; }
.pl1 .contact-row__value { font-family: var(--font-display); font-weight: 600; font-size: 17px; margin-top: 4px; }

/* ── store card ────────────────────────────────────────────────── */
.pl1 .store-card {
  background: var(--bg-inverse);
  color: var(--fg-on-inverse);
  border-radius: var(--r-4);
  padding: var(--s-8);
  display: grid;
  grid-template-columns: 1fr 240px;
  align-items: center;
  gap: var(--s-7);
  position: relative;
  overflow: hidden;
}
@media (max-width: 760px) { .pl1 .store-card { grid-template-columns: 1fr; } }
.pl1 .store-card__eyebrow {
  color: var(--accent);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}
.pl1 .store-card__title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 2vw + 16px, 44px);
  letter-spacing: var(--tr-display);
  margin-top: var(--s-3);
  color: var(--fg-on-inverse);
}
.pl1 .store-card__copy {
  color: rgba(250,250,247,0.72);
  font-size: 15px;
  margin-top: var(--s-3);
  max-width: 44ch;
}
.pl1 .store-card__visual {
  aspect-ratio: 1/1;
  border-radius: var(--r-3);
  background: var(--accent);
  display: grid; place-items: center;
  position: relative;
  overflow: hidden;
}
.pl1 .store-card__visual img {
  width: 75%; height: 75%; object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(0,0,0,0.18));
}

/* ── giant brand watermark behind the page body ────────────────── */
/* Large logo fixed in the background; opaque sections (inverse /
   elevated) sit over it, base-bg sections (hero etc.) let it show. */
.pl1::before {
  content: "";
  position: fixed;
  z-index: 0;
  top: 50%;
  right: -14vw;
  transform: translateY(-50%);
  width: min(1000px, 86vh);
  height: min(1000px, 86vh);
  background: url("assets/pl1-logo.svg") center / contain no-repeat;
  opacity: 0.05;
  pointer-events: none;
}
[data-theme="dark"] .pl1::before { opacity: 0.07; }
/* keep real content above the watermark */
.pl1 > * { position: relative; z-index: 1; }

/* ── reusable list with check glyphs ───────────────────────────── */
.pl1 .pl-list {
  list-style: none; padding: 0; margin: 0;
  display: flex; flex-direction: column; gap: 10px;
}
.pl1 .pl-list li {
  display: grid; grid-template-columns: 20px 1fr; gap: 10px;
  font-size: 15px; color: var(--fg);
}
.pl1 .pl-list li::before {
  content: ""; width: 12px; height: 12px;
  margin-top: 7px;
  background: var(--accent);
  transform: rotate(45deg);
}

/* ── mark anchor inside a body section ─────────────────────────── */
.pl1 .anchor-row {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--s-9);
  align-items: center;
}
@media (max-width: 900px) { .pl1 .anchor-row { grid-template-columns: 1fr; } }
.pl1 .mark-anchor {
  position: relative;
  aspect-ratio: 1/1;
  max-width: 480px;
  margin: 0 auto;
}
.pl1 .mark-anchor img {
  width: 100%; height: 100%;
  filter: drop-shadow(0 24px 48px rgba(57,255,20,0.22));
}
.pl1 .mark-anchor::after {
  /* radial soft glow behind mark on dark */
  content: "";
  position: absolute; inset: 8% 8%;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--accent) 18%, transparent) 0%, transparent 65%);
  filter: blur(20px);
  z-index: -1;
}

/* ── partner / club logo strip ─────────────────────────────────── */
.pl1 .logo-strip {
  display: flex; flex-wrap: wrap;
  align-items: center; justify-content: space-between;
  gap: var(--s-6);
  padding: var(--s-7) 0;
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.pl1 .logo-strip__item {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-display); font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--fg-muted);
  font-size: 16px;
}
.pl1 .logo-strip__item::before {
  content: ""; width: 14px; height: 14px;
  background: currentColor; opacity: 0.4;
  clip-path: polygon(50% 0, 100% 50%, 50% 100%, 0 50%);
}
