/* enhance.css — targeted additions only:
   (1) Burn TNGD full-width feature banner
   (2) "Key Features at a Glance" bento redesign + alignment
   (3) "Ready to Grow" background atmosphere
   Loaded after style.css. Nothing else on the page is changed. */

:root {
    --fx-violet: #985dff;
    --fx-violet-deep: #4b2398;
    --fx-gold: #e7cd7c;
    --fx-gold-2: #d3b74a;
    --fx-line: rgba(255, 255, 255, 0.1);
    --fx-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --fx-grad-line: linear-gradient(120deg, rgba(152, 93, 255, 0.7), rgba(231, 205, 124, 0.6));
}

/* ============================================ (1) Burn feature banner ====== */
.burn-feature {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1.8rem;
    margin-top: 1.6rem;
    padding: 2rem 2.4rem;
    border-radius: 22px;
    cursor: pointer;
    overflow: hidden;
    background: linear-gradient(110deg, rgba(231, 205, 124, 0.12) 0%, rgba(28, 18, 47, 0.6) 42%, rgba(11, 13, 12, 0.5) 100%);
    border: 1px solid rgba(231, 205, 124, 0.32);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06), 0 30px 70px -40px rgba(0, 0, 0, 0.9);
    transition: transform 0.5s var(--fx-ease), box-shadow 0.5s var(--fx-ease), border-color 0.5s var(--fx-ease);
}
.burn-feature:hover {
    transform: translateY(-4px);
    border-color: rgba(231, 205, 124, 0.6);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08), 0 36px 80px -44px rgba(0, 0, 0, 0.95), 0 0 60px -22px rgba(231, 205, 124, 0.6);
}
.burn-feature__glow {
    position: absolute;
    right: -10%;
    top: -60%;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(231, 205, 124, 0.32), transparent 62%);
    filter: blur(40px);
    pointer-events: none;
}
.burn-feature__icon {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 92px;
    height: 92px;
    border-radius: 20px;
    background: radial-gradient(circle at 30% 25%, rgba(231, 205, 124, 0.22), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(231, 205, 124, 0.3);
}
.burn-feature__icon img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    animation: fx-ember 3.4s ease-in-out infinite;
}
@keyframes fx-ember {
    0%, 100% { filter: drop-shadow(0 6px 16px rgba(231, 205, 124, 0.4)); transform: translateY(0); }
    50% { filter: drop-shadow(0 12px 28px rgba(231, 205, 124, 0.85)); transform: translateY(-3px); }
}
.burn-feature__body { flex: 1 1 auto; position: relative; z-index: 1; }
.burn-feature__eyebrow {
    display: inline-block;
    font-family: var(--secondary-font, sans-serif);
    font-size: 0.66rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--fx-gold);
    margin-bottom: 0.4rem;
}
.burn-feature__body h3 {
    color: #fff;
    font-family: var(--primary-font, sans-serif);
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 0 0.5rem;
}
.burn-feature__body p {
    color: #d7d2e8;
    font-size: 0.98rem;
    line-height: 1.65;
    margin: 0;
    max-width: 760px;
}
.burn-feature__body strong { color: var(--fx-gold); }
.burn-feature__cta {
    flex: 0 0 auto;
    align-self: center;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    border-radius: 100px;
    font-weight: 600;
    font-size: 0.92rem;
    color: #1a1230;
    background: linear-gradient(135deg, #f3dd97, var(--fx-gold-2));
    box-shadow: 0 0 24px -6px rgba(231, 205, 124, 0.7);
    white-space: nowrap;
    transition: transform 0.3s var(--fx-ease);
}
.burn-feature:hover .burn-feature__cta { transform: translateX(4px); }
.burn-feature .tag-new {
    position: absolute;
    top: 1.1rem;
    right: 1.2rem;
    z-index: 3;
    font-family: var(--secondary-font, sans-serif);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: #1a1230;
    padding: 0.3rem 0.62rem;
    border-radius: 100px;
    background: linear-gradient(135deg, #f3dd97, var(--fx-gold-2));
    box-shadow: 0 0 18px -2px rgba(231, 205, 124, 0.7);
    animation: fx-pulse 2.4s ease-in-out infinite;
}
@keyframes fx-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(231, 205, 124, 0.55); }
    50% { box-shadow: 0 0 22px 2px rgba(231, 205, 124, 0.7); }
}
/* stacked on phones: centre the column so the icon, copy and bullets share an axis */
@media screen and (max-width: 767px) {
    .burn-feature {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 1.6rem;
        gap: 1.1rem;
    }
    .burn-feature__cta { align-self: stretch; justify-content: center; }
    .burn-feature__body h3 { font-size: 1.3rem; }
    .burn-feature__body p { margin-inline: auto; }
    .pc-intro__points {
        flex-direction: column;
        align-items: center;
        gap: 0.55rem;
    }
}

/* ====================================== (2) Key Features bento + heading === */
.section-five-wrap .title-container h2 {
    background: linear-gradient(92deg, #ffffff 0%, #fbf1d3 52%, var(--fx-gold-2) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
    display: inline-block;
    padding-bottom: 0.6rem;
}
.section-five-wrap .title-container.text-center h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 64px;
    height: 3px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--fx-violet), var(--fx-gold));
}
.section-five-wrap .hlight-boxes {
    position: relative;
    align-items: center !important;
    gap: 0.85rem;
    padding: 0.95rem 1.25rem;
    border-radius: 13px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0));
    border: 1px solid var(--fx-line);
    overflow: hidden;
    transition: transform 0.4s var(--fx-ease), border-color 0.4s var(--fx-ease), background 0.4s var(--fx-ease);
}
.section-five-wrap .hlight-boxes::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: var(--fx-grad-line);
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.45s var(--fx-ease);
    pointer-events: none;
}
.section-five-wrap .hlight-boxes:hover {
    transform: translateY(-5px);
    background: linear-gradient(180deg, rgba(152, 93, 255, 0.1), rgba(255, 255, 255, 0));
}
.section-five-wrap .hlight-boxes:hover::before { opacity: 1; }
.section-five-wrap .hlight-boxes > div {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.section-five-wrap .hlight-boxes h4 {
    margin: 0 !important;
    font-size: 16.5px;
    line-height: 1.35;
}
.section-five-wrap .hlight-boxes .iccon {
    margin: 0 !important;
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 11px;
    background: radial-gradient(circle at 30% 25%, rgba(152, 93, 255, 0.28), rgba(255, 255, 255, 0.03));
    border: 1px solid var(--fx-line);
}
.section-five-wrap .hlight-boxes .iccon img {
    margin: 0 !important;
    width: 22px;
    height: 22px;
    object-fit: contain;
}

/* =================================== (3) Ready to Grow background ========== */
.sec-join-community {
    position: relative;
    overflow: hidden;
}
/* All decoration on one layer, masked to fade at the top + bottom edges so it
   blends seamlessly into the neighbouring sections (no hard "divider" band). */
.sec-join-community::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(44% 70% at 12% 46%, rgba(152, 93, 255, 0.22), transparent 62%),
        radial-gradient(38% 48% at 82% 26%, rgba(231, 205, 124, 0.09), transparent 62%),
        radial-gradient(rgba(165, 130, 255, 0.14) 1px, transparent 1.7px);
    background-size: auto, auto, 30px 30px;
    -webkit-mask: linear-gradient(180deg, transparent 0%, #000 14%, #000 80%, transparent 100%);
    mask: linear-gradient(180deg, transparent 0%, #000 14%, #000 80%, transparent 100%);
}
.sec-join-community .container { position: relative; z-index: 1; }

/* ============================== slot-cycle note in the Minting Slots modal == */
.modal-earn-and-grow .slot-cycle-note {
    margin: 1.3rem 0 0;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 14px;
    line-height: 1.65;
    color: #c3a6ff;
}
.modal-earn-and-grow .slot-cycle-note strong { color: var(--fx-gold); }

/* ============================================ (4) POWER CLUB section ======= */
.power-club-wrap {
    position: relative;
    padding: 4rem 0 3rem;
    overflow: hidden;
}
.power-club-wrap::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background:
        radial-gradient(40% 60% at 84% 18%, rgba(231, 205, 124, 0.14), transparent 60%),
        radial-gradient(38% 52% at 12% 74%, rgba(231, 205, 124, 0.08), transparent 62%);
    -webkit-mask: linear-gradient(180deg, transparent 0%, #000 12%, #000 84%, transparent 100%);
    mask: linear-gradient(180deg, transparent 0%, #000 12%, #000 84%, transparent 100%);
}
.power-club-wrap .container { position: relative; z-index: 1; }
.power-club-wrap .title-container h2 {
    background: linear-gradient(92deg, #ffffff 0%, #fbf1d3 50%, var(--fx-gold-2) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    padding-bottom: 0.6rem;
    position: relative;
}
.power-club-wrap .title-container h2::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 64px;
    height: 3px;
    border-radius: 4px;
    background: linear-gradient(90deg, var(--fx-gold), var(--fx-gold-2));
}
@media (min-width: 992px) {
    .power-club-wrap .title-container.text-lg-start h2::after {
        left: 0;
        transform: none;
    }
}
/* the shared gold hero banner, hosting artwork that bleeds to the tile edge */
.burn-feature__icon--photo {
    width: 116px;
    height: 116px;
    padding: 0;
    overflow: hidden;
    background: #04140a;
    border-color: rgba(74, 222, 128, 0.38);
    box-shadow: 0 0 26px rgba(74, 222, 128, 0.2);
}
.burn-feature__icon--photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: pc-fist-charge 3.4s ease-in-out infinite;
}
@keyframes pc-fist-charge {
    0%, 100% { transform: scale(1); filter: brightness(1); }
    50% { transform: scale(1.06); filter: brightness(1.2); }
}
.burn-feature:hover .burn-feature__icon--photo {
    border-color: rgba(74, 222, 128, 0.6);
    box-shadow: 0 0 34px rgba(74, 222, 128, 0.34);
}
@media screen and (max-width: 767px) {
    .burn-feature__icon--photo { width: 96px; height: 96px; }
}
/* POWER CLUB mechanic cards */
.pc-grid { margin-top: 1.7rem; }
.pc-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    padding: 1.6rem 1.4rem;
    border-radius: 16px;
    background: linear-gradient(180deg, rgba(231, 205, 124, 0.06), rgba(255, 255, 255, 0));
    border: 1px solid rgba(231, 205, 124, 0.18);
    transition: transform 0.4s var(--fx-ease), border-color 0.4s var(--fx-ease), background 0.4s var(--fx-ease);
}
.pc-card:focus-visible {
    outline: 2px solid var(--fx-gold);
    outline-offset: 3px;
}
.pc-card:hover {
    transform: translateY(-5px);
    border-color: rgba(231, 205, 124, 0.5);
    background: linear-gradient(180deg, rgba(231, 205, 124, 0.1), rgba(255, 255, 255, 0));
}
.pc-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    margin-bottom: 1rem;
    border-radius: 14px;
    background: radial-gradient(circle at 30% 25%, rgba(231, 205, 124, 0.24), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(231, 205, 124, 0.3);
}
.pc-card__icon i { font-size: 1.3rem; color: var(--fx-gold); }
.pc-card h3 { color: #fff; font-size: 1.18rem; font-weight: 700; margin: 0; }
.pc-card p { color: #d7d2e8; font-size: 0.94rem; line-height: 1.6; margin: 0; }
.pc-card p strong { color: var(--fx-gold); }
/* the icon's own margin would compound with the card's flex gap */
.pc-card .pc-card__icon { margin-bottom: 0; }

/* card foot / carry-forward note / "click for details" affordance */
.pc-card .pc-card__foot {
    padding-top: 0.15rem;
    font-size: 0.88rem;
    color: #b9b1d0;
}
.pc-card .pc-card__carry {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.7rem 0.85rem;
    border-radius: 10px;
    font-size: 0.88rem;
    color: #d7d2e8;
    background: rgba(152, 93, 255, 0.12);
    border: 1px solid rgba(152, 93, 255, 0.28);
}
.pc-card .pc-card__carry i { color: var(--fx-violet); margin-top: 0.2rem; }
.pc-card__more {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    margin-top: auto;
    padding-top: 0.35rem;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--fx-gold);
    transition: transform 0.4s var(--fx-ease);
}
.pc-card:hover .pc-card__more { transform: translateX(4px); }

/* card 1 — package chips; card 3 — ceiling chips */
.pc-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0;
    padding: 0;
}
.pc-chips li {
    display: inline-flex;
    align-items: baseline;
    gap: 0.35rem;
    padding: 0.4rem 0.7rem;
    border-radius: 999px;
    font-size: 0.85rem;
    color: #d7d2e8;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(231, 205, 124, 0.22);
}
.pc-chips__amt { color: var(--fx-gold); font-weight: 700; }
.pc-chips--ceiling li {
    font-weight: 700;
    color: var(--fx-gold);
    font-variant-numeric: tabular-nums;
}

/* cards 1 & 3 — supporting notes */
.pc-notes {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}
.pc-notes li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.88rem;
    line-height: 1.5;
    color: #b9b1d0;
}
.pc-notes i {
    margin-top: 0.25rem;
    font-size: 0.72rem;
    color: var(--fx-gold);
}

/* card 2 — income streams */
.pc-rows {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}
.pc-rows li {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1rem;
    padding: 0.6rem 0;
    border-bottom: 1px solid var(--fx-line);
}
.pc-rows li:last-child { border-bottom: 0; }
.pc-rows__k { font-size: 0.92rem; color: #d7d2e8; }
.pc-rows__k em {
    display: block;
    font-style: normal;
    font-size: 0.76rem;
    color: #9d94b8;
}
.pc-rows__v {
    flex: none;
    font-weight: 700;
    font-size: 0.92rem;
    color: var(--fx-gold);
    font-variant-numeric: tabular-nums;
}

/* card 4 — rank ladder */
.pc-ranks {
    width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}
.pc-ranks li {
    display: grid;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0.7rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--fx-line);
}
.pc-ranks__n { font-weight: 700; font-size: 0.92rem; }
.pc-ranks__n--silver { color: #cfd6e4; }
.pc-ranks__n--gold { color: #e7cd7c; }
.pc-ranks__n--diamond { color: #8fd8ff; }
.pc-ranks__n--crown { color: #c9a0ff; }
.pc-ranks__s {
    font-size: 0.85rem;
    color: #9d94b8;
    font-variant-numeric: tabular-nums;
}
.pc-ranks__r {
    min-width: 3.7rem;
    text-align: right;
    font-weight: 700;
    font-size: 0.92rem;
    color: #fff;
    font-variant-numeric: tabular-nums;
}

/* mobile carousel — style.css paints the shared dots violet (with !important) */
#pc-bx .owl-dots .owl-dot {
    background-color: rgba(231, 205, 124, 0.32) !important;
}
#pc-bx .owl-dots .owl-dot.active {
    background-color: var(--fx-gold) !important;
    box-shadow: 0 0 10px rgba(231, 205, 124, 0.45);
}

/* ---- hero kicker + selling points ---- */
.power-club-wrap .pc-intro__kicker {
    margin: 0.15rem 0 0.9rem;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--fx-gold);
}
.pc-intro__points {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem 1.4rem;
    margin: 0;
    padding: 0;
}
.pc-intro__points li {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #fff;
}
.pc-intro__points i { color: var(--fx-gold); }

/* ---- the Power Tree illustration ---- */
.pc-tree { width: 100%; max-width: 440px; padding: 1rem 0; }
.pc-tree svg { width: 100%; height: auto; overflow: visible; }
.pc-tree__rails path {
    stroke: rgba(255, 255, 255, 0.16);
    stroke-width: 2;
}
.pc-tree__flow path {
    stroke: var(--fx-gold);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-dasharray: 3 13;
    opacity: 0.85;
    animation: pc-flow 1.9s linear infinite;
}
@keyframes pc-flow {
    to { stroke-dashoffset: -32; }
}
.pc-tree__halo { animation: fx-ember 3.4s ease-in-out infinite; transform-origin: center; }
.pc-tree__match-line {
    stroke: rgba(231, 205, 124, 0.45);
    stroke-width: 1.5;
    stroke-dasharray: 4 5;
}
.pc-tree__match rect {
    fill: rgba(18, 10, 34, 0.92);
    stroke: rgba(231, 205, 124, 0.55);
    stroke-width: 1.5;
}
.pc-tree__match text {
    fill: var(--fx-gold);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
}
.pc-tree__leaf circle {
    fill: rgba(152, 93, 255, 0.22);
    stroke: rgba(152, 93, 255, 0.6);
    stroke-width: 1.5;
}
.pc-tree__leg { stroke: rgba(185, 140, 255, 0.5); stroke-width: 2; }
.pc-tree__root { stroke: rgba(255, 255, 255, 0.7); stroke-width: 2; }
.pc-tree__root-label {
    fill: #2a1a05;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.1em;
}
.pc-tree__caption {
    fill: #9d94b8;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
}

/* ---- POWER CLUB modals wear the section's black+gold identity, not the violet FZ chrome ---- */
.modal-earn-and-grow .pc-modal .modal-content {
    background-color: #0b0906;
    border: 1px solid rgba(231, 205, 124, 0.28);
    box-shadow: inset 0 0 2px rgba(231, 205, 124, 0.3), 0 24px 60px rgba(0, 0, 0, 0.55);
}
/* style.css paints a violet blur image here — replace it with the section's gold atmosphere */
.modal-earn-and-grow .pc-modal .modal-content::before {
    opacity: 1;
    background:
        radial-gradient(46% 58% at 88% 8%, rgba(231, 205, 124, 0.16), transparent 62%),
        radial-gradient(42% 55% at 4% 92%, rgba(152, 93, 255, 0.1), transparent 64%);
}
.modal-earn-and-grow .pc-modal .popup-sub-text { color: #b9b1d0; }
.modal-earn-and-grow .pc-modal .slot-cycle-note {
    border-top-color: rgba(231, 205, 124, 0.22);
    color: #b9b1d0;
}

/* ---- POWER CLUB modal tables ---- */
.modal-earn-and-grow .pc-table-wrap {
    overflow-x: auto;
    margin: 0.4rem 0 1.1rem;
    border-radius: 12px;
    border: 1px solid var(--fx-line);
}
.modal-earn-and-grow .pc-table {
    width: 100%;
    min-width: 420px;
    border-collapse: collapse;
    font-family: var(--secondary-font);
    font-variant-numeric: tabular-nums;
}
.modal-earn-and-grow .pc-table th,
.modal-earn-and-grow .pc-table td {
    padding: 0.7rem 0.9rem;
    text-align: left;
    font-size: 0.92rem;
    border-bottom: 1px solid var(--fx-line);
}
.modal-earn-and-grow .pc-table thead th {
    color: var(--fx-gold);
    font-weight: 700;
    background: rgba(231, 205, 124, 0.07);
    white-space: nowrap;
}
.modal-earn-and-grow .pc-table tbody td { color: #ededed; }
.modal-earn-and-grow .pc-table tbody tr:last-child td { border-bottom: 0; }
.modal-earn-and-grow .pc-table tbody td:first-child { font-weight: 600; color: #fff; }

/* ---- Burn TNGD callout, now nested in the Hybrid Team Bonus modal ---- */
.modal-earn-and-grow .burn-callout {
    position: relative;
    margin-top: 1.5rem;
    padding: 1.2rem 1.3rem;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(231, 205, 124, 0.09), rgba(255, 255, 255, 0));
    border: 1px solid rgba(231, 205, 124, 0.28);
}
.modal-earn-and-grow .burn-callout__tag {
    display: inline-block;
    margin-bottom: 0.55rem;
    padding: 0.2rem 0.6rem;
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #2a1a05;
    background: linear-gradient(90deg, var(--fx-gold), var(--fx-gold-2));
}
.modal-earn-and-grow .burn-callout h4 {
    margin: 0 0 0.35rem;
    font-family: var(--primary-font);
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}
/* must out-specify style.css's `.modal-earn-and-grow .modal-content p { margin-bottom: 0 }` */
.modal-earn-and-grow .modal-content .burn-callout__lead { margin-bottom: 0.5rem; }
.modal-earn-and-grow .burn-callout ul { margin-bottom: 0; }
.modal-earn-and-grow .burn-callout strong { color: var(--fx-gold); }

@media (max-width: 575.98px) {
    .pc-ranks li { grid-template-columns: 1fr auto; row-gap: 0.2rem; }
    .pc-ranks__s { grid-column: 1; }
    .pc-ranks__r { grid-column: 2; grid-row: 1 / span 2; }
}

@media (prefers-reduced-motion: reduce) {
    .pc-tree__flow path,
    .pc-tree__halo,
    .burn-feature__icon--photo img { animation: none; }
    .pc-card,
    .pc-card__more { transition: none; }
}
