/* ---------------------------------------------------------------------------
   Section system — ACF Flexible Content rows.

   EVERY VALUE HERE IS MEASURED FROM psrewards.com.au (computed styles at a 1240px
   viewport, 20 Sep 2026) or read from the MUI sx in HomePage.tsx. Where the live
   site is inconsistent between sections (it is — "Better life." is a 4.5rem heading
   with grey 1.2rem body, "Small savings." is 3.8rem with dark 1.3rem body) the
   variation is exposed as a field on the section rather than averaged away.

   MUI's spacing unit is 8px, so values are multiples of 8 rather than rem-ish.
   Breakpoints follow MUI: sm 600, md 900, lg 1200.
   --------------------------------------------------------------------------- */

:root {
    --psr-container: 1240px;
    --psr-gutter: 16px;                 /* mainPaddingX xs */
    --psr-brand: var(--wp--preset--color--brand, #01BF70);
    --psr-brand-dark: var(--wp--preset--color--brand-dark, #00A85F);
    --psr-dark-green: var(--wp--preset--color--hero-dark, #024638);
    --psr-text: var(--wp--preset--color--text, #0F172A);
    --psr-muted: var(--wp--preset--color--text-muted, #475569);
    --psr-divider: var(--wp--preset--color--divider, #E2E8F0);
}
@media (min-width: 600px)  { :root { --psr-gutter: 24px; } }   /* sm */
@media (min-width: 1200px) { :root { --psr-gutter: 28px; } }   /* lg */

/* Type steps, exactly as the live MUI sx declares them (xs / sm / md / lg):
     h1        2.25 / 3.25 / 4    / 4.5 rem   hero h1, "Better life." h2
     h2        3.25 / 3.25 / 3.8  / 3.8       every other section h2
     lead      1    / 1.1  / 1.2  / 1.2       hero sub-line, grey body
     body-xl   1    / 1.15 / 1.3  / 1.3       body beside the phones
     body-lg   1    / 1.15 / 1.25 / 1.25      Never Miss, Download CTA body
   Stepped rather than fluid: the live sizes jump at the breakpoints, so a fluid ramp
   would sit a few px off everywhere between them. */
:root {
    --psr-h1: 2.25rem; --psr-h2: 3.25rem; --psr-lead: 1rem; --psr-body-xl: 1rem; --psr-body-lg: 1rem;
}
@media (min-width: 600px)  { :root { --psr-h1: 3.25rem; --psr-lead: 1.1rem; --psr-body-xl: 1.15rem; --psr-body-lg: 1.15rem; } }
@media (min-width: 900px)  { :root { --psr-h1: 4rem;    --psr-h2: 3.8rem; --psr-lead: 1.2rem; --psr-body-xl: 1.3rem; --psr-body-lg: 1.25rem; } }
@media (min-width: 1200px) { :root { --psr-h1: 4.5rem; } }

/* The live homepage (only) wraps its sections in ConsumerMain's padded box — 24px
   above and 48 below each run of sections on phones, 28/56 from sm — with the Meet
   band breaking the page into two runs. Business and Contact render their sections
   without it. Structural: WordPress marks the front page body.home. */
/* Pseudo-elements rather than margins: a margin here would collapse into the Meet
   band's own 32/48px margins, and the live values are padding, which does not. */
body.home .psr-header + .psr-section::before,
body.home .psr-cover--meet + .psr-section::before { content: ""; display: block; height: 24px; }
body.home .psr-section:has(+ .psr-cover--meet)::after,
body.home .psr-section:last-of-type::after { content: ""; display: block; height: 48px; }
@media (min-width: 600px) {
    body.home .psr-header + .psr-section::before,
    body.home .psr-cover--meet + .psr-section::before { height: 28px; }
    body.home .psr-section:has(+ .psr-cover--meet)::after,
    body.home .psr-section:last-of-type::after { height: 56px; }
}

/* MUI's CssBaseline puts every element on border-box; every measured width and
   height below assumes it. */
.psr-section, .psr-section *, .psr-section *::before, .psr-section *::after { box-sizing: border-box; }

.psr-section { position: relative; }

.psr-container {
    max-width: var(--psr-container);
    margin-inline: auto;
    padding-inline: var(--psr-gutter);
}


.psr-bg-white { background: var(--wp--preset--color--surface, #fff); }
.psr-bg-mint  { background: var(--wp--preset--color--page, #DDEDEB); }
.psr-bg-dark  { background: var(--psr-dark-green); color: #fff; }
.psr-bg-dark .psr-h1, .psr-bg-dark .psr-h2, .psr-bg-dark .psr-h3 { color: #fff; }

/* ------------------------------------------------------------ typography */
/* Section h2: fontWeight 500, lineHeight 1.1, letterSpacing -0.03em, 3.8rem at md+. */
.psr-h2 {
    font-size: var(--psr-h2);
    font-weight: 500;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--psr-text);
    margin: 0 0 16px;
}
@media (min-width: 600px) { .psr-h2 { margin-bottom: 24px; } }
.psr-h3 { font-size: var(--wp--preset--font-size--heading-3); font-weight: 600; line-height: 1.35; margin: 0 0 12px; }
.psr-lead  { font-size: var(--psr-lead); line-height: 1.6; margin: 0 0 24px; }
.psr-note  { font-size: var(--wp--preset--font-size--sm); color: var(--psr-muted); }
.psr-green { color: var(--psr-brand); }

.psr-align-center { text-align: center; }
.psr-align-center .psr-lead { margin-inline: auto; }
.psr-align-center .psr-buttons { justify-content: center; }

.psr-prose > :first-child { margin-top: 0; }
.psr-prose > :last-child  { margin-bottom: 0; }
.psr-prose p  { line-height: 1.6; }
.psr-prose ul { padding-left: 1.2em; }
.psr-prose li { margin-bottom: .5em; line-height: 1.6; }

/* Buttons. Default = ClaimButton in HomePage.tsx: 700, 1.15rem, 12px 40px, lh 1.35. */
.psr-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }

.psr-btn {
    display: inline-flex; align-items: center; justify-content: center;
    padding: 12px 40px; border-radius: 999px;
    background: var(--psr-brand); color: #fff;
    font-size: 1.15rem; font-weight: 700; line-height: 1.35;
    text-decoration: none;
    transition: background .2s ease, transform .15s ease;
}
.psr-btn:hover { background: var(--psr-brand-dark); color: #fff; text-decoration: none; }
.psr-btn--outline { background: transparent; color: var(--psr-text); border: 2px solid rgba(15, 23, 42, .35); }
.psr-btn--outline:hover { background: rgba(15, 23, 42, .04); border-color: rgba(15, 23, 42, .5); color: var(--psr-text); }
@media (max-width: 599px) { .psr-btn { font-size: 1.05rem; } }

/* ------------------------------------------------------------------- hero */
/* HeroSection: h1 500 / 0.98 / -0.045em / #000; sub 1.2rem 1.55 dark green, max 780;
   button 500 1.1rem 14px 32px min-width 220; strap 600 1.1rem dark green then the
   green line at 1.2rem 400. */
.psr-hero--home.psr-section { padding: 56px 0; }
@media (min-width: 600px) { .psr-hero--home.psr-section { padding: 80px 0; } }
@media (min-width: 900px) { .psr-hero--home.psr-section { padding: 96px 0; } }
.psr-section--hero .psr-container { padding-inline: calc(var(--psr-gutter) + 16px); }
@media (min-width: 600px) { .psr-section--hero .psr-container { padding-inline: calc(var(--psr-gutter) + 32px); } }
.psr-section--hero .psr-h1 {
    font-size: var(--psr-h1);
    font-weight: 500;
    line-height: 0.98;
    letter-spacing: -0.045em;
    color: var(--wp--preset--color--black, #000);
    margin: 0;
}
.psr-section--hero .psr-lead {
    font-size: var(--psr-lead);
    line-height: 1.55;
    color: var(--psr-dark-green);
    max-width: 780px;
    margin: 12px 0 0;
}
.psr-section--hero .psr-buttons { margin-top: 32px; }
.psr-section--hero .psr-btn {
    min-width: 220px; padding: 14px 32px;
    font-size: 1.1rem; font-weight: 500; line-height: 1.5;
}
.psr-section--hero .psr-btn:hover { background: var(--psr-brand); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,.15); }
.psr-strap {
    font-size: 1.1rem; font-weight: 600; line-height: 1.55;
    color: var(--psr-dark-green);
    max-width: 780px;
    margin: 12px 0 0;
}
/* The live sm value here is 0.5rem — the typo noted in docs/07; 1rem until md. */
.psr-strap .psr-green { display: block; font-size: 1rem; font-weight: 400; }
@media (min-width: 900px) { .psr-strap .psr-green { font-size: 1.2rem; } }
.psr-section--hero.psr-align-center .psr-lead,
.psr-section--hero.psr-align-center .psr-strap { margin-inline: auto; }
.psr-section--hero.psr-hero--business .psr-h1 { color: #111; }

/* ------------------------------------------------------------------ cover */
/* MeetPsRewardsSection: min-height 460/560/660/720, margin-block 48, gradient
   rgba(0,0,0,.5) → .15 → .1 left to right, image at center 40%. Eyebrow 1.6rem,
   logo 880 wide, body 1.2rem / 1.6 max 780. */
.psr-cover {
    display: grid; place-items: center; overflow: hidden; isolation: isolate;
    background: #04301F;
    margin-block: 32px;
    min-height: 460px;
    padding: 64px 20px;
}
@media (min-width: 600px)  { .psr-cover { min-height: 560px; padding-inline: 32px; } }
@media (min-width: 900px)  { .psr-cover { min-height: 660px; margin-block: 48px; padding: 80px 48px; } }
@media (min-width: 1200px) { .psr-cover { min-height: 720px; padding-inline: 56px; } }
.psr-cover--medium { min-height: 460px; }

.psr-cover__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 40%; z-index: -2; }
/* Meet PS Rewards: linear-gradient(90deg, rgba(0,0,0,.5) 0%, .15 50%, .1 100%). */
.psr-cover__scrim {
    position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(90deg, rgba(0,0,0,.5) 0%, rgba(0,0,0,.15) 50%, rgba(0,0,0,.1) 100%);
}

.psr-cover__inner { text-align: center; color: #fff; width: 100%; max-width: 900px; padding-inline: 0; }
.psr-cover__inner .psr-h1 { color: #fff; font-size: var(--psr-h2); font-weight: 500; line-height: 1.1; letter-spacing: -0.03em; margin: 0 0 24px; }
.psr-cover__eyebrow { font-size: 1.15rem; line-height: 1.6; font-weight: 400; margin: 0; }
@media (min-width: 600px) { .psr-cover__eyebrow { font-size: 1.35rem; } }
@media (min-width: 900px) { .psr-cover__eyebrow { font-size: 1.6rem; } }
.psr-cover__body { max-width: 780px; margin: 0 auto; font-size: 1.15rem; line-height: 1.6; }
@media (min-width: 600px) { .psr-cover__body { font-size: 1.35rem; } }
@media (min-width: 900px) { .psr-cover__body { font-size: 1.2rem; } }
.psr-cover__logo { width: 300px; max-width: 100%; height: auto; filter: brightness(0) invert(1); margin: 0 auto 32px; display: block; }
@media (min-width: 600px)  { .psr-cover__logo { width: 360px; } }
@media (min-width: 900px)  { .psr-cover__logo { width: 600px; margin-bottom: 48px; } }
@media (min-width: 1200px) { .psr-cover__logo { width: 880px; } }
.psr-cover__inner .psr-buttons { justify-content: center; }

/* ------------------------------------------------------------- media+text */
/* Measured at a 1324px viewport (content column 1184): WatchSpend / OneWallet are a
   flex row, gap 64, both columns 595 (the image column's −70px bleed margin is part of
   the free space); heading 3.8rem with 24 below; body 1.3rem / 1.6 dark, 24 between
   paragraphs; image 100% wide, max 700, hard against the viewport edge; no section
   padding — the phone image sets the height. */
.psr-section--media-text { overflow-x: clip; padding: 0; }
.psr-media { display: flex; flex-direction: column; gap: 40px; }
.psr-media__text { flex: 1 1 0; min-width: 0; }
.psr-media__text .psr-h2 { margin-bottom: 16px; }
@media (min-width: 600px) { .psr-media__text .psr-h2 { margin-bottom: 24px; } }
.psr-media__text .psr-prose p,
.psr-media__text .psr-prose li { font-size: var(--psr-body-xl); line-height: 1.6; margin: 0 0 24px; }
.psr-media__text .psr-buttons { margin-top: 32px; }
.psr-media__img { flex: 1 1 0; min-width: 0; display: flex; justify-content: center; }
.psr-media__img img { width: 100%; max-width: 700px; height: auto; display: block; }
/* A very tall phone mock (Small savings.) is 70% wide at every width. */
.psr-media__img--tall img { width: 70%; }
/* Side-section headings are centred on phones (textAlign xs center, sm left). */
@media (max-width: 599px) {
    .psr-media--right .psr-media__text .psr-h2,
    .psr-media--left  .psr-media__text .psr-h2 { text-align: center; }
    .psr-section--cover + .psr-section--media-text .psr-media__text .psr-h2 { text-align: left; }
}

@media (min-width: 900px) {
    .psr-media--right .psr-media,
    .psr-media--left  .psr-media { flex-direction: row; align-items: center; gap: 64px; }
    .psr-media--left  .psr-media__text { order: 2; }
    .psr-media--left  .psr-media__img  { order: 1; }

    /* Bleed past the content column to the viewport edge — the live BLEED_RIGHT_SX.
       overflow-x: clip on the section absorbs the scrollbar's worth of 100vw. */
    .psr-media--right .psr-media__img,
    .psr-media--left  .psr-media__img {
        --psr-bleed: calc((100vw - min(100vw, var(--psr-container))) / 2 + var(--psr-gutter));
    }
    .psr-media--right .psr-media__img { margin-right: calc(-1 * var(--psr-bleed)); justify-content: flex-end; }
    .psr-media--left  .psr-media__img { margin-left:  calc(-1 * var(--psr-bleed)); justify-content: flex-start; }

    /* …and from md sits at the column's inner edge rather than centred. */
    .psr-media--right .psr-media__img--tall { justify-content: flex-start; }
    .psr-media--left  .psr-media__img--tall { justify-content: flex-end; }
}

/* The image+text section straight after a full-bleed band — "Better life. Smaller
   bill." (OurMembersSection): 4.5rem / 1.08 / -0.035em heading across the full width,
   then a 0.85fr 1.15fr grid (gap 48, 96 at lg; 32px above and below) with the grey
   1.2rem body (max 460) and the button left, the image right — 100% wide, uncapped,
   hard against the edge. Structural, not a setting: it is where the live page puts it. */
/* The heading sits above the padded grid on the live site: nothing above it, then the
   grid's 48 (xs) / 32 (sm+) before the body, and the same below the image. */
.psr-section--cover + .psr-section--media-text .psr-media { padding: 0 0 48px; gap: 40px; }
@media (min-width: 600px) { .psr-section--cover + .psr-section--media-text .psr-media { padding: 0 0 32px; } }
.psr-section--cover + .psr-section--media-text .psr-media__text .psr-h2 {
    font-size: var(--psr-h1);
    line-height: 1.08;
    letter-spacing: -0.035em;
    margin-bottom: 48px;
}
@media (min-width: 600px) { .psr-section--cover + .psr-section--media-text .psr-media__text .psr-h2 { margin-bottom: 32px; } }
.psr-section--cover + .psr-section--media-text .psr-media__text .psr-prose { margin-top: 0; }
.psr-section--cover + .psr-section--media-text .psr-media__text .psr-prose p { margin: 0 0 20px; }
.psr-section--cover + .psr-section--media-text .psr-media__text .psr-buttons { margin-top: 28px; }
.psr-section--cover + .psr-section--media-text .psr-media__img img { max-width: 520px; }
@media (min-width: 900px) {
    .psr-section--cover + .psr-section--media-text .psr-media__text .psr-prose p { margin-bottom: 24px; }
    .psr-section--cover + .psr-section--media-text .psr-media__text .psr-buttons { margin-top: 32px; }
}
.psr-section--cover + .psr-section--media-text .psr-media__text .psr-prose p,
.psr-section--cover + .psr-section--media-text .psr-media__text .psr-prose li {
    font-size: var(--psr-lead);
    line-height: 1.5;
    color: var(--psr-muted);
    max-width: 460px;
}
/* The live heading is two blocks — "Better life." at 1.08 and the green line at 1. */
.psr-section--cover + .psr-section--media-text .psr-media__text .psr-h2 br { display: none; }
.psr-section--cover + .psr-section--media-text .psr-media__text .psr-h2 .psr-green { display: block; line-height: 1; }
.psr-section--cover + .psr-section--media-text .psr-media__text .psr-prose p:last-child { margin-bottom: 0; }
@media (min-width: 900px) {
    .psr-section--cover + .psr-section--media-text .psr-media__img img { max-width: none; }
    .psr-section--cover + .psr-media--right .psr-media,
    .psr-section--cover + .psr-media--left  .psr-media {
        display: grid; grid-template-columns: 0.85fr 1.15fr; grid-template-rows: auto auto 1fr; column-gap: 48px; row-gap: 0;
        align-items: center; padding: 0 0 32px;
    }
    .psr-section--cover + .psr-section--media-text .psr-media__text { display: contents; }
    .psr-section--cover + .psr-section--media-text .psr-media__text .psr-h2     { grid-column: 1 / -1; grid-row: 1; }
    .psr-section--cover + .psr-section--media-text .psr-media__text .psr-prose  { grid-column: 1; grid-row: 2; align-self: start; max-width: 600px; }
    .psr-section--cover + .psr-section--media-text .psr-media__text .psr-buttons{ grid-column: 1; grid-row: 3; align-self: start; }
    .psr-section--cover + .psr-section--media-text .psr-media__img { grid-column: 2; grid-row: 2 / span 2; align-self: center; }
    .psr-section--cover + .psr-media--left .psr-media { grid-template-columns: 1.15fr 0.85fr; }
    .psr-section--cover + .psr-media--left .psr-media__text .psr-prose,
    .psr-section--cover + .psr-media--left .psr-media__text .psr-buttons { grid-column: 2; }
    .psr-section--cover + .psr-media--left .psr-media__img { grid-column: 1; }
}
@media (min-width: 1200px) {
    .psr-section--cover + .psr-media--right .psr-media,
    .psr-section--cover + .psr-media--left  .psr-media { column-gap: 96px; }
}

/* Image below, everything centred — NeverMissTechnologySection: section max 850,
   heading, then the image (max 1000), then 1.25rem body (max 680) with 40px above;
   py 64 / 80 / 112. */
.psr-media--below.psr-section { padding: 64px 0; }
@media (min-width: 600px) { .psr-media--below.psr-section { padding: 80px 0; } }
@media (min-width: 900px) { .psr-media--below.psr-section { padding: 112px 0; } }
.psr-media--below .psr-container { max-width: calc(850px + 2 * var(--psr-gutter)); padding-inline: calc(var(--psr-gutter) + 16px); }
@media (min-width: 600px) { .psr-media--below .psr-container { padding-inline: calc(var(--psr-gutter) + 24px); } }
.psr-media--below .psr-media { display: grid; grid-template-columns: 1fr; gap: 0; justify-items: center; text-align: center; }
.psr-media--below .psr-media__text { display: contents; }
.psr-media--below .psr-media__text .psr-h2 { order: 1; margin-bottom: 16px; }
@media (min-width: 600px) { .psr-media--below .psr-media__text .psr-h2 { margin-bottom: 24px; } }
.psr-media--below .psr-media__img { order: 2; width: 100%; max-width: 1000px; justify-content: center; }
.psr-media--below .psr-media__img img { max-width: 1000px; }
.psr-media--below .psr-media__text .psr-prose { order: 3; max-width: 680px; margin: 32px auto; }
@media (min-width: 600px) { .psr-media--below .psr-media__text .psr-prose { margin: 40px auto; } }
.psr-media--below .psr-media__text .psr-prose p { font-size: var(--psr-body-lg); line-height: 1.6; margin: 0; }
.psr-media--below .psr-media__text .psr-buttons { order: 4; justify-content: center; margin-top: 0; }

/* ------------------------------------------------------------------- grid */
/* ExperienceSection (Categories): heading block max 900 centred with 72px below
   (24 from the h2 + 72 from its wrapper), grid max 1400 wide with 32px padding,
   4 columns gap 24, tiles 220px tall radius 32, label 1.4rem 700 white centred over a
   20% black overlay. */
.psr-section--grid { padding: 64px 0; }
@media (min-width: 600px) { .psr-section--grid { padding: 80px 0; } }
@media (min-width: 900px) { .psr-section--grid { padding: 112px 0; } }
.psr-section--grid .psr-container { padding-inline: calc(var(--psr-gutter) + 16px); }
@media (min-width: 600px) { .psr-section--grid .psr-container { padding-inline: calc(var(--psr-gutter) + 24px); } }
@media (min-width: 900px) { .psr-section--grid .psr-container { padding-inline: calc(var(--psr-gutter) + 32px); } }
.psr-section--grid .psr-h2 { max-width: 900px; margin-inline: auto; margin-bottom: 40px; }
@media (min-width: 600px) { .psr-section--grid .psr-h2 { margin-bottom: 56px; } }
@media (min-width: 900px) { .psr-section--grid .psr-h2 { margin-bottom: 72px; } }

.psr-grid, .psr-cards, .psr-logos { list-style: none; margin: 0; padding: 0; display: grid; gap: 16px; }
@media (min-width: 600px) { .psr-grid { gap: 20px; } }
@media (min-width: 900px) { .psr-grid { gap: 24px; } }

.psr-grid--4 { grid-template-columns: repeat(4, 1fr); }

.psr-grid__item { position: relative; border-radius: 24px; overflow: hidden; height: 100px; }
.psr-section--grid .psr-h2 { padding-inline: 16px; }
@media (min-width: 600px) { .psr-section--grid .psr-h2 { padding-inline: 32px; } }
@media (min-width: 900px) { .psr-section--grid .psr-h2 { padding-inline: 0; } }
@media (min-width: 600px) { .psr-grid__item { height: 220px; } }
@media (min-width: 900px) { .psr-grid__item { border-radius: 32px; } }
.psr-grid__img  { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .5s ease; }
.psr-grid__label {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0, 0, 0, .2);
    color: #fff; font-weight: 700; font-size: 0.8rem; line-height: 1.5;
    text-shadow: 0 2px 12px rgba(0,0,0,.35);
    transition: background-color .4s ease;
}
@media (min-width: 600px) { .psr-grid__label { font-size: 1.25rem; } }
@media (min-width: 900px) { .psr-grid__label { font-size: 1.4rem; } }
.psr-grid__item:hover .psr-grid__img { transform: scale(1.06); }
.psr-grid__item:hover .psr-grid__label { background: rgba(0, 0, 0, .35); }

/* ------------------------------------------------------------------ cards */
/* BetterLifeSection: section max 1100 px 16/24, py 48/80; h2 4rem / 1.1 / -0.035em
   centred; panel 1px divider radius 32 padding 48px 64px, 48 below the heading; two
   columns col-gap 32 row-gap 56; card: 16/11 photo radius 24 with the label over it
   (3rem 500 -0.03em white), h3 1.15rem 600 lh 1.35 20px below, body 0.95rem / 1.55
   max 290, tagline 0.95rem 500 #10B981; hero-style button 72/88 below the grid. */
.psr-section--cards { padding: 48px 0; }
@media (min-width: 900px) { .psr-section--cards { padding: 80px 0; } }
.psr-section--cards .psr-container { max-width: calc(1100px + 2 * var(--psr-gutter)); padding-inline: calc(var(--psr-gutter) + 16px); }
@media (min-width: 600px) { .psr-section--cards .psr-container { padding-inline: calc(var(--psr-gutter) + 24px); } }
.psr-section--cards .psr-h2 { font-size: 2rem; letter-spacing: -0.035em; margin-bottom: 0; }
@media (min-width: 600px) { .psr-section--cards .psr-h2 { font-size: 3rem; } }
@media (min-width: 900px) { .psr-section--cards .psr-h2 { font-size: 4rem; } }

.psr-cards__panel {
    border: 1px solid var(--psr-divider);
    border-radius: 32px;
    padding: 32px 16px;
    margin-top: 32px;
}
@media (min-width: 600px) { .psr-cards__panel { padding: 32px; } }
@media (min-width: 900px) { .psr-cards__panel { padding: 48px 64px; margin-top: 48px; } }
.psr-cards__panel .psr-buttons { justify-content: center; margin-top: 72px; }
@media (min-width: 900px) { .psr-cards__panel .psr-buttons { margin-top: 88px; } }
.psr-cards__panel .psr-btn { min-width: 220px; padding: 14px 32px; font-size: 1.1rem; font-weight: 500; line-height: 1.5; }
.psr-cards__panel .psr-btn:hover { background: var(--psr-brand); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,.15); }

.psr-cards { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr; row-gap: 40px; }
@media (min-width: 600px) { .psr-cards { grid-template-columns: repeat(2, 1fr); column-gap: 24px; row-gap: 40px; } }
@media (min-width: 900px) { .psr-cards { column-gap: 32px; row-gap: 56px; } }

.psr-card { text-align: center; }
.psr-card__media { position: relative; border-radius: 24px; overflow: hidden; }
.psr-card__img { width: 100%; height: auto; aspect-ratio: 16 / 11; object-fit: cover; display: block; }
.psr-card__label {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; margin: 0;
    color: #fff; font-size: 2.25rem; font-weight: 500; letter-spacing: -0.03em; line-height: 1;
    text-shadow: 0 2px 12px rgba(0,0,0,.35);
    pointer-events: none;
}
@media (min-width: 900px) { .psr-card__label { font-size: 3rem; } }
.psr-card__sub { font-size: 1.05rem; font-weight: 600; line-height: 1.35; letter-spacing: normal; margin: 20px 0 0; }
@media (min-width: 900px) { .psr-card__sub { font-size: 1.15rem; } }
.psr-card p { font-size: var(--wp--preset--font-size--sm); line-height: 1.55; margin: 12px auto 0; max-width: 290px; }
.psr-card p.psr-card__tagline { font-weight: 500; line-height: 1.5; color: var(--wp--preset--color--success, #10B981); margin-top: 16px; }

/* ------------------------------------------------------------------ logos */
.psr-section--logos { padding: 64px 0; }
@media (min-width: 900px) { .psr-section--logos { padding: 96px 0; } }
.psr-logos { list-style: none; padding: 0; grid-template-columns: repeat(auto-fit, minmax(120px, 1fr)); align-items: center; margin: 32px 0 0; display: grid; gap: 24px; }
.psr-logos__img { width: 100%; height: auto; filter: grayscale(1); opacity: .7; transition: all .2s ease; }
.psr-logos__img:hover { filter: none; opacity: 1; }

/* -------------------------------------------------------------------- FAQ */
.psr-faq { margin-top: 32px; }
.psr-faq__item { border-bottom: 1px solid var(--psr-divider); padding: 20px 0; }
.psr-faq__item summary {
    cursor: pointer; list-style: none; font-weight: 600;
    font-size: var(--psr-lead);
    color: var(--psr-brand);
    display: flex; justify-content: space-between; gap: 16px;
}
.psr-faq__item summary::-webkit-details-marker { display: none; }
.psr-faq__item summary::after { content: "+"; font-weight: 400; flex: none; }
.psr-faq__item[open] summary::after { content: "\2013"; }
.psr-faq__item .psr-prose { margin-top: 16px; }

/* -------------------------------------------------------------------- CTA */
/* DownloadCTA: max 850 centred, h2 3.8rem with 24 below, body 1.25rem / 1.6 max 680
   with 40 below, button 700 1.1rem 12px 40px. */
.psr-section--cta.psr-align-center { padding: 64px 0; }
@media (min-width: 600px) { .psr-section--cta.psr-align-center { padding: 80px 0; } }
@media (min-width: 900px) { .psr-section--cta.psr-align-center { padding: 112px 0; } }
.psr-section--cta .psr-container { max-width: calc(850px + 2 * var(--psr-gutter)); padding-inline: calc(var(--psr-gutter) + 16px); }
@media (min-width: 600px) { .psr-section--cta .psr-container { padding-inline: calc(var(--psr-gutter) + 24px); } }
.psr-section--cta .psr-lead { font-size: var(--psr-body-lg); line-height: 1.6; max-width: 680px; margin-bottom: 32px; }
@media (min-width: 600px) { .psr-section--cta .psr-lead { margin-bottom: 40px; } }
.psr-section--cta .psr-buttons { margin-top: 0; }
.psr-section--cta .psr-btn { font-size: 1rem; line-height: 1.75; padding: 12px 32px; }
@media (min-width: 600px) { .psr-section--cta .psr-btn { font-size: 1.1rem; padding: 12px 40px; } }
.psr-section--cta .psr-btn:hover { background: var(--psr-brand); transform: translateY(-2px); }

/* The call to action straight after the logo banner — Contact's FinalCTA: 2/2.6/3rem
   heading at 1.08 / -0.04em with 24 below, px 24, py 64/80/96. Structural: it is the
   only place the live site puts a CTA after the banner. */
.psr-cover--banner + .psr-section--cta.psr-section { padding: 64px 0; }
@media (min-width: 600px) { .psr-cover--banner + .psr-section--cta.psr-section { padding: 80px 0; } }
@media (min-width: 900px) { .psr-cover--banner + .psr-section--cta.psr-section { padding: 96px 0; } }
.psr-cover--banner + .psr-section--cta .psr-container { max-width: none; padding-inline: 24px; }
.psr-cover--banner + .psr-section--cta .psr-h2 { color: #111; font-size: 2rem; line-height: 1.08; letter-spacing: -0.04em; margin: 0 0 24px; }
@media (min-width: 600px) { .psr-cover--banner + .psr-section--cta .psr-h2 { font-size: 2.6rem; } }
@media (min-width: 900px) { .psr-cover--banner + .psr-section--cta .psr-h2 { font-size: 3rem; } }

/* ------------------------------------------------------------------- text */
.psr-section--text { padding: 64px 0; }
@media (min-width: 900px) { .psr-section--text { padding: 96px 0; } }
.psr-section--text .psr-prose p { font-size: var(--psr-lead); line-height: 1.6; }

/* ------------------------------------------------------------------- form */
.psr-section--form .psr-lead { font-size: var(--psr-lead); line-height: 1.6; }

/* ===========================================================================
   Business + Contact sections — measured on psrewards.com.au/business and
   /contact (computed styles at 1240px, 20 Sep 2026). The Business page keeps
   its content 56px in from the 1240 column at lg (SECTION_PX 20/32/48/56).
   =========================================================================== */
:root { --psr-biz-px: 20px; }
@media (min-width: 600px)  { :root { --psr-biz-px: 32px; } }
@media (min-width: 900px)  { :root { --psr-biz-px: 48px; } }
@media (min-width: 1200px) { :root { --psr-biz-px: 56px; } }

/* --------------------------------------------------------------- buttons */
/* MUI sizeLarge from consumerTheme: 1.3rem, 17.2px 64px, min 320 (sm+). */
.psr-btn.psr-btn--large { min-width: 260px; padding: 14.8px 48px; font-size: 1.15rem; font-weight: 600; line-height: 1.75; }
@media (min-width: 600px) { .psr-btn.psr-btn--large { min-width: 320px; padding: 17.2px 64px; font-size: 1.3rem; } }
.psr-btn.psr-btn--large.psr-btn--outline { font-weight: 500; border-color: #111; color: #111; }
.psr-btn.psr-btn--large.psr-btn--outline:hover { border-color: #111; background: rgba(0, 0, 0, .04); }
/* Contact "Sign Up.": 0.78rem, 9.6px 28px. */
.psr-btn.psr-btn--small { min-width: 0; padding: 9.6px 28px; font-size: 0.78rem; font-weight: 600; line-height: 1.75; }

/* ------------------------------------------------------------------ hero */
/* Business: h1 72/500/1.08/-0.04em #111 max 900, 18px grey sub max 620, pt 112 pb 120. */
.psr-hero--business .psr-container { padding-inline: var(--psr-biz-px); }
.psr-hero--business.psr-section { padding: 56px 0 64px; }
@media (min-width: 600px) { .psr-hero--business.psr-section { padding: 80px 0 88px; } }
@media (min-width: 900px) { .psr-hero--business.psr-section { padding: 112px 0 120px; } }
.psr-hero--business .psr-h1 {
    font-size: 44px; line-height: 1.08; letter-spacing: -0.04em; font-weight: 500;
    color: #111; max-width: 900px; margin: 0;
}
@media (min-width: 600px)  { .psr-hero--business .psr-h1 { font-size: 52px; } }
@media (min-width: 900px)  { .psr-hero--business .psr-h1 { font-size: 64px; } }
@media (min-width: 1200px) { .psr-hero--business .psr-h1 { font-size: 72px; } }
.psr-hero--business .psr-lead {
    font-size: 16px; line-height: 1.5; color: var(--psr-muted); max-width: 620px; margin: 24px 0 0;
}
@media (min-width: 900px) { .psr-hero--business .psr-lead { font-size: 18px; margin-top: 32px; } }
.psr-hero--business .psr-btn { min-width: 0; padding: 12px 40px; font-size: 1.15rem; font-weight: 700; line-height: 1.35; }

/* Contact: h1 4.4rem/500/1/-0.04em #111, 18px grey sub max 700, pt 88 pb 96, icons. */
.psr-hero--contact .psr-container { position: relative; padding-inline: 16px; }
.psr-hero--contact.psr-section { padding: 56px 0 64px; }
@media (min-width: 600px) { .psr-hero--contact.psr-section { padding: 72px 0 80px; } }
@media (min-width: 900px) { .psr-hero--contact.psr-section { padding: 88px 0 96px; } }
.psr-hero--contact .psr-h1 {
    font-size: 2.8rem; line-height: 1; letter-spacing: -0.04em; font-weight: 500; color: #111; margin: 0 0 16px;
}
@media (min-width: 600px) { .psr-hero--contact .psr-h1 { font-size: 3.6rem; } }
@media (min-width: 900px) { .psr-hero--contact .psr-h1 { font-size: 4.4rem; } }
.psr-hero--contact .psr-lead { font-size: 18px; line-height: 1.35; color: var(--psr-muted); max-width: 700px; margin: 0 auto; }
.psr-hero__icon { position: absolute; width: 40px; height: 40px; z-index: 2; pointer-events: none; }
.psr-hero__icon--rocket { left: 12%; bottom: -21px; transform: rotate(-15deg); }
.psr-hero__icon--click  { right: 14%; top: -1px; transform: rotate(10deg); }
@media (min-width: 600px) { .psr-hero__icon--rocket { left: 16%; } .psr-hero__icon--click { right: 18%; } }
@media (min-width: 900px) { .psr-hero__icon--rocket { left: 23%; bottom: -43px; } .psr-hero__icon--click { right: 25%; top: -18px; } }

/* ----------------------------------------------------------------- cover */
.psr-cover__heading { color: #fff; margin: 0; }
.psr-cover__body p { margin: 0; }

/* panel: Business VerticalPanel — left, 72px heading, 17px body max 640, strong gradient. */
.psr-cover--panel { margin-block: 0; place-items: center start; min-height: 460px; padding: 64px var(--psr-biz-px); }
@media (min-width: 600px)  { .psr-cover--panel { min-height: 560px; } }
@media (min-width: 900px)  { .psr-cover--panel { min-height: 660px; padding-block: 80px; } }
@media (min-width: 1200px) { .psr-cover--panel { min-height: 720px; } }
.psr-cover--panel .psr-cover__img { object-position: center; }
.psr-cover--panel .psr-cover__scrim {
    background: linear-gradient(90deg, rgba(0,0,0,.72) 0%, rgba(0,0,0,.45) 50%, rgba(0,0,0,.15) 100%);
}
.psr-cover--panel .psr-cover__inner { width: 100%; max-width: 1240px; margin-inline: auto; text-align: left; }
.psr-cover--panel .psr-cover__heading {
    font-size: 40px; line-height: 1.08; letter-spacing: -0.035em; font-weight: 500;
}
@media (min-width: 600px)  { .psr-cover--panel .psr-cover__heading { font-size: 52px; } }
@media (min-width: 900px)  { .psr-cover--panel .psr-cover__heading { font-size: 64px; } }
@media (min-width: 1200px) { .psr-cover--panel .psr-cover__heading { font-size: 72px; } }
.psr-cover--panel .psr-cover__body { max-width: 640px; margin: 16px 0 0; font-size: 15px; line-height: 1.5; color: rgba(255,255,255,.92); }
@media (min-width: 900px) { .psr-cover--panel .psr-cover__body { margin-top: 20px; font-size: 17px; } }
.psr-cover--panel .psr-buttons { justify-content: flex-start; margin-top: 28px; }
@media (min-width: 900px) { .psr-cover--panel .psr-buttons { margin-top: 36px; } }
.psr-cover--panel .psr-btn { min-width: 0; padding: 11.2px 28px; font-size: 1rem; font-weight: 600; line-height: 1.75; }
@media (min-width: 900px) { .psr-cover--panel .psr-btn { padding: 13.6px 36px; font-size: 1.1rem; } }
.psr-cover--panel .psr-btn:hover { background: #01a862; }

/* partner: Contact PartnerSection — centred, 3.2rem heading, flat green tint, large button. */
.psr-cover--partner { margin-block: 0; min-height: 360px; padding: 48px 24px; background: transparent; }
@media (min-width: 600px) { .psr-cover--partner { min-height: 430px; } }
@media (min-width: 900px) { .psr-cover--partner { min-height: 500px; } }
.psr-cover--partner .psr-cover__img { object-position: center; }
.psr-cover--partner .psr-cover__scrim { background: rgba(18, 50, 20, .35); }
.psr-cover--partner .psr-cover__inner { max-width: 650px; }
.psr-cover--partner .psr-cover__heading { font-size: 2rem; line-height: 1.05; letter-spacing: -0.04em; font-weight: 500; margin: 0 0 16px; }
@media (min-width: 600px) { .psr-cover--partner .psr-cover__heading { font-size: 2.6rem; } }
@media (min-width: 900px) { .psr-cover--partner .psr-cover__heading { font-size: 3.2rem; } }
.psr-cover--partner .psr-cover__body { max-width: 500px; margin: 0 auto 24px; padding: 12px 16px; font-size: 1rem; line-height: 1.35; text-shadow: 0 1px 4px rgba(0,0,0,.35); }
.psr-cover--partner .psr-buttons { justify-content: center; margin-top: 0; }
@media (max-width: 599px) { .psr-cover--partner .psr-btn.psr-btn--large { font-size: 0.75rem; padding: 9.2px 24px; } }

/* banner: Contact BrandBanner — 430px band, 400px logo, 12% tint. */
.psr-cover--banner { margin-block: 0; min-height: 0; height: 240px; padding: 0; background: transparent; }
@media (min-width: 600px) { .psr-cover--banner { height: 330px; } }
@media (min-width: 900px) { .psr-cover--banner { height: 430px; } }
.psr-cover--banner .psr-cover__scrim { background: rgba(0, 0, 0, .12); }
.psr-cover--banner .psr-cover__img { object-position: center; }
.psr-cover--banner .psr-cover__logo { width: 180px; margin: 0 auto; }
@media (min-width: 600px) { .psr-cover--banner .psr-cover__logo { width: 240px; } }
@media (min-width: 900px) { .psr-cover--banner .psr-cover__logo { width: 400px; } }

/* ------------------------------------------------------------------ band */
/* FeesBand: black, photo right, 72px/600 white heading, 28px/700 lead, 19px body, 26px uppercase link. */
.psr-band { position: relative; overflow: hidden; isolation: isolate; background: #000; color: #fff; padding: 64px 0; }
@media (min-width: 600px) { .psr-band { padding: 96px 0; } }
@media (min-width: 900px) { .psr-band { padding: 128px 0; } }
.psr-band .psr-container { padding-inline: var(--psr-biz-px); }
.psr-band__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; z-index: -2; }
@media (min-width: 900px) { .psr-band__img { object-position: right center; } }
.psr-band__scrim {
    position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(90deg, rgba(0,0,0,.97) 0%, rgba(0,0,0,.92) 30%, rgba(0,0,0,.55) 55%, rgba(0,0,0,.15) 80%, rgba(0,0,0,.05) 100%);
}
.psr-band__inner { max-width: 100%; }
@media (min-width: 900px)  { .psr-band__inner { max-width: 58%; } }
@media (min-width: 1280px) { .psr-band__inner { max-width: 900px; } }
.psr-band__heading { color: #fff; font-size: 32px; line-height: 1.08; letter-spacing: -0.03em; font-weight: 600; margin: 0; }
@media (min-width: 600px)  { .psr-band__heading { font-size: 44px; } }
@media (min-width: 900px)  { .psr-band__heading { font-size: 56px; } }
@media (min-width: 1200px) { .psr-band__heading { font-size: 72px; } }
.psr-band__lead { font-size: 18px; line-height: 1.3; font-weight: 700; letter-spacing: -0.02em; margin: 24px 0 0; }
@media (min-width: 600px) { .psr-band__lead { font-size: 22px; } }
@media (min-width: 900px) { .psr-band__lead { font-size: 28px; margin-top: 32px; } }
.psr-band__body { max-width: 620px; font-size: 15px; line-height: 1.5; color: rgba(255,255,255,.92); margin: 16px 0 0; }
@media (min-width: 600px) { .psr-band__body { font-size: 17px; } }
@media (min-width: 900px) { .psr-band__body { font-size: 19px; margin-top: 24px; } }
.psr-band__link {
    display: inline-block; margin-top: 24px;
    font-size: 18px; font-weight: 700; letter-spacing: 0.01em; text-transform: uppercase; text-decoration: none;
    color: var(--wp--preset--color--success, #10B981);
}
@media (min-width: 600px) { .psr-band__link { font-size: 22px; } }
@media (min-width: 900px) { .psr-band__link { font-size: 26px; margin-top: 32px; } }
.psr-band__link:hover { text-decoration: underline; }

/* -------------------------------------------------------------- benefits */
/* MoreOpportunities (pt 128 pb 48) + BenefitCards (pb 128). */
.psr-benefits { padding: 72px 0; }
@media (min-width: 600px) { .psr-benefits { padding: 96px 0; } }
@media (min-width: 900px) { .psr-benefits { padding: 128px 0; } }
.psr-benefits .psr-container { padding-inline: var(--psr-biz-px); }
.psr-benefits__heading { color: #111; font-size: 40px; line-height: 1.1; letter-spacing: -0.04em; font-weight: 500; margin: 0; }
@media (min-width: 600px)  { .psr-benefits__heading { font-size: 48px; } }
@media (min-width: 900px)  { .psr-benefits__heading { font-size: 60px; } }
@media (min-width: 1200px) { .psr-benefits__heading { font-size: 68px; } }
.psr-benefits__intro { max-width: 620px; margin: 24px 0 0; }
.psr-benefits__intro p { font-size: 16px; line-height: 1.5; color: var(--psr-muted); margin: 0; }
@media (min-width: 900px) { .psr-benefits__intro { margin-top: 32px; } .psr-benefits__intro p { font-size: 18px; } }
.psr-benefits__list { list-style: none; padding: 0; margin: 32px 0 0; max-width: 620px; display: flex; flex-direction: column; gap: 16px; }
@media (min-width: 600px) { .psr-benefits__list { margin-top: 40px; } }
@media (min-width: 900px) { .psr-benefits__list { margin-top: 48px; gap: 20px; } }
.psr-benefits__pill { background: var(--psr-brand); color: #fff; border-radius: 40px; padding: 20px 24px; }
@media (min-width: 900px) { .psr-benefits__pill { border-radius: 48px; padding: 24px 32px; } }
.psr-benefits__title { font-size: 20px; line-height: 1.2; letter-spacing: -0.02em; font-weight: 500; color: #fff; margin: 0; }
@media (min-width: 900px) { .psr-benefits__title { font-size: 24px; } }
.psr-benefits__body { font-size: 14px; line-height: 1.45; color: rgba(255,255,255,.92); margin: 8px 0 0; }
@media (min-width: 900px) { .psr-benefits__body { font-size: 15px; } }
/* The outro is a flex sibling of the pills on the live site: the list gap (16 / 20)
   plus its own 24 / 32. */
.psr-benefits__outro { max-width: 620px; margin-top: 40px; padding: 20px 24px; color: #111; }
@media (min-width: 900px) { .psr-benefits__outro { margin-top: 52px; padding: 24px 32px; } }
.psr-benefits__outro p { max-width: 460px; font-size: var(--psr-lead); line-height: 1.5; margin: 0; }

/* ------------------------------------------------------------- statement */
/* OnePlatform: 66px centred heading, arrow 44px 48px below, pt 112 pb 88. */
.psr-statement { padding: 64px 0 56px; }
@media (min-width: 600px) { .psr-statement { padding: 88px 0 72px; } }
@media (min-width: 900px) { .psr-statement { padding: 112px 0 88px; } }
.psr-statement .psr-container { padding-inline: var(--psr-biz-px); display: flex; flex-direction: column; align-items: center; }
.psr-statement__heading { color: #111; font-size: 34px; line-height: 1.12; letter-spacing: -0.035em; font-weight: 500; margin: 0; }
@media (min-width: 600px)  { .psr-statement__heading { font-size: 46px; } }
@media (min-width: 900px)  { .psr-statement__heading { font-size: 58px; } }
@media (min-width: 1200px) { .psr-statement__heading { font-size: 66px; } }
.psr-statement__arrow { width: 34px; height: auto; margin-top: 32px; color: #111; }
@media (min-width: 900px) { .psr-statement__arrow { width: 44px; margin-top: 48px; } }

/* ----------------------------------------------------------------- tiles */
/* FindTheRightFit: 66px heading, 3 square photos radius 48 gap 28, 24px caption over a
   42% tint, 320px button under each; pt/pb 128. */
.psr-tiles { padding: 72px 0; }
@media (min-width: 600px) { .psr-tiles { padding: 96px 0; } }
@media (min-width: 900px) { .psr-tiles { padding: 128px 0; } }
.psr-tiles .psr-container { padding-inline: var(--psr-biz-px); }
.psr-tiles__heading { color: #111; font-size: 34px; line-height: 1.12; letter-spacing: -0.035em; font-weight: 500; margin: 0; }
@media (min-width: 600px)  { .psr-tiles__heading { font-size: 46px; } }
@media (min-width: 900px)  { .psr-tiles__heading { font-size: 58px; } }
@media (min-width: 1200px) { .psr-tiles__heading { font-size: 66px; } }
.psr-tiles__list { list-style: none; padding: 0; margin: 40px 0 0; display: grid; grid-template-columns: 1fr; gap: 32px; }
@media (min-width: 900px) { .psr-tiles__list { margin-top: 64px; grid-template-columns: repeat(3, 1fr); gap: 28px; } }
.psr-tiles__item { display: flex; flex-direction: column; align-items: center; }
.psr-tiles__photo { position: relative; width: 100%; aspect-ratio: 1 / 1; border-radius: 48px; overflow: hidden; }
.psr-tiles__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.psr-tiles__caption {
    position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; margin: 0;
    padding: 0 24px; background: rgba(0, 0, 0, .42); color: #fff; text-align: center;
    font-size: 22px; line-height: 1.25; letter-spacing: -0.02em; font-weight: 500;
}
@media (min-width: 900px) { .psr-tiles__caption { font-size: 24px; } }
.psr-tiles__btn {
    width: 100%; max-width: 320px; margin-top: 20px; gap: 8px;
    padding: 12px 24px; font-size: 1rem; font-weight: 600; line-height: 1.75;
}
@media (min-width: 900px) { .psr-tiles__btn { margin-top: 24px; font-size: 1.05rem; } }
.psr-tiles__btn:hover { background: #01a862; }
.psr-tiles__arrow { font-size: 1.25em; line-height: 1; }

/* ------------------------------------------------------------------- cta */
/* Business ClosingCta: right-aligned, 64px heading max 1000, 17px grey body max 900, outlined large button; pt 80 pb 144. */
.psr-section--cta.psr-align-right .psr-container { max-width: 1240px; padding-inline: var(--psr-biz-px); display: flex; flex-direction: column; align-items: flex-start; text-align: left; }
@media (min-width: 900px) { .psr-section--cta.psr-align-right .psr-container { align-items: flex-end; text-align: right; } }
.psr-section--cta.psr-align-right { padding: 48px 0 80px; }
@media (min-width: 600px) { .psr-section--cta.psr-align-right { padding: 64px 0 112px; } }
@media (min-width: 900px) { .psr-section--cta.psr-align-right { padding: 80px 0 144px; } }
.psr-section--cta.psr-align-right .psr-h2 { color: #111; font-size: 34px; line-height: 1.12; letter-spacing: -0.035em; max-width: 1000px; margin: 0; }
@media (min-width: 600px)  { .psr-section--cta.psr-align-right .psr-h2 { font-size: 44px; } }
@media (min-width: 900px)  { .psr-section--cta.psr-align-right .psr-h2 { font-size: 56px; } }
@media (min-width: 1200px) { .psr-section--cta.psr-align-right .psr-h2 { font-size: 64px; } }
.psr-section--cta.psr-align-right .psr-lead { max-width: 900px; font-size: 15px; line-height: 1.5; color: var(--psr-muted); margin: 20px 0 0; }
@media (min-width: 900px) { .psr-section--cta.psr-align-right .psr-lead { font-size: 17px; margin-top: 24px; } }
.psr-section--cta.psr-align-right .psr-buttons { justify-content: flex-start; margin-top: 28px; }
@media (min-width: 900px) { .psr-section--cta.psr-align-right .psr-buttons { justify-content: flex-end; margin-top: 36px; } }

/* -------------------------------------------------------------------- FAQ */
/* Contact FAQSection: px 32 py 128, 3.75rem/600 heading, 1.35rem green questions with chevron,
   answers open by default at 1.05rem/1.6 max 900, 36px between items, no dividers. */
.psr-section--faq .psr-container { padding-inline: 24px; }
@media (min-width: 600px) { .psr-section--faq .psr-container { padding-inline: 32px; } }
.psr-section--faq { padding: 80px 0; }
@media (min-width: 600px) { .psr-section--faq { padding: 128px 0; } }
.psr-faq__heading { font-size: 2.1rem; font-weight: 600; line-height: 1.15; letter-spacing: -0.02em; color: var(--psr-text); margin: 0; }
@media (min-width: 600px)  { .psr-faq__heading { font-size: 2.9rem; } }
@media (min-width: 900px)  { .psr-faq__heading { font-size: 3.25rem; } }
@media (min-width: 1200px) { .psr-faq__heading { font-size: 3.75rem; } }
.psr-faq { margin-top: 28px; display: flex; flex-direction: column; gap: 28px; }
@media (min-width: 600px) { .psr-faq { margin-top: 40px; gap: 36px; } }
.psr-faq__item { border: 0; padding: 0; }
.psr-faq__item summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.psr-faq__item summary::-webkit-details-marker { display: none; }
.psr-faq__item summary::after,
.psr-faq__item[open] summary::after { content: none; }
.psr-faq__q { color: var(--psr-brand); font-size: 1.15rem; font-weight: 600; line-height: 1.35; letter-spacing: normal; margin: 0; }
@media (min-width: 600px) { .psr-faq__q { font-size: 1.35rem; } }
.psr-faq__chevron { width: 28px; height: 28px; flex: none; color: var(--psr-text); transition: transform .2s; transform: rotate(-90deg); }
.psr-faq__item[open] .psr-faq__chevron { transform: none; }
.psr-faq__item .psr-faq__a.psr-prose { margin-top: 12px; max-width: 900px; }
.psr-faq__a p { font-size: 0.95rem; line-height: 1.6; margin: 0; }
@media (min-width: 600px) { .psr-faq__a p { font-size: 1.05rem; } }

/* ------------------------------------------------------------------- form */
/* ContactFormSection: 760px column with 40px inset, 3.2rem/500/-0.04em #111 heading, 0.85rem grey intro. */
.psr-section--form .psr-container { max-width: 760px; padding-inline: 24px; }
@media (min-width: 600px) { .psr-section--form .psr-container { padding-inline: 32px; } }
@media (min-width: 900px) { .psr-section--form .psr-container { padding-inline: 40px; } }
.psr-form__heading { color: #111; font-size: 2.2rem; line-height: 1.05; letter-spacing: -0.04em; font-weight: 500; margin: 0 0 16px; }
@media (min-width: 600px) { .psr-form__heading { font-size: 2.8rem; } }
@media (min-width: 900px) { .psr-form__heading { font-size: 3.2rem; } }
.psr-form__intro { max-width: 620px; font-size: 0.78rem; line-height: 1.45; color: var(--psr-muted); margin: 0 0 28px; }
@media (min-width: 600px) { .psr-form__intro { font-size: 0.85rem; } }
.psr-section--form .psr-note { margin-top: 16px; }
/* The live form block has no top padding (the hero supplies it) and 64/88px below. A
   form on a mint band (Register's referral form) gets the same above. */
.psr-section--form { padding: 0 0 64px; }
.psr-section--form.psr-bg-mint { padding-top: 64px; }
@media (min-width: 900px) { .psr-section--form { padding-bottom: 88px; } .psr-section--form.psr-bg-mint { padding-top: 88px; } }

/* ===========================================================================
   Legal pages — measured on psrewards.com.au/legals/privacy-policy (1240 and
   390): grey #F3F3F5 surface, 960px column (pad 28 / 16, 28 above, 56 / 48
   below), 34px/700 title with 8 below, 14px grey updated line with 24 below,
   outlined #F8FAF9 card radius 24 pad 24 / 20; h2 20/700 lh 32 mt 24; h3 Inter
   16/600 lh 28 mt 16; p 16 / 1.7 grey mt 12; lists my 12 pl 24, li mb 6; green
   600 links, underline on hover.
   =========================================================================== */
.psr-legal { background: #F3F3F5; }
.psr-legal__main { max-width: 960px; margin-inline: auto; padding: 24px 16px 48px; }
@media (min-width: 600px)  { .psr-legal__main { padding: 28px 24px 56px; } }
@media (min-width: 1200px) { .psr-legal__main { padding-inline: 28px; } }
.psr-legal__title { font-size: 34px; font-weight: 700; line-height: 1.235; letter-spacing: 0.25px; color: var(--psr-text); margin: 0 0 8px; }
.psr-legal__updated { font-size: 14px; line-height: 1.43; color: var(--psr-muted); margin: 0 0 24px; }
.psr-legal__card {
    background: rgb(248, 250, 249);
    border: 1px solid var(--psr-divider);
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, .06);
    color: var(--psr-muted);
}
@media (min-width: 600px) { .psr-legal__card { padding: 24px; } }
.psr-legal__card > :first-child { margin-top: 0; }
.psr-legal__card h2 { font-size: 20px; font-weight: 700; line-height: 1.6; letter-spacing: 0.15px; color: var(--psr-text); margin: 24px 0 0; }
.psr-legal__card h3 { font-family: var(--wp--preset--font-family--nav, Inter, system-ui, sans-serif); font-size: 16px; font-weight: 600; line-height: 1.75; color: var(--psr-text); margin: 16px 0 0; }
.psr-legal__card p  { font-size: 16px; line-height: 1.7; margin: 12px 0 0; }
.psr-legal__card ul, .psr-legal__card ol { margin: 12px 0; padding: 0 0 0 24px; }
.psr-legal__card li { font-size: 16px; line-height: 1.7; margin: 0 0 6px; }
.psr-legal__card a  { color: var(--psr-brand); font-weight: 600; text-decoration: none; }
.psr-legal__card a:hover { text-decoration: underline; }

/* ===========================================================================
   Promotion terms — measured on psrewards.com.au/triple-high-five-terms: cream
   page, 860px column (pad 56/40/80, phones 32/20/56); dark-green hero card
   radius 24 pad 44 48 (phones 32 28) with a 9px uppercase green pill, 44px/900
   title (28 on phones) whose italic line is yellow, 13px/500 55% white intro;
   three yellow chips (36px/900 italic value, 10px uppercase label); a white
   card radius 20 pad 48 (24) holding numbered sections: 11px/800 uppercase
   green label, 16px/900 heading with a hairline under it, 14px/500 body at
   80% dark green, 1px rules 32px apart.
   =========================================================================== */
.psr-promo { background: rgb(255, 248, 240); color: #024638; }
.psr-promo__main { max-width: 860px; margin-inline: auto; padding: 32px 20px 56px; }
@media (min-width: 600px) { .psr-promo__main { padding: 56px 40px 80px; } }

.psr-promo__hero { position: relative; overflow: hidden; background: #024638; border-radius: 24px; padding: 32px 28px; margin-bottom: 40px; color: #fff; }
@media (min-width: 600px) { .psr-promo__hero { padding: 44px 48px; } }
/* The live hero's faint hands watermark. */
.psr-promo__hero::after { content: "🙌"; position: absolute; right: 20px; bottom: -10px; font-size: 72px; line-height: 1; opacity: .08; pointer-events: none; }
@media (min-width: 600px) { .psr-promo__hero::after { right: 40px; font-size: 100px; } }
.psr-promo__eyebrow {
    display: inline-block; margin-bottom: 18px; padding: 5px 14px; border-radius: 999px;
    background: #00BF6F; color: #024638;
    font-size: 9px; font-weight: 800; letter-spacing: 0.14em; line-height: 1.5; text-transform: uppercase;
}
.psr-promo__title { font-size: 28px; font-weight: 900; line-height: 1; letter-spacing: -0.03em; color: #fff; margin: 0 0 10px; }
@media (min-width: 600px) { .psr-promo__title { font-size: 44px; } }
.psr-promo__title em { font-style: italic; color: rgb(251, 222, 64); }
.psr-promo__intro { font-size: 13px; font-weight: 500; line-height: 1.5; color: rgba(255, 255, 255, .55); margin: 0; }

.psr-promo__chips { display: grid; grid-template-columns: 1fr; gap: 12px; margin-bottom: 36px; }
@media (min-width: 600px) { .psr-promo__chips { grid-template-columns: repeat(3, 1fr); } }
/* Yellow, green, pink — the live chips cycle through the three. */
.psr-promo__chip { background: rgb(251, 222, 64); border-radius: 16px; padding: 16px 18px; }
.psr-promo__chip:nth-child(3n+2) { background: rgb(0, 191, 111); }
.psr-promo__chip:nth-child(3n)   { background: rgb(251, 168, 208); }
@media (min-width: 600px) { .psr-promo__chip { padding: 18px 20px; } }
.psr-promo__chip-value { display: block; font-size: 36px; font-weight: 900; font-style: italic; line-height: 1; letter-spacing: -0.04em; color: #024638; }
.psr-promo__chip-label { display: block; margin-top: 4px; font-size: 10px; font-weight: 800; letter-spacing: 0.07em; line-height: 1.45; text-transform: uppercase; color: rgba(2, 70, 56, .65); }

.psr-promo__card { background: #fff; border: 1px solid rgba(2, 70, 56, .09); border-radius: 20px; padding: 24px; }
@media (min-width: 600px) { .psr-promo__card { padding: 48px; } }
.psr-promo__rule { border: 0; border-bottom: 1px solid rgba(2, 70, 56, .08); margin: 32px 0; }
.psr-promo__label { font-size: 11px; font-weight: 800; letter-spacing: 0.14em; line-height: 1.5; text-transform: uppercase; color: #00BF6F; margin: 0 0 6px; }
.psr-promo__heading {
    font-size: 16px; font-weight: 900; letter-spacing: -0.02em; line-height: 1.5; color: #024638;
    margin: 0 0 14px; padding-bottom: 10px; border-bottom: 1px solid rgba(2, 70, 56, .08);
}
.psr-promo__body p { font-size: 14px; font-weight: 500; line-height: 1.75; color: rgba(2, 70, 56, .8); margin: 0 0 10px; }
.psr-promo__body p:last-child { margin-bottom: 0; }
.psr-promo__body ol, .psr-promo__body ul { margin: 0 0 10px; padding-left: 20px; }
.psr-promo__body li { font-size: 14px; font-weight: 500; line-height: 1.75; color: rgba(2, 70, 56, .8); margin: 0 0 6px; padding-left: 4px; }
.psr-promo__body li:last-child { margin-bottom: 0; }
.psr-promo__body strong { color: #024638; font-weight: 700; }
.psr-promo__body mark { background: rgba(251, 222, 64, .25); color: #024638; font-weight: 700; border-radius: 4px; padding: 1px 4.8px; }
.psr-promo__body a { color: #024638; font-weight: 700; }
