/* ========================================================================
   Placements page — outcomes, hiring partners, alumni stories.
   Extends design tokens from assets/styles.css.
   ======================================================================== */

/* ---------- Hero ---------- */
.pl-hero {
  background: var(--ink);
  position: relative;
  overflow: hidden;
  padding: 56px 0 80px;
}
.pl-hero-frame {
  position: relative;
  margin: 0 24px;
  border-radius: var(--r-xl);
  background-color: var(--paper);
  background-image:
    radial-gradient(1100px 600px at 50% 0%, #F8DCE4 0%, var(--paper) 60%),
    linear-gradient(rgba(58,6,16,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58,6,16,0.04) 1px, transparent 1px);
  background-size: 100% 100%, 64px 64px, 64px 64px;
  border: 1px solid var(--hair);
  overflow: hidden;
  padding: 80px 32px 72px;
  text-align: center;
}
.pl-hero h1 {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: clamp(42px, 6vw, 84px);
  line-height: 1.0;
  letter-spacing: -0.025em;
  margin: 0;
  color: var(--cream);
}
.pl-hero h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--lime);
  position: relative;
}
.pl-hero h1 em::after {
  content: "";
  position: absolute;
  left: -6%; right: -6%;
  bottom: -2px;
  height: 14px;
  background: rgba(240,2,55,0.16);
  border-radius: 999px;
  z-index: -1;
}
.pl-hero-sub {
  margin: 22px auto 0;
  max-width: 60ch;
  font-size: 17px;
  line-height: 1.55;
  color: var(--sage-2);
}
.pl-hero-cta {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.pl-hero-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--lime-soft);
  border-bottom: 1.5px solid var(--lime-soft);
  cursor: pointer;
  background: 0;
  border-left: 0; border-right: 0; border-top: 0;
  font-family: inherit;
  transition: color var(--t-fast);
}
.pl-hero-cta-link:hover { color: var(--lime); }

/* Stats grid (floating on the hero) */
.pl-stats {
  position: relative;
  margin: 48px auto 0;
  max-width: 880px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.pl-stat {
  padding: 22px 22px;
  background: #FFFFFF;
  border: 1px solid var(--hair);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-card);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pl-stat.featured {
  background: linear-gradient(160deg, #FFF1F4 0%, #FCE2E7 100%);
  border-color: rgba(171,2,38,0.18);
}
.pl-stat-num {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: clamp(22px, 2vw, 28px);
  letter-spacing: -0.015em;
  line-height: 1;
  color: var(--cream);
}
.pl-stat-num.red { color: var(--lime-soft); }
.pl-stat-label {
  font-size: 12.5px;
  line-height: 1.4;
  color: var(--sage);
  margin-top: 4px;
}
.pl-stat-stars {
  color: var(--lime);
  font-size: 14px;
  letter-spacing: 1px;
  line-height: 1;
}
@media (max-width: 900px) {
  .pl-stats { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .pl-stats { grid-template-columns: 1fr; }
}

/* Featured testimonial / portrait */
.pl-feature {
  position: relative;
  margin: 64px auto 0;
  max-width: 780px;
  padding: 0 24px;
  text-align: center;
}
.pl-feature-quote {
  position: relative;
  margin: 0;
  padding-top: 40px;
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.4;
  letter-spacing: -0.012em;
  color: var(--cream);
}
.pl-feature-quote strong { font-weight: 500; color: var(--lime-soft); }
.pl-feature-quote::before {
  content: "“";
  position: absolute;
  top: -6px; left: 50%;
  transform: translateX(-50%);
  font-family: "Fraunces", serif;
  font-size: 64px;
  line-height: 1;
  color: var(--lime);
}
.pl-feature-author {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}
.pl-feature-name {
  font-weight: 600;
  font-size: 14px;
  color: var(--cream);
  letter-spacing: 0.01em;
}
.pl-feature-role {
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  letter-spacing: 0.02em;
  color: var(--sage);
}

/* ---------- Hiring partners marquee section ---------- */
.pl-partners {
  background: var(--ink);
  padding: 56px 0 56px;
}
.pl-partners-head {
  text-align: center;
  margin: 0 0 28px;
  padding: 0 24px;
}
.pl-partners-head .eyebrow { color: var(--lime-soft); }
.pl-partners-head h2 {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: clamp(24px, 2.6vw, 32px);
  letter-spacing: -0.012em;
  color: var(--cream);
  margin: 14px 0 0;
}
.pl-partners-head h2 em { color: var(--lime-soft); font-style: italic; }

/* ---------- "See Who Got Hired" ---------- */
.pl-hired {
  background: var(--ink);
  position: relative;
}
.pl-hired-head {
  text-align: center;
  margin-bottom: 40px;
}
.pl-hired-head h2 {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: clamp(34px, 4.4vw, 56px);
  letter-spacing: -0.018em;
  line-height: 1.05;
  margin: 0;
  color: var(--cream);
}
.pl-hired-head h2 em {
  font-style: italic;
  color: var(--lime);
  position: relative;
}
.pl-hired-head h2 em::after {
  content: "";
  position: absolute;
  left: -6%; right: -6%;
  bottom: 2px;
  height: 10px;
  background: rgba(240,2,55,0.16);
  border-radius: 999px;
  z-index: -1;
}
.pl-hired-head p {
  margin: 16px auto 0;
  max-width: 50ch;
  color: var(--sage-2);
  font-size: 16px;
  line-height: 1.6;
}
/* ---------- "See Who Got Hired" — moving cards ---------- */
.hire-marquee {
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: 40px;
  padding: 16px 0;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, black 90px, black calc(100% - 90px), transparent 100%);
          mask-image: linear-gradient(90deg, transparent 0, black 90px, black calc(100% - 90px), transparent 100%);
}
.hire-track {
  display: flex;
  gap: 24px;
  padding-left: 24px;
  width: max-content;
  animation: hireScroll 90s linear infinite;
  will-change: transform;
}
.hire-marquee:hover .hire-track { animation-play-state: paused; }
@keyframes hireScroll {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(calc(-50% - 12px), 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .hire-track { animation: none; flex-wrap: wrap; justify-content: center; width: auto; }
}

/* Bigger white card — clean, no dark-red panel */
.hire-card {
  position: relative;
  flex: 0 0 460px;
  height: 250px;
  background: #FFFFFF;
  border: 1px solid var(--hair);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  isolation: isolate;
}
/* faint grid + soft pink corner glow (no dark red) */
.hire-card::before {
  content: "";
  position: absolute; inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(58,6,16,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58,6,16,0.035) 1px, transparent 1px);
  background-size: 46px 46px, 46px 46px;
  mask-image: radial-gradient(120% 100% at 28% 45%, #000 30%, transparent 88%);
  -webkit-mask-image: radial-gradient(120% 100% at 28% 45%, #000 30%, transparent 88%);
}
.hire-card::after {
  content: "";
  position: absolute;
  top: -90px; right: -90px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(249,78,110,0.16), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hire-meta {
  position: relative; z-index: 2;
  padding: 22px 0 0 24px;
  max-width: 62%;
}
.hire-pkg {
  display: inline-block;
  padding: 4px 11px;
  border-radius: 999px;
  background: rgba(240,2,55,0.08);
  color: var(--lime);
  font-family: "JetBrains Mono", monospace;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
.hire-meta h3 {
  margin: 14px 0 0;
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: 25px;
  line-height: 1.1;
  letter-spacing: -0.012em;
  color: var(--cream);
}
.hire-move {
  margin: 8px 0 0;
  font-size: 13.5px;
  line-height: 1.45;
  color: var(--cream-2);
  font-weight: 500;
}
.hire-move span {
  color: var(--lime);
  margin: 0 4px;
  font-weight: 600;
}

/* portrait anchored bottom-right */
.hire-portrait {
  position: absolute;
  right: 0; bottom: 0;
  width: 190px;
  height: 86%;
  z-index: 1;
  display: flex; align-items: flex-end; justify-content: center;
  overflow: hidden;
}
.hire-portrait img {
  width: auto;
  height: 100%;
  max-width: none;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 16px 24px rgba(58,6,16,0.18));
}

/* "Now at [logo]" — bottom-left, neutral grey logo */
.hire-foot {
  position: absolute;
  left: 24px; bottom: 18px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 9px;
}
.hire-foot span {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sage);
}
.hire-logo {
  height: 18px;
  width: auto;
  max-width: 96px;
  object-fit: contain;
  object-position: left center;
  filter: brightness(0);
  opacity: 0.5;
}

@media (max-width: 700px) {
  .hire-card { flex: 0 0 320px; height: 220px; }
  .hire-meta h3 { font-size: 21px; }
  .hire-portrait { width: 138px; }
}

/* ---------- "How We Got You Hired" ---------- */
.pl-process {
  background: var(--ink);
  position: relative;
}
.pl-process-head {
  text-align: center;
  margin-bottom: 56px;
}
.pl-process-head h2 {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: clamp(34px, 4.4vw, 56px);
  letter-spacing: -0.018em;
  line-height: 1.05;
  margin: 0;
  color: var(--cream);
}
.pl-process-head h2 em {
  font-style: italic;
  color: var(--lime);
  position: relative;
}
.pl-process-head h2 em::after {
  content: "";
  position: absolute;
  left: -6%; right: -6%;
  bottom: 2px;
  height: 10px;
  background: rgba(240,2,55,0.16);
  border-radius: 999px;
  z-index: -1;
}
.pl-process-head p {
  margin: 16px auto 0;
  max-width: 50ch;
  color: var(--sage-2);
  font-size: 16px;
  line-height: 1.6;
}

.pl-process-stage {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 32px;
  align-items: center;
  margin: 0 auto;
  max-width: 1100px;
}
.pl-process-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.pl-process-center {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 24px 32px;
}
/* progress ring — thin SVG arc, animates to 95% on scroll-in */
.pl-ring {
  position: relative;
  width: 264px;
  height: 264px;
  display: grid;
  place-items: center;
  margin: 0 auto 26px;
}
.pl-ring-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  filter: drop-shadow(0 6px 14px rgba(240,2,55,0.22));
}
.pl-ring-track {
  fill: none;
  stroke: rgba(240,2,55,0.10);
  stroke-width: 4;
}
.pl-ring-arc {
  fill: none;
  stroke: url(#ringGrad);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 339.29;
  stroke-dashoffset: 16.96; /* resting = 95% filled (no-JS safe) */
}
.pl-process-center.in .pl-ring-arc {
  animation: ringFill 1.7s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}
@keyframes ringFill {
  from { stroke-dashoffset: 339.29; }
  to   { stroke-dashoffset: 16.96; }
}
@media (prefers-reduced-motion: reduce) {
  .pl-process-center.in .pl-ring-arc { animation: none; }
}
.pl-ring-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.pl-ring-num {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: 64px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--cream);
}
.pl-ring-label {
  font-family: "JetBrains Mono", monospace;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--lime-soft);
}
.pl-process-rate-sub {
  margin: 0;
  max-width: 26ch;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--sage);
}
.pl-process-duration {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1px solid var(--hair-strong);
  background: rgba(255,255,255,0.6);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--lime-soft);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pl-process-card {
  background: #FFFFFF;
  border: 1px solid var(--hair);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-card);
  padding: 24px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform var(--t-fast), box-shadow var(--t-med), border-color var(--t-fast);
}
.pl-process-card:hover {
  transform: translateY(-4px);
  border-color: rgba(240,2,55,0.28);
  box-shadow: 0 26px 50px -26px rgba(58,6,16,0.22);
}
.pl-process-card-icon {
  width: 42px; height: 42px;
  border-radius: 13px;
  background: linear-gradient(150deg, rgba(240,2,55,0.12), rgba(249,78,110,0.08));
  border: 1px solid rgba(240,2,55,0.18);
  color: var(--lime);
  display: inline-grid;
  place-items: center;
}
.pl-process-card-icon svg { width: 19px; height: 19px; }
.pl-process-card h4 {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.15;
  color: var(--cream);
  letter-spacing: -0.012em;
  margin: 8px 0 0;
}
.pl-process-card p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.55;
  color: var(--sage-2);
}
@media (max-width: 900px) {
  .pl-process-stage {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .pl-process-center { order: -1; }
}

/* ---------- "A Bright Future Awaits You" salary tiers ---------- */
.pl-future {
  background: var(--ink-2);
  position: relative;
  overflow: clip;
}
.pl-future::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(58,6,16,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(58,6,16,0.04) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}
.pl-future .wrap { position: relative; z-index: 1; }
.pl-future-head {
  text-align: center;
  margin-bottom: 48px;
}
.pl-future-head h2 {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: clamp(34px, 4.4vw, 56px);
  letter-spacing: -0.018em;
  margin: 0;
  color: var(--cream);
}
.pl-future-head h2 em {
  font-style: italic;
  color: var(--lime);
}
.pl-future-head p {
  margin: 14px auto 0;
  max-width: 56ch;
  font-size: 16px;
  color: var(--sage-2);
}
.pl-future-tiers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.pl-tier {
  padding: 24px 22px 22px;
  background: #FFFFFF;
  border: 1px solid var(--hair);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-card);
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pl-tier-range {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: clamp(24px, 2.4vw, 32px);
  color: var(--lime-soft);
  letter-spacing: -0.02em;
  line-height: 1;
}
.pl-tier-label {
  font-size: 13px;
  color: var(--sage-2);
  line-height: 1.45;
  margin-top: 6px;
}
.pl-tier-bar {
  margin-top: 14px;
  height: 8px;
  border-radius: 999px;
  background: rgba(58,6,16,0.06);
  overflow: hidden;
}
.pl-tier-bar span {
  display: block;
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--lime), var(--lime-glow));
}
@media (max-width: 1100px) {
  .pl-future-tiers { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .pl-future-tiers { grid-template-columns: 1fr; }
}

/* ---------- "Hear from those who Hired" — partner quote cards ---------- */
.pl-quotes {
  background: var(--ink);
  position: relative;
}
.pl-quotes-head {
  text-align: center;
  margin-bottom: 36px;
}
.pl-quotes-head h2 {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: clamp(30px, 3.6vw, 44px);
  letter-spacing: -0.018em;
  margin: 0;
  color: var(--cream);
}
.pl-quotes-head h2 em { color: var(--lime); font-style: italic; }
.pl-quotes-head p { margin: 12px auto 0; max-width: 52ch; font-size: 15px; color: var(--sage-2); }
.pl-quotes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pl-quote {
  position: relative;
  background: #FFFFFF;
  color: var(--cream-2);
  border: 1px solid var(--hair);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-card);
  padding: 26px 26px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  min-height: 250px;
  isolation: isolate;
  transition: transform var(--t-fast), box-shadow var(--t-med), border-color var(--t-fast);
}
.pl-quote:hover {
  transform: translateY(-4px);
  border-color: rgba(240,2,55,0.26);
  box-shadow: 0 26px 50px -26px rgba(58,6,16,0.22);
}
/* soft pink corner glow */
.pl-quote::before {
  content: "";
  position: absolute;
  top: -70px; right: -70px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(249,78,110,0.14), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.pl-quote > * { position: relative; z-index: 1; }
.pl-quote-logo {
  height: 22px;
  width: auto;
  object-fit: contain;
  object-position: left center;
  align-self: flex-start;
  filter: brightness(0);
  opacity: 0.55;
}
.pl-quote p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--cream-2);
  flex-grow: 1;
}
.pl-quote-by {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--hair);
}
.pl-quote-by img {
  width: 38px; height: 38px;
  border-radius: 50%;
  object-fit: cover;
  object-position: top center;
  background: var(--paper-2);
}
.pl-quote-meta { display: flex; flex-direction: column; line-height: 1.25; }
.pl-quote-meta strong { font-weight: 600; font-size: 13.5px; color: var(--cream); }
.pl-quote-meta span { font-size: 11.5px; color: var(--sage); }
@media (max-width: 1100px) {
  .pl-quotes-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .pl-quotes-grid { grid-template-columns: 1fr; }
}

/* ---------- Personalized Guidance ---------- */
.pl-guide {
  background: var(--ink-2);
}
.pl-guide-card {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 56px;
  align-items: center;
  padding: 48px 48px;
  background: #FFFFFF;
  border: 1px solid var(--hair);
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-lift);
}
.pl-guide-head .eyebrow { color: var(--lime-soft); margin-bottom: 18px; }
.pl-guide-head h2 {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -0.018em;
  margin: 0 0 10px;
  color: var(--cream);
}
.pl-guide-head h2 em { color: var(--lime); font-style: italic; }
.pl-guide-head p { margin: 0 0 22px; font-size: 15px; color: var(--sage-2); line-height: 1.55; }
.pl-guide-list {
  list-style: none;
  padding: 0; margin: 0 0 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pl-guide-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: var(--cream-2);
}
.pl-guide-list .check {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--lime);
  color: #FFFFFF;
  display: inline-grid; place-items: center;
  margin-top: 1px;
}
.pl-guide-list .check svg { width: 12px; height: 12px; }
.pl-guide-trust {
  list-style: none;
  margin: 26px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid rgba(240,2,55,0.16);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pl-guide-chip {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  border-radius: 14px;
  background: rgba(255,255,255,0.7);
  border: 1px solid rgba(240,2,55,0.16);
  box-shadow: 0 6px 18px -12px rgba(58,6,16,0.25);
  font-size: 14.5px;
  color: var(--cream-2);
}
.pl-guide-chip-ic {
  flex-shrink: 0;
  width: 32px; height: 32px;
  border-radius: 10px;
  background: var(--lime);
  color: #FFFFFF;
  display: inline-grid;
  place-items: center;
}
.pl-guide-chip-ic svg { width: 17px; height: 17px; }
.pl-guide-chip strong { font-weight: 600; color: var(--lime-soft); }
.pl-guide-stats {
  position: relative;
  background: linear-gradient(160deg, #FFF1F4 0%, #F8DCE4 100%);
  border-radius: var(--r-lg);
  border: 1px solid var(--hair);
  padding: 28px;
}
.pl-guide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.pl-guide-stat {
  background: rgba(255,255,255,0.6);
  border: 1px solid rgba(240,2,55,0.12);
  border-radius: 16px;
  padding: 22px 20px;
}
.pl-guide-stat-num {
  font-family: "Fraunces", serif;
  font-weight: 400;
  font-size: 36px;
  color: var(--lime-soft);
  letter-spacing: -0.02em;
  line-height: 1;
}
.pl-guide-stat-label {
  font-size: 13px;
  line-height: 1.45;
  color: var(--sage-2);
  margin-top: 8px;
}
@media (max-width: 900px) {
  .pl-guide-card { grid-template-columns: 1fr; gap: 32px; padding: 32px 24px; }
}
