/* ============================================================
   WPAcquire theme, house style
   Poppins (headings) + Inter (reading) · white ground · blue accent
   Loaded after the WPAcquire Core plugin stylesheet; the :root
   block below re-skins the plugin's components through its own
   CSS variables so dashboard, forms and messaging match.
   ============================================================ */

:root {
	/* Palette lifted from plugins.wpcenter.io: petrol ink, mint grounds, teal
	   as the accent. Teal is a highlight colour, never a button background with
	   white on it, because it does not carry that contrast. */
	--petrol: #152C35; --petrol2: #1D3E4A; --petrol3: #0E2028;
	--acc: #5FC7C0; --acc2: #8FE8D6; --acc-ink: #215158; --acc-text: #2E8B84; --acc6: #41727A; --acc7: #2E5A62;
	--acc50: #F2FCF8; --acc100: #CFEDE4;
	--ink: #152C35; --ink2: #1D3E4A; --body: #4E6169; --muted: #728288; --faint: #93A5A9;
	--white: #fff; --tint: #F5FCFA; --tint2: #EBFAF6; --tint3: #DFF5EF;
	--line: #E2EBEC; --line2: #D6EAE7;
	--green: #3FA98F; --green50: #E5F7F2; --amber: #C9924E; --amber50: #FBF3E8;
	--violet: #7A7FA8; --violet50: #F0F1F8; --red: #C4685C; --red50: #FBEEEC;
	--pad: clamp(18px, 4.5vw, 56px); --sec: clamp(52px, 6vw, 78px); --hdr: 100px;
	--r-sm: 14px; --r-md: 22px; --r-lg: 32px; --r-xl: 44px; --r-2xl: 56px;
	--s1: 0 2px 4px rgba(21,44,53,.03), 0 18px 40px -26px rgba(21,44,53,.28);
	--s2: 0 3px 6px rgba(21,44,53,.04), 0 34px 70px -34px rgba(21,44,53,.38);
	--s3: 0 4px 10px rgba(21,44,53,.05), 0 46px 90px -38px rgba(21,44,53,.45);
	--fh: Poppins, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
	--fb: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

	/* WPAcquire Core plugin variables → new palette */
	--wpa-base: var(--white); --wpa-contrast: var(--ink); --wpa-foreground: var(--ink2);
	--wpa-muted: var(--body); --wpa-muted-light: var(--faint);
	--wpa-surface: var(--tint); --wpa-surface-light: #FAFDFC; --wpa-border: var(--line);
	--wpa-accent: var(--petrol); --wpa-accent-dark: var(--petrol3); --wpa-accent-light: var(--acc100);
	--wpa-danger: var(--red); --wpa-warning: var(--amber); --wpa-success: var(--green);
	--wpa-radius: var(--r-sm); --wpa-radius-lg: var(--r-md);
	--wpa-shadow: var(--s1); --wpa-shadow-md: var(--s2);
}

html { scroll-behavior: smooth; }
body { background: var(--white); color: var(--body); font-family: var(--fb); font-size: 17px; line-height: 1.72; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
a { color: inherit; text-decoration: none; }
p { margin: 0; }
h1, h2, h3, h4 { margin: 0; font-family: var(--fh); color: var(--ink); font-weight: 700; letter-spacing: -.022em; line-height: 1.12; text-wrap: balance; }
:focus-visible { outline: 2px solid var(--acc); outline-offset: 3px; border-radius: 6px; }
.wp-site-blocks > * { margin-block-start: 0 !important; }
/* Author display rules outrank the UA sheet, so [hidden] needs to win back. */
[hidden] { display: none !important; }
.wpa-wrap { max-width: 1300px; margin-inline: auto; padding-inline: var(--pad); }

/* ---------- Primitives ---------- */
.wpa-eyebrow { display: inline-flex; align-items: center; gap: 9px; height: 32px; padding: 0 15px; border-radius: 999px; background: var(--white); border: 1px solid var(--line); box-shadow: var(--s1); font-family: var(--fb); font-size: 13.5px; font-weight: 500; color: var(--ink); }
.wpa-eyebrow::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--acc); flex: none; }

.wpa-b { display: inline-flex; align-items: center; justify-content: center; gap: 10px; height: 56px; padding: 0 30px; border-radius: 999px; border: 1.5px solid transparent; font-family: var(--fb); font-size: 16px; font-weight: 600; letter-spacing: -.01em; cursor: pointer; line-height: 1; transition: background .18s, color .18s, border-color .18s, box-shadow .22s, transform .18s; }
.wpa-b--ink { background: var(--petrol); color: #fff; box-shadow: 0 14px 30px -14px rgba(21,44,53,.75), inset 0 1px 0 rgba(255,255,255,.14); } .wpa-b--ink:hover { background: var(--ink2); color: #fff; transform: translateY(-2px); box-shadow: 0 12px 24px -12px rgba(21,44,53,.6); }
.wpa-b--acc { background: var(--acc2); color: var(--petrol3); box-shadow: 0 14px 30px -16px rgba(95,199,192,.9); } .wpa-b--acc:hover { background: #A6EFE0; color: var(--petrol3); transform: translateY(-2px); }
.wpa-b--amber { background: var(--amber); color: #fff; } .wpa-b--amber:hover { background: #A87A33; color: #fff; transform: translateY(-2px); box-shadow: 0 12px 24px -12px rgba(201,146,78,.6); }
.wpa-b--line { background: var(--white); color: var(--ink); border-color: var(--line); box-shadow: var(--s1); } .wpa-b--line:hover { border-color: #CFE4E2; color: var(--ink); transform: translateY(-2px); }
.wpa-b--sm { height: 46px; padding: 0 22px; font-size: 15px; }
.wpa-b--full { width: 100%; }

.wpa-cat { display: inline-flex; align-items: center; gap: 7px; font-size: 12.5px; font-weight: 600; padding: 5px 11px; border-radius: 999px; white-space: nowrap; }
.wpa-cat i { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.wpa-cat--b { color: var(--acc7); background: var(--acc50); } .wpa-cat--g { color: #2F7F6B; background: var(--green50); }
.wpa-cat--v { color: #5B34C7; background: var(--violet50); } .wpa-cat--a { color: #8A6229; background: var(--amber50); }
.wpa-ver { display: inline-flex; align-items: center; gap: 5px; font-size: 12.5px; font-weight: 600; color: var(--green); white-space: nowrap; }

.wpa-sec { padding-block: var(--sec); }
.wpa-sec--tint { background: linear-gradient(180deg, #fff 0%, var(--tint) 16%, var(--tint2) 55%, var(--tint) 86%, #fff 100%); }
.wpa-gh { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; flex-wrap: wrap; margin-bottom: clamp(26px, 3.5vw, 40px); }
.wpa-gh .wpa-eyebrow { margin-bottom: 14px; }
.wpa-gh h1, .wpa-gh h2 { font-size: clamp(28px, 3.8vw, 44px); font-weight: 800; }
.wpa-gh p { font-size: 16px; color: var(--muted); margin-top: 8px; max-width: 56ch; }

/* ---------- Header ---------- */
.wpa-hdr { position: sticky; top: 0; z-index: 70; padding-top: 26px; margin-bottom: calc(var(--hdr) * -1); }
.wpa-hdr .wpa-wrap { position: relative; }
.wp-site-blocks main > :first-child { padding-top: calc(var(--hdr) + clamp(36px, 4.4vw, 64px)); }
/*
 * The header is a translucent pill floating over the page, so on a white ground
 * it disappears. The hero paints its own wash; every other page gets the same
 * mint fading out below the header. Pages whose main is already tinted keep it.
 */
.wp-site-blocks main:not(.wpa-app):not(.wpa-auth) {
	background: linear-gradient(180deg, #E5F7F2 0%, var(--tint2) 26%, var(--tint) 58%, rgba(255,255,255,0) 100%) no-repeat top center / 100% 340px;
}
body.home .wp-site-blocks main { background: none; }
.wpa-hdr > .wpa-wrap { max-width: 1360px; padding-inline: 28px; }
.wpa-hdr__in { display: flex; align-items: center; gap: 32px; padding: 12px 12px 12px 28px;
  background: rgba(255,255,255,.62); backdrop-filter: blur(16px) saturate(1.4); -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border: 1px solid rgba(255,255,255,.7); border-radius: 999px;
  box-shadow: 0 2px 3px rgba(21,44,53,.03), 0 26px 54px -34px rgba(21,44,53,.45); }
.wpa-logo { display: inline-flex; align-items: center; }

.wpa-logo__w { font-family: var(--fh); font-weight: 700; font-size: 21px; letter-spacing: -.035em; color: var(--ink); } .wpa-logo__w b { color: var(--acc-text); font-weight: 700; }
/* One logo everywhere it is written out in full; the WPA square stays the
   favicon and app icon. */
.wpa-logo__img { display: block; height: 30px; width: auto; }
.wpa-ft .wpa-logo__img { height: 26px; }
@media (max-width: 480px) { .wpa-logo__img { height: 26px; } }
.wpa-nav { display: flex; align-items: center; gap: 6px; margin-left: auto; }
.wpa-nav a { font-size: 15.5px; font-weight: 500; color: #3E565E; padding: 10px 16px; border-radius: 999px; transition: background .16s ease, color .16s ease; }
.wpa-nav a:hover { background: var(--tint2); color: var(--ink); }
/* Pushed right: with the nav hidden on a phone there is nothing to hold the
   button and the burger over, and they drifted in behind the logo. */
.wpa-hdr__end { display: flex; align-items: center; gap: 8px; margin-left: auto; }
.wpa-hdr__link { font-size: 15.5px; font-weight: 500; color: #3E565E; padding: 10px 16px; border-radius: 999px; transition: background .16s ease, color .16s ease; }
.wpa-hdr__link:hover { background: var(--tint2); color: var(--ink); }
.wpa-burger { display: none; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); background: var(--white); color: var(--ink); cursor: pointer; place-items: center; }
/* Absolute positioning ignores the wrapper's padding, so the inset is repeated
   here to keep the panel under the bar rather than against the screen. */
.wpa-hdr__mobile { display: none; position: absolute; left: var(--pad); right: var(--pad); top: 100%; margin-top: 10px; padding: 14px 18px; background: var(--white); border: 1px solid var(--line); border-radius: 26px; box-shadow: var(--s2); flex-direction: column; gap: 4px; z-index: 60; }
.wpa-hdr__mobile a { padding: 11px 12px; border-radius: 14px; font-size: 15.5px; font-weight: 500; color: var(--ink); } .wpa-hdr__mobile a:hover { background: var(--tint); }
@media (max-width: 900px) { .wpa-nav, .wpa-hdr__link { display: none; } .wpa-burger { display: grid; } .wpa-hdr.is-open .wpa-hdr__mobile { display: flex; } .wpa-hdr__in { gap: 16px; } }
/* Narrow phones: the burger already carries these links, and the button wrapped to two lines beside it. */
@media (max-width: 480px) { .wpa-hdr__end .wpa-b { display: none; } }

/* ---------- Hero ---------- */
.wpa-hero { position: relative; padding-block: clamp(64px, 7.5vw, 104px) clamp(48px, 6vw, 80px); overflow: clip;
  background: radial-gradient(1180px 660px at 76% 2%, #F2FCF8 0%, rgba(242,252,248,0) 62%), linear-gradient(180deg, #E5F7F2 0%, var(--tint2) 34%, var(--tint) 68%, #fff 100%); }
.wpa-hero::before { content: ""; position: absolute; inset: -10% -5% auto -5%; height: 130%; background: radial-gradient(ellipse 38% 48% at 80% 6%, rgba(95,199,192,.13), transparent 64%), radial-gradient(ellipse 34% 40% at 10% 24%, rgba(63,169,143,.09), transparent 66%); pointer-events: none; }
.wpa-hero > * { position: relative; }
.wpa-hero__in { display: grid; grid-template-columns: minmax(0,1fr) minmax(0,1fr); gap: clamp(32px, 5vw, 64px); align-items: center; }
@media (max-width: 960px) { .wpa-hero__in { grid-template-columns: minmax(0,1fr); } }
.wpa-hero h1 { font-size: clamp(42px, 5.8vw, 74px); font-weight: 800; line-height: 1.02; margin: 24px 0 22px; max-width: 12ch; }
.wpa-hero h1 i { font-style: normal; color: inherit; position: relative; display: inline-block; white-space: nowrap; }
.wpa-hero h1 i::after { content: ""; position: absolute; left: -6px; right: -6px; bottom: -.115em; height: .26em;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 20' fill='none' preserveAspectRatio='none'%3E%3Cpath d='M4 13.5C58 6.5 128 3.6 186 5.4c34 1 76 3.4 110 7.6' stroke='%235FC7C0' stroke-width='6' stroke-linecap='round' opacity='.55'/%3E%3Cpath d='M18 18c52-5 122-7.6 178-6.2 26 .7 58 2.4 88 5.4' stroke='%235FC7C0' stroke-width='3.4' stroke-linecap='round' opacity='.35'/%3E%3C/svg%3E") no-repeat center / 100% 100%; }
.wpa-hero__lede { font-size: 17.5px; max-width: 42ch; margin-bottom: 30px; }
.wpa-hero__cta { display: flex; gap: 12px; flex-wrap: wrap; }
.wpa-checks { display: flex; gap: 24px; flex-wrap: wrap; margin-top: 26px; font-size: 14.5px; }
.wpa-checks span { display: inline-flex; align-items: center; gap: 8px; } .wpa-checks svg { color: var(--green); flex: none; }

.wpa-stack { position: relative; min-height: 452px; }
/* Decoration, so it stays behind the cards and takes no clicks. On a phone the
   cards fill the width and it would sit on top of a price. */
.wpa-stack::before { content: ""; position: absolute; right: -4%; top: -8%; width: 140px; height: 120px; background-image: radial-gradient(circle, var(--line2) 1.6px, transparent 1.6px); background-size: 17px 17px; z-index: 0; pointer-events: none; }
.wpa-fc { z-index: 1; }
@media (max-width: 720px) { .wpa-stack::before { display: none; } }
.wpa-fc { position: absolute; white-space: nowrap; display: flex; align-items: center; gap: 16px;
  background: var(--white); border: 1px solid rgba(21,44,53,.06); border-radius: 26px;
  padding: 16px 24px 16px 16px; box-shadow: var(--s2); width: max-content; max-width: 100%;
  transition: transform .2s ease, box-shadow .2s ease; }
.wpa-fc:nth-child(1) { top: 6px;   left: 30px; transform: rotate(-2.4deg); }
.wpa-fc:nth-child(2) { top: 116px; left: 64px; transform: rotate(1.8deg); z-index: 3; }
.wpa-fc:nth-child(3) { top: 226px; left: 36px; transform: rotate(-1.2deg); }
.wpa-fc:nth-child(4) { top: 336px; left: 68px; transform: rotate(2.6deg); }
.wpa-fc:hover { z-index: 6; box-shadow: var(--s3); }
.wpa-fc:nth-child(1):hover { transform: rotate(-2.4deg) translateY(-4px); }
.wpa-fc:nth-child(2):hover { transform: rotate(1.8deg) translateY(-4px); }
.wpa-fc:nth-child(3):hover { transform: rotate(-1.2deg) translateY(-4px); }
.wpa-fc:nth-child(4):hover { transform: rotate(2.6deg) translateY(-4px); }
.wpa-fc__id { width: 44px; height: 44px; border-radius: 15px; flex: none; display: grid; place-items: center; color: #fff; }
.wpa-fc__n { display: block; font-family: var(--fh); font-weight: 600; font-size: 16.5px; letter-spacing: -.02em; color: var(--ink); line-height: 1.3; white-space: nowrap; }
.wpa-fc__m { display: block; font-size: 13px; color: var(--muted); line-height: 1.4; margin-top: 1px; white-space: nowrap; }
.wpa-fc__px { margin-left: auto; padding-left: 14px; font-family: var(--fh); font-weight: 700; font-size: 16px; letter-spacing: -.03em; color: var(--acc-ink); }
.wpa-fc:nth-child(2) .wpa-fc__px, .wpa-fc:nth-child(3) .wpa-fc__px { display: none; }
.wpa-statcard { position: absolute; right: -14px; top: 158px; transform: rotate(2.4deg); background: var(--petrol); color: rgba(255,255,255,.72); border-radius: 28px; padding: 22px 26px; box-shadow: var(--s3); width: 228px; z-index: 4; }
.wpa-statcard b { display: block; font-family: var(--fh); font-weight: 800; font-size: 34px; letter-spacing: -.045em; color: #fff; line-height: 1; margin-bottom: 8px; }
.wpa-statcard span { font-size: 13px; line-height: 1.5; display: block; }
.wpa-statcard span.wpa-statcard__r { display: flex; align-items: flex-start; gap: 9px; margin-top: 14px; padding-top: 13px; border-top: 1px solid rgba(255,255,255,.14); font-size: 12.5px; line-height: 1.45; } .wpa-statcard span.wpa-statcard__r { color: var(--acc2); font-weight: 600; } .wpa-statcard span.wpa-statcard__r svg { color: var(--acc2); flex: none; margin-top: 2px; }
@media (max-width: 980px) { .wpa-stack { min-height: 0; display: flex; flex-direction: column; gap: 12px; }
  .wpa-fc { position: static; width: auto; max-width: none; white-space: normal; }
  .wpa-fc:nth-child(n) { top: auto; left: auto; transform: none; }
  .wpa-statcard { position: static; width: auto; margin-top: 4px; transform: none; } }
@media (max-width: 640px) { .wpa-fc__n, .wpa-fc__m { white-space: normal; } }

/* ---------- Doors ---------- */
.wpa-doors { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px; }
@media (max-width: 860px) { .wpa-doors { grid-template-columns: minmax(0,1fr); } }
.wpa-door { background: var(--white); border: 1px solid var(--line); border-radius: 28px; padding: clamp(26px, 3.4vw, 38px); box-shadow: var(--s2); position: relative; overflow: hidden; display: flex; flex-direction: column; }
.wpa-door::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 6px; }
.wpa-door--sell::before { background: var(--amber); } .wpa-door--buy::before { background: var(--acc); }
.wpa-door__k { display: inline-flex; align-items: center; gap: 8px; font-family: var(--fh); font-size: 12.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 16px; }
.wpa-door--sell .wpa-door__k { color: #8A6229; } .wpa-door--buy .wpa-door__k { color: var(--acc-text); }
.wpa-door h2 { font-size: clamp(23px, 2.7vw, 30px); margin-bottom: 10px; }
.wpa-door > p { font-size: 15.5px; margin-bottom: 22px; }
.wpa-door ul { list-style: none; margin: 0 0 28px; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.wpa-door li { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; line-height: 1.55; }
.wpa-door li svg { flex: none; margin-top: 4px; } .wpa-door--sell li svg { color: var(--amber); } .wpa-door--buy li svg { color: var(--acc); }
.wpa-door li b { color: var(--ink); font-weight: 600; }
.wpa-door__act { margin-top: auto; display: flex; align-items: center; gap: 16px; flex-wrap: wrap; } .wpa-door__act small { font-size: 13px; color: var(--muted); }

/* ---------- From the team ---------- */
.wpa-stmt { margin-bottom: 28px; }
.wpa-stmt__top { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.wpa-stmt__ico { width: 40px; height: 40px; color: var(--acc); flex: none; }
.wpa-stmt h2 { font-size: clamp(24px, 3.1vw, 36px); font-weight: 700; line-height: 1.24; letter-spacing: -.03em; max-width: none; }
.wpa-trio { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; }
@media (max-width: 880px) { .wpa-trio { grid-template-columns: minmax(0,1fr); } }
.wpa-tc { border-radius: 28px; padding: 30px 28px 32px; min-height: 236px; display: flex; flex-direction: column; position: relative; overflow: hidden; }
.wpa-tc::after { content: ""; position: absolute; right: -30px; bottom: -30px; width: 150px; height: 150px; border-radius: 50%; background-image: radial-gradient(circle, currentColor 1.6px, transparent 1.6px); background-size: 14px 14px; opacity: .18; mask-image: radial-gradient(circle at 70% 70%, #000 30%, transparent 70%); -webkit-mask-image: radial-gradient(circle at 70% 70%, #000 30%, transparent 70%); }
.wpa-tc { background: var(--tint2); color: var(--acc-text); border: 1px solid rgba(21,44,53,.05); }
.wpa-tc svg { flex: none; }
.wpa-tc h3 { font-size: 20px; margin: 18px 0 9px; letter-spacing: -.03em; }
.wpa-tc p { font-size: 15px; line-height: 1.62; color: var(--body); margin-bottom: auto; }

/* ---------- Listing grid + sparkline card ---------- */
.wpa-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 18px; }
@media (max-width: 980px) { .wpa-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 620px) { .wpa-grid { grid-template-columns: minmax(0,1fr); } }
/* A column so the figures sit on the same line across a row of cards, whether
   the headline runs to one line or two and whether there is a chart. */
.wpa-lc { display: flex; flex-direction: column; height: 100%; box-sizing: border-box; background: var(--white); border: 1px solid var(--line); border-radius: 24px; padding: 22px 22px 20px; transition: transform .2s, box-shadow .2s, border-color .16s; }
.wpa-lc:hover { transform: translateY(-4px); box-shadow: var(--s2); border-color: var(--line2); }
.wpa-lc__t { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; } .wpa-lc__t .wpa-ver { margin-left: auto; }
.wpa-lc h3 { font-size: 17.5px; line-height: 1.3; letter-spacing: -.025em; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: calc(2 * 1.3em); }
.wpa-lc__m { font-size: 13.5px; color: var(--muted); margin-top: 5px; }
.wpa-lc__ch { margin-top: 16px; display: flex; align-items: flex-end; gap: 12px; } .wpa-lc__ch svg { flex: 1; min-width: 0; display: block; }
/* Same height with or without a chart, so a row of cards lines up. */
.wpa-lc__ch { min-height: 64px; margin-bottom: 14px; }
.wpa-lc__ch--none { align-items: center; justify-content: center; border-top: 1px dashed var(--line2); border-bottom: 1px dashed var(--line2); }
.wpa-lc__none { font-size: 13px; color: var(--faint); }
.wpa-cat--free { color: var(--muted); background: var(--tint); }
.wpa-cat--free i { background: var(--faint); }

.wpa-lc__lab { font-size: 11px; color: var(--faint); white-space: nowrap; margin-bottom: 2px; }
/* Three equal columns: the uneven ones were sized for the longest possible
   figure in each slot, so the gaps read as mistakes on any card that did
   not happen to have them. */
.wpa-lc__n { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; margin-top: auto; padding-top: 14px; border-top: 1px solid var(--line); }
.wpa-lc__n b { display: block; font-family: var(--fh); font-weight: 700; font-size: 18px; letter-spacing: -.035em; color: var(--ink); line-height: 1.15; }
.wpa-lc__n b.acc { color: var(--acc-ink); font-size: 20px; }
.wpa-lc__n span { display: block; font-size: 11.5px; color: var(--faint); margin-top: 4px; text-transform: uppercase; letter-spacing: .04em; }
.wpa-more { text-align: center; margin-top: 34px; }
.wpa-empty { text-align: center; padding: 48px 20px; background: var(--white); border: 1px dashed var(--line2); border-radius: 24px; color: var(--muted); }

/* ---------- Recently sold ---------- */
.wpa-sold { display: grid; grid-template-columns: repeat(4, minmax(0,1fr)); gap: 16px; }
@media (max-width: 980px) { .wpa-sold { grid-template-columns: repeat(2, minmax(0,1fr)); } }
.wpa-sc { background: var(--white); border: 1px solid var(--line); border-radius: 22px; padding: 20px 22px; }
.wpa-sc__tag { display: block; font-size: 11.5px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--green); margin-bottom: 12px; }
.wpa-sc b { display: block; font-family: var(--fh); font-weight: 800; font-size: 26px; letter-spacing: -.04em; color: var(--ink); line-height: 1; }
.wpa-sc span { display: block; font-size: 14px; margin-top: 8px; line-height: 1.5; }
.wpa-sc em { font-style: normal; color: var(--muted); font-size: 13px; display: block; margin-top: 8px; }

/* ---------- CTA ---------- */
.wpa-cta-wrap { padding-block: 0 var(--sec); }
.wpa-cta { background: var(--ink); border-radius: 32px; padding: clamp(38px, 5vw, 60px) clamp(24px, 4vw, 56px); color: #9FB3B8; position: relative; overflow: hidden;
  display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(28px, 4vw, 64px); align-items: center; }
.wpa-cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(ellipse 44% 66% at 84% 16%, rgba(95,199,192,.34), transparent 66%); }
.wpa-cta > * { position: relative; }
.wpa-cta__c { display: flex; flex-direction: column; align-items: flex-start; gap: 22px; }
.wpa-cta .wpa-eyebrow { background: rgba(255,255,255,.08); border-color: rgba(255,255,255,.14); color: var(--acc2); box-shadow: none; } .wpa-cta .wpa-eyebrow::before { background: #8FE8D6; }
.wpa-cta h2 { color: #fff; font-size: clamp(28px, 3.6vw, 44px); font-weight: 800; margin: 18px 0 0; max-width: 15ch; }
.wpa-cta p { font-size: 16.5px; max-width: 44ch; margin: 0; }
.wpa-cta__r { display: flex; gap: 10px; flex-wrap: wrap; }
.wpa-cta .wpa-b--line { background: transparent; color: #E4F0EE; border-color: rgba(255,255,255,.26); } .wpa-cta .wpa-b--line:hover { border-color: #fff; color: #fff; }

@media (max-width: 860px) { .wpa-cta { grid-template-columns: minmax(0, 1fr); gap: 24px; } }

/* ---------- Footer ---------- */
.wpa-ft { padding-block: 56px 32px; border-top: 1px solid var(--line); }
.wpa-ft__g { display: grid; grid-template-columns: minmax(0,1.6fr) repeat(3, minmax(0,1fr)); gap: 40px; padding-bottom: 40px; }
@media (max-width: 840px) { .wpa-ft__g { grid-template-columns: repeat(2, minmax(0,1fr)); gap: 30px; } }
.wpa-ft__b { font-size: 15px; line-height: 1.68; margin-top: 16px; max-width: 32ch; }
.wpa-ft h4 { font-family: var(--fh); font-size: 15px; font-weight: 600; letter-spacing: -.02em; color: var(--ink); margin: 0 0 16px; }
.wpa-ft ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; font-size: 15px; } .wpa-ft a:hover { color: var(--ink); }
.wpa-ft__bt { padding-top: 24px; border-top: 1px solid var(--line); display: flex; gap: 20px; flex-wrap: wrap; font-size: 14.5px; } .wpa-ft__bt nav { margin-left: auto; display: flex; gap: 22px; }

/* ---------- Listings archive ---------- */
.wpa-arch__head { padding-block: clamp(44px, 6vw, 72px) 0; }
.wpa-arch__head h1 { font-size: clamp(34px, 5vw, 58px); font-weight: 800; margin: 18px 0 12px; }
.wpa-arch__head > p { font-size: 17px; max-width: 56ch; }
.wpa-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin: 30px 0 0; }
.wpa-tab { display: inline-flex; align-items: center; gap: 8px; height: 40px; padding: 0 16px; border-radius: 999px; border: 1px solid var(--line); background: var(--white); font-size: 14px; font-weight: 600; color: var(--body); }
.wpa-tab b { font-family: var(--fh); font-weight: 700; font-size: 12.5px; color: var(--muted); background: var(--tint); padding: 2px 8px; border-radius: 999px; }
.wpa-tab:hover { border-color: var(--line2); color: var(--ink); }
.wpa-tab.is-on { background: var(--ink); border-color: var(--ink); color: #fff; } .wpa-tab.is-on b { background: rgba(255,255,255,.14); color: #fff; }
.wpa-arch__bar { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin: 28px 0 22px; padding-top: 22px; border-top: 1px solid var(--line); }
.wpa-arch__count { font-size: 14.5px; color: var(--muted); }
.wpa-sort { display: inline-flex; align-items: center; gap: 10px; font-size: 14px; color: var(--muted); }
.wpa-sort select { appearance: none; -webkit-appearance: none; height: 40px; padding: 0 36px 0 14px; border-radius: 14px; border: 1px solid var(--line2); background: var(--white) url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path d='M2.5 4.5 6 8l3.5-3.5' fill='none' stroke='%237C879B' stroke-width='1.6' stroke-linecap='round'/></svg>") no-repeat right 13px center; font: inherit; font-size: 14px; font-weight: 500; color: var(--ink); cursor: pointer; }
.wpa-pag { display: flex; justify-content: center; gap: 6px; margin-top: 36px; flex-wrap: wrap; }
.wpa-pag .page-numbers, .wpa-pag a { display: inline-flex; align-items: center; justify-content: center; min-width: 42px; height: 42px; padding: 0 12px; border-radius: 999px; border: 1px solid var(--line); background: var(--white); font-family: var(--fh); font-weight: 600; font-size: 14px; color: var(--body); }
.wpa-pag .current, .wpa-pag a:hover { background: var(--ink); border-color: var(--ink); color: #fff; }
.wpa-pag .dots { border: 0; }

/* ---------- Single listing ---------- */
.wpa-single { padding-block: clamp(32px, 4.5vw, 56px) var(--sec); }
.wpa-crumb { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--muted); margin-bottom: 26px; }
.wpa-crumb a:hover { color: var(--ink); } .wpa-crumb span { color: var(--faint); }
.wpa-single__head { margin-bottom: clamp(24px, 3vw, 36px); }
.wpa-single__tags { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }
/* 1.08 was set for a headline that fits on one line. A listing title runs to
   two or three, where the lines close up on each other. */
.wpa-single__head h1 { font-size: clamp(30px, 4.2vw, 48px); font-weight: 800; line-height: 1.18; }
.wpa-single__meta { font-size: 15px; color: var(--muted); margin-top: 12px; }
.wpa-single__meta em { font-style: normal; color: var(--faint); }
.wpa-single__grid { display: grid; grid-template-columns: minmax(0,1fr) 360px; gap: clamp(24px, 3.5vw, 44px); align-items: start; padding-bottom: var(--sec); }
@media (max-width: 960px) { .wpa-single__grid { grid-template-columns: minmax(0,1fr); } }
.wpa-card { background: var(--white); border: 1px solid var(--line); border-radius: 26px; padding: clamp(20px, 2.6vw, 28px); }
.wpa-card + .wpa-card, .wpa-card + .wpa-block, .wpa-block + .wpa-card { margin-top: 20px; }
.wpa-card__t { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-bottom: 8px; }
.wpa-card__t h2 { font-size: 18px; font-weight: 700; }
.wpa-card__t span { font-size: 13px; color: var(--muted); } .wpa-card__t u { text-decoration: none; color: var(--green); font-weight: 600; }
.wpa-bignum { font-family: var(--fh); font-weight: 800; font-size: clamp(26px, 3vw, 34px); letter-spacing: -.04em; color: var(--ink); line-height: 1; }
.wpa-bignum small { font-family: var(--fb); font-size: 14px; font-weight: 500; color: var(--muted); letter-spacing: 0; margin-left: 6px; }
.wpa-bignum__lab { display: block; margin-top: 5px; font-family: var(--fb); font-size: 13px; font-weight: 500; letter-spacing: 0; color: var(--muted); }
/* The figure and its unit are one thing and stay together; the average is a
   line of its own, with room to breathe. */
.wpa-bignum { display: block; }
.wpa-bignum__now { display: inline-flex; align-items: baseline; }
.wpa-bignum__avg { display: block; margin-top: 8px; font-family: var(--fb); font-size: 14px; font-weight: 500; color: var(--muted); letter-spacing: 0; line-height: 1.4; }
.wpa-chart { margin-top: 14px; } .wpa-chart svg { display: block; width: 100%; height: auto; }
.wpa-chart[data-chart] { position: relative; }
.wpa-spark__pt { opacity: 0; transition: opacity .12s ease; pointer-events: none; }
.wpa-spark__pt.is-on { opacity: 1; }
.wpa-tip { position: absolute; transform: translate(-50%, calc(-100% - 12px)); pointer-events: none; white-space: nowrap; background: var(--petrol); color: #fff; border-radius: 12px; padding: 8px 12px; font-size: 13px; line-height: 1.35; box-shadow: 0 12px 26px rgba(21,44,53,.22); display: flex; flex-direction: column; gap: 1px; z-index: 2; }
.wpa-tip span { color: rgba(255,255,255,.68); font-size: 12px; }
.wpa-tip b { font-family: var(--fh); font-weight: 700; letter-spacing: -.02em; font-size: 15px; }
.wpa-identity__row a { color: var(--acc-text); text-decoration: underline; text-underline-offset: 3px; }
.wpa-figs { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; }
@media (max-width: 620px) { .wpa-figs { grid-template-columns: repeat(2, minmax(0,1fr)); } }
.wpa-fig { background: var(--tint); border-radius: 16px; padding: 14px 16px; }
.wpa-fig span { display: block; font-size: 12px; color: var(--muted); }
.wpa-fig b { display: block; font-family: var(--fh); font-weight: 700; font-size: 18px; letter-spacing: -.03em; color: var(--ink); margin-top: 3px; line-height: 1.2; }
.wpa-fig b.acc { color: var(--acc-ink); }
.wpa-block h2 { font-size: 22px; font-weight: 700; margin-bottom: 12px; }
.wpa-prose { font-size: 16.5px; line-height: 1.75; }
.wpa-prose p, .wpa-prose ul, .wpa-prose ol { margin: 0 0 18px; } .wpa-prose ul, .wpa-prose ol { padding-left: 22px; }
.wpa-prose h2 { font-size: 26px; margin: 34px 0 12px; } .wpa-prose h3 { font-size: 20px; margin: 28px 0 10px; }
.wpa-prose a { color: var(--acc-text); text-decoration: underline; text-underline-offset: 3px; }
.wpa-prose strong { color: var(--ink); }
.wpa-prose > :last-child { margin-bottom: 0; }
.wpa-side { position: sticky; top: 40px; display: flex; flex-direction: column; gap: 16px; }
.wpa-price { background: var(--white); border: 1px solid var(--line); border-radius: 26px; padding: 26px; box-shadow: var(--s2); }
.wpa-price__lab { font-size: 13px; color: var(--muted); }
.wpa-price__v { font-family: var(--fh); font-weight: 800; font-size: 38px; letter-spacing: -.045em; color: var(--ink); line-height: 1; margin: 4px 0 18px; }
.wpa-price__row { display: flex; justify-content: space-between; gap: 12px; padding: 11px 0; border-top: 1px solid var(--line); font-size: 14.5px; }
.wpa-price__row b { font-family: var(--fh); font-weight: 700; color: var(--ink); letter-spacing: -.02em; }
.wpa-price__act { margin-top: 18px; display: flex; flex-direction: column; gap: 10px; }
.wpa-price__act .wpa-btn, .wpa-price__act form .wpa-btn { width: 100%; box-sizing: border-box; text-align: center; }
.wpa-side .wpa-btn, .wpa-side form { box-sizing: border-box; max-width: 100%; }
.wpa-reveal { display: flex; flex-direction: column; gap: 10px; }
.wpa-reveal__lab { font-size: 13px; color: var(--muted); }
.wpa-reveal__name { font-family: var(--fh); font-weight: 700; color: var(--ink); font-size: 16px; letter-spacing: -.02em; margin: 0; }
.wpa-reveal__row { display: flex; align-items: center; justify-content: center; gap: 10px; background: var(--tint); border: 1px solid var(--line); border-radius: 14px; padding: 10px 12px; min-width: 0; }
.wpa-reveal__eye { display: inline-flex; align-items: center; justify-content: center; gap: 8px; cursor: pointer; }
.wpa-reveal__eye svg { color: var(--acc-text); }
.wpa-reveal__eye.is-busy { opacity: .55; cursor: progress; }
.wpa-reveal--locked .wpa-reveal__row svg { flex: none; color: var(--faint); }
.wpa-reveal__mask--hidden { letter-spacing: .12em; color: var(--faint); user-select: none; }
.wpa-reveal__mask { font-size: 14px; color: var(--body); overflow-wrap: anywhere; min-width: 0; }
.wpa-reveal.is-open .wpa-reveal__mask { color: var(--ink); font-weight: 600; }
.wpa-reveal__other { font-size: 13px; color: var(--body); line-height: 1.55; margin: 0; overflow-wrap: anywhere; }
.wpa-reveal__err { font-size: 13px; color: #B4413B; margin: 0; }
.wpa-reveal__note { font-size: 12.5px; color: var(--muted); line-height: 1.5; margin: 0; }
.wpa-identity { background: var(--tint2); border: 1px solid var(--acc100); border-radius: 26px; padding: 22px 24px; }
.wpa-identity h3 { font-size: 16px; font-weight: 700; display: flex; align-items: center; gap: 8px; margin-bottom: 6px; } .wpa-identity h3 svg { color: var(--acc); }
.wpa-identity p { font-size: 13.5px; line-height: 1.55; margin-bottom: 12px; }
/* Label above, value below. Side by side works until a value is a full URL,
   and then the label wraps too and the whole card goes ragged. */
.wpa-identity__row { display: flex; flex-direction: column; gap: 2px; padding: 10px 0; border-top: 1px solid var(--acc100); font-size: 13.5px; }
.wpa-identity__row > span { color: var(--muted); font-size: 12.5px; }
/* A full plugin URL is longer than the card is wide. */
.wpa-identity__row b { color: var(--ink); font-weight: 600; overflow-wrap: anywhere; min-width: 0; }
.wpa-blur { filter: blur(5px); user-select: none; color: var(--muted); }
.wpa-note { display: flex; gap: 10px; align-items: flex-start; font-size: 13.5px; color: var(--muted); line-height: 1.55; padding: 0 6px; } .wpa-note svg { color: var(--green); flex: none; margin-top: 3px; }

/* ---------- Pricing ---------- */
.wpa-pricing__head { text-align: center; max-width: 720px; margin: 0 auto clamp(32px, 4.5vw, 52px); padding-top: clamp(44px, 6vw, 72px); }
.wpa-pricing__head h1 { font-size: clamp(34px, 5vw, 58px); font-weight: 800; margin: 20px 0 14px; }
.wpa-pricing__head p { font-size: 17px; }
.wpa-plans { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 22px; max-width: 980px; margin-inline: auto; }
@media (max-width: 820px) { .wpa-plans { grid-template-columns: minmax(0,1fr); } }
.wpa-plan { background: var(--white); border: 1px solid var(--line); border-radius: 28px; padding: clamp(26px, 3.4vw, 36px); display: flex; flex-direction: column; position: relative; overflow: hidden; }
.wpa-plan::before { content: ""; position: absolute; left: 0; right: 0; top: 0; height: 6px; }
.wpa-plan--sell::before { background: var(--amber); } .wpa-plan--buy::before { background: var(--acc); }
.wpa-plan--buy { box-shadow: var(--s2); }
.wpa-plan__k { font-family: var(--fh); font-size: 12.5px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; margin-bottom: 14px; }
.wpa-plan--sell .wpa-plan__k { color: #8A6229; } .wpa-plan--buy .wpa-plan__k { color: var(--acc-text); }
.wpa-plan h2 { font-size: 24px; margin-bottom: 6px; }
.wpa-plan__p { display: flex; align-items: baseline; gap: 8px; margin: 14px 0 6px; }
.wpa-plan__p b { font-family: var(--fh); font-weight: 800; font-size: 44px; letter-spacing: -.05em; color: var(--ink); line-height: 1; }
.wpa-plan__p span { font-size: 15px; color: var(--muted); }
.wpa-plan > p { font-size: 15.5px; margin-bottom: 22px; }
.wpa-plan ul { list-style: none; margin: 0 0 26px; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.wpa-plan li { display: flex; gap: 11px; align-items: flex-start; font-size: 15px; line-height: 1.5; } .wpa-plan li svg { flex: none; margin-top: 4px; color: var(--green); }
.wpa-plan__act { margin-top: auto; display: flex; flex-direction: column; gap: 10px; } .wpa-plan__act small { font-size: 13px; color: var(--muted); text-align: center; }
.wpa-faq { max-width: 860px; margin: clamp(48px, 6vw, 72px) auto 0; padding-bottom: clamp(56px, 7vw, 96px); }
.wpa-faq h2 { font-size: clamp(26px, 3.4vw, 36px); font-weight: 800; margin-bottom: 20px; }
.wpa-faq details { border-top: 1px solid var(--line); padding: 18px 0; }
.wpa-faq details:last-child { border-bottom: 1px solid var(--line); }
.wpa-faq summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; gap: 16px; font-family: var(--fh); font-weight: 600; font-size: 17px; color: var(--ink); }
.wpa-faq summary::-webkit-details-marker { display: none; }
.wpa-faq summary::after { content: "+"; font-weight: 500; color: var(--muted); flex: none; } .wpa-faq details[open] summary::after { content: "–"; }
.wpa-faq details p { margin-top: 10px; font-size: 15.5px; max-width: 64ch; }

/* ---------- Generic page / article / blog ---------- */
.wpa-page__head { max-width: 800px; margin-inline: auto; padding: clamp(44px, 6vw, 72px) var(--pad) 0; }
.wpa-page__head h1 { font-size: clamp(34px, 5vw, 56px); font-weight: 800; margin-bottom: 14px; }
.wpa-page__body { max-width: 800px; margin-inline: auto; padding: 24px var(--pad) var(--sec); }
.wpa-article__meta { gap: 16px; font-size: 14.5px; color: var(--muted); margin-top: 6px; }
.wpa-article__img { border-radius: 26px; overflow: hidden; margin-bottom: 30px; }
.wpa-post-card__cat, .wp-block-post-terms { font-size: 12.5px; font-weight: 600; color: var(--acc7); margin-bottom: 8px; }
.wpa-blog__head { max-width: 1200px; margin-inline: auto; padding: clamp(44px, 6vw, 72px) var(--pad) 28px; }
.wpa-blog__head h1 { font-size: clamp(34px, 5vw, 56px); font-weight: 800; }
.wpa-blog__q { max-width: 1200px; margin-inline: auto; padding: 0 var(--pad) var(--sec); }
.wpa-blog__grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 20px; list-style: none; margin: 0; padding: 0; }
@media (max-width: 980px) { .wpa-blog__grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (max-width: 620px) { .wpa-blog__grid { grid-template-columns: minmax(0,1fr); } }
.wpa-post-card { background: var(--white); border: 1px solid var(--line); border-radius: 24px; padding: 20px; transition: transform .2s, box-shadow .2s; }
.wpa-post-card:hover { transform: translateY(-4px); box-shadow: var(--s2); }
.wpa-post-card__img { border-radius: 16px; overflow: hidden; margin-bottom: 16px; }
.wpa-post-card__t { font-size: 19px; line-height: 1.3; margin-bottom: 8px; } .wpa-post-card__t a:hover { color: var(--acc); }
.wpa-post-card__x { font-size: 15px; line-height: 1.6; } .wpa-post-card__x p { margin: 0; }
.wpa-post-card__d { font-size: 13px; color: var(--muted); margin-top: 12px; }
.wpa-404__in { text-align: center; max-width: 640px; padding-block: clamp(24px, 4vw, 48px); }
.wpa-404__in h1 { font-size: clamp(32px, 5vw, 54px); font-weight: 800; margin: 20px 0 14px; }
.wpa-404__in p { font-size: 17px; margin-bottom: 28px; }
.wpa-404__r { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }

/* ---------- App shells (dashboard / submit / auth) ---------- */
.wpa-app { background: var(--tint); }
.wpa-app__in { max-width: 1300px; margin-inline: auto; padding: clamp(32px, 4.5vw, 56px) var(--pad) var(--sec); }

.wpa-app__head { margin-bottom: 26px; }
.wpa-app__head h1 { font-size: clamp(28px, 3.4vw, 40px); font-weight: 800; margin: 18px 0 12px; }
.wpa-app__head p { font-size: 16px; }
.wpa-app__steps { list-style: none; margin: 20px 0 0; padding: 0; display: flex; gap: 18px; flex-wrap: wrap; font-size: 14px; font-weight: 500; color: var(--ink); }
.wpa-app__steps li { display: inline-flex; align-items: center; gap: 9px; }
.wpa-app__steps b { width: 26px; height: 26px; border-radius: 10px; background: var(--ink); color: #fff; display: grid; place-items: center; font-family: var(--fh); font-size: 12.5px; }
/* Auth pages: context panel beside the form. The plugin already gives
   .wpa-auth-form a card, so we restyle that one rather than nesting another. */
/* Vertical space lives on the inner wrapper: the plugin pins the <main> with
   `padding-top: 0 !important`, which would otherwise flatten it. */
.wpa-auth { background: var(--tint); padding-inline: var(--pad); }
.wpa-auth__in { max-width: 1180px; margin-inline: auto; padding-block: clamp(40px, 5vw, 64px) clamp(56px, 7vw, 88px); display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 460px); gap: clamp(32px, 5vw, 72px); align-items: center; }
/* On a phone the form comes first: someone arriving at /login/ is there to
   sign in, not to read why they should. The sales copy follows it. */
@media (max-width: 900px) {
  .wpa-auth__in { grid-template-columns: minmax(0, 1fr); gap: 30px; max-width: 460px; padding-block: clamp(40px, 8vw, 56px) clamp(48px, 9vw, 72px); }
  .wpa-auth__form { order: -1; }
}

.wpa-auth__aside .wpa-eyebrow { margin-bottom: 20px; }
.wpa-auth__aside h1 { font-size: clamp(30px, 3.6vw, 42px); font-weight: 800; line-height: 1.06; margin-bottom: 16px; }
.wpa-auth__aside > p { font-size: 17px; line-height: 1.65; max-width: 42ch; margin-bottom: 26px; }
.wpa-auth__aside ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 13px; }
.wpa-auth__aside li { display: flex; gap: 11px; align-items: flex-start; font-size: 15.5px; line-height: 1.55; }
.wpa-auth__aside li svg { flex: none; margin-top: 3px; color: var(--green); }
.wpa-auth__browse { display: inline-flex; align-items: center; gap: 8px; margin-top: 28px; font-size: 14.5px; font-weight: 500; color: var(--acc7); }
.wpa-auth__browse:hover { color: var(--acc-text); }
.wpa-auth__browse svg { transition: transform .18s; } .wpa-auth__browse:hover svg { transform: translateX(3px); }
@media (max-width: 900px) { .wpa-auth__aside ul, .wpa-auth__browse { display: none; } .wpa-auth__aside > p { margin-bottom: 0; } }

/* Undo the plugin's flex centring so the grid above can do its job. */
.wpa-auth-page main.wp-block-group { display: block; min-height: 0; background: none; }
.wpa-auth-page .wp-block-post-content { display: block; }

/* The plugin's form card, restyled. */
.wpa-auth .wpa-auth-form { max-width: none; width: 100%; box-sizing: border-box; margin: 0; background: var(--white); border: 1px solid var(--line); border-radius: 28px; padding: clamp(28px, 3.4vw, 40px); box-shadow: var(--s2); }
.wpa-auth .wpa-auth-form h1, .wpa-auth .wpa-auth-form h2 { font-family: var(--fh); font-size: 24px; font-weight: 700; letter-spacing: -.03em; color: var(--ink); text-align: left; margin: 0 0 6px; }
.wpa-auth .wpa-auth-form .wpa-auth-subtitle { text-align: left; font-size: 15px; color: var(--muted); margin: 0 0 24px; }
.wpa-auth .wpa-auth-form .wpa-btn--primary { width: 100%; margin-top: 8px; }
.wpa-auth .wpa-notice { font-size: 14px; }
.wpa-auth .wpa-auth-forgot, .wpa-auth .wpa-auth-link { text-align: center; }
.wpa-auth .wpa-auth-link { margin-top: 18px; padding-top: 18px; border-top: 1px solid var(--line); }

/* Plugin components re-skinned (classes come from wpacquire-core) */
.wpa-auth-form h2, .wpa-dashboard h2, .wpa-form-section__header h3 { font-family: var(--fh); font-weight: 700; letter-spacing: -.03em; color: var(--ink); }
.wpa-auth-form h2 { font-size: 28px; }
.wpa-auth-subtitle { color: var(--muted); font-size: 15px; margin: 6px 0 22px; }
.wpa-form label, .wpa-field label { font-size: 13.5px; font-weight: 600; color: var(--ink); }
.wpa-form input:not([type=checkbox]):not([type=radio]):not([type=file]), .wpa-form select, .wpa-form textarea,
.wpa-field input:not([type=checkbox]):not([type=radio]):not([type=file]), .wpa-field select, .wpa-field textarea { width: 100%; box-sizing: border-box; height: 46px; padding: 0 14px; border: 1px solid var(--line2); border-radius: 14px; background: var(--white); font: inherit; font-size: 15px; color: var(--ink); }
.wpa-form textarea, .wpa-field textarea { height: auto; padding: 12px 14px; }
.wpa-form input:focus, .wpa-form select:focus, .wpa-form textarea:focus, .wpa-field input:focus, .wpa-field select:focus, .wpa-field textarea:focus { outline: none; border-color: var(--acc); box-shadow: 0 0 0 4px var(--acc50); }
.wpa-field__hint { font-size: 13px; color: var(--muted); }
.wpa-btn { display: inline-flex; align-items: center; justify-content: center; gap: 9px; height: 48px; padding: 0 24px; border-radius: 999px; border: 1.5px solid transparent; font-family: var(--fh); font-size: 15px; font-weight: 600; cursor: pointer; line-height: 1; transition: background .18s, color .18s, border-color .18s, transform .18s; }
.wpa-btn--primary { background: var(--ink); color: #fff; } .wpa-btn--primary:hover { background: var(--ink2); color: #fff; transform: translateY(-1px); }
.wpa-btn--outline { background: var(--white); color: var(--ink); border-color: var(--line2); } .wpa-btn--outline:hover { border-color: var(--ink); }
.wpa-btn--sm { height: 40px; padding: 0 16px; font-size: 14px; } .wpa-btn--lg { height: 54px; padding: 0 28px; } .wpa-btn--full { width: 100%; }
.wpa-notice { border-radius: 16px; padding: 12px 16px; font-size: 14.5px; margin-bottom: 16px; }
.wpa-notice--info { background: var(--acc50); color: var(--acc7); } .wpa-notice--success { background: var(--green50); color: #2F7F6B; } .wpa-notice--error { background: var(--red50); color: #9A4A3F; }
.wpa-dashboard { display: grid; grid-template-columns: 220px minmax(0,1fr); gap: 22px; align-items: start; }
/*
 * The post content block constrains its children to the theme's content width,
 * which on the dashboard and the wizard nested a 1120px column inside a 1300px
 * one and left a gutter down each side that matched nothing else on the page.
 */
.wpa-app .entry-content, .wpa-app .wp-block-post-content { max-width: none; padding-inline: 0; }
.wpa-app .entry-content > *, .wpa-app .wp-block-post-content > * { max-width: none; }
/* The plugin caps these at 1120px of its own accord; inside our shell the page
   wrapper is what decides the width. */
.wpa-app .wpa-dashboard, .wpa-app .wpa-submit-listing, .wpa-app .wpa-filters { max-width: none; }
@media (max-width: 820px) { .wpa-dashboard { grid-template-columns: minmax(0,1fr); } }
.wpa-dashboard__nav { display: flex; flex-direction: column; gap: 4px; background: var(--white); border: 1px solid var(--line); border-radius: 24px; padding: 10px; position: sticky; top: 96px; }
@media (max-width: 820px) {
  .wpa-dashboard__nav { flex-direction: row; flex-wrap: wrap; position: static; align-items: center; }
  .wpa-dashboard__nav .wpa-dashboard__nav-item--out { margin: 0 0 0 auto; padding-top: 11px; border-top: 0; border-radius: 14px; }
}
.wpa-dashboard__nav-item { padding: 11px 14px; border-radius: 14px; font-size: 15px; font-weight: 500; color: var(--body); }
.wpa-dashboard__nav-item:hover { background: var(--tint); color: var(--ink); } .wpa-dashboard__nav-item.is-active { background: var(--ink); color: #fff; }
.wpa-dashboard__content { background: var(--white); border: 1px solid var(--line); border-radius: 26px; padding: clamp(20px, 3vw, 32px); }
.wpa-dashboard__content h2 { font-size: 24px; margin-bottom: 18px; }
.wpa-dashboard__header { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 18px; }
.wpa-dashboard__hint { font-size: 14px; color: var(--body); line-height: 1.6; max-width: 62ch; margin: 0 0 20px; }
.wpa-stat-card__number { overflow-wrap: anywhere; }
.wpa-stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 14px; margin-bottom: 24px; }
.wpa-stat-card { background: var(--tint); border-radius: 18px; padding: 18px 20px; }
.wpa-stat-card__number { display: block; font-family: var(--fh); font-weight: 800; font-size: 32px; letter-spacing: -.045em; color: var(--ink); line-height: 1; }
.wpa-stat-card__label { display: block; font-size: 13.5px; color: var(--muted); margin-top: 6px; }
.wpa-listings-table table { width: 100%; border-collapse: collapse; font-size: 14.5px; }
.wpa-listings-table th { text-align: left; font-size: 12px; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); padding: 10px 12px; border-bottom: 1px solid var(--line); }
.wpa-listings-table td { padding: 14px 12px; border-bottom: 1px solid var(--line); color: var(--ink); }
.wpa-status { display: inline-block; font-size: 12.5px; font-weight: 600; padding: 4px 10px; border-radius: 999px; }
.wpa-status--publish { background: var(--green50); color: #2F7F6B; } .wpa-status--pending { background: var(--amber50); color: #8A6229; } .wpa-status--draft { background: var(--tint); color: var(--muted); }
.wpa-form-section { background: var(--white); border: 1px solid var(--line); border-radius: 26px; padding: clamp(20px, 3vw, 30px); margin-bottom: 18px; }
.wpa-form-section__header { margin-bottom: 18px; } .wpa-form-section__header h3 { font-size: 20px; } .wpa-form-section__header p { font-size: 14.5px; color: var(--muted); margin-top: 4px; }
.wpa-field { margin-bottom: 16px; display: flex; flex-direction: column; gap: 6px; }
.wpa-field-row, .wpa-field-grid { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 0 16px; }
@media (max-width: 620px) { .wpa-field-row, .wpa-field-grid { grid-template-columns: minmax(0,1fr); } }
.wpa-form-section--submit { text-align: center; } .wpa-submit-notice { font-size: 14.5px; color: var(--muted); margin-bottom: 14px; }
.wpa-upgrade-prompt { background: var(--tint2); border: 1px solid var(--acc100); border-radius: 22px; padding: 22px; text-align: center; }
.wpa-upgrade-prompt h3 { font-size: 18px; margin-bottom: 6px; }
.wpa-contact-textarea { width: 100%; box-sizing: border-box; padding: 12px 14px; border: 1px solid var(--line2); border-radius: 14px; font: inherit; font-size: 14.5px; margin-bottom: 10px; min-height: 96px; }
.wpa-conversation-list { display: flex; flex-direction: column; gap: 8px; }
.wpa-conversation-item { display: flex; gap: 12px; padding: 14px; border: 1px solid var(--line); border-radius: 18px; }
.wpa-conversation-item:hover { background: var(--tint); }
.wpa-message__bubble { border-radius: 18px; padding: 12px 14px; font-size: 14.5px; }
.wpa-message--sent .wpa-message__bubble { background: var(--ink); color: #fff; } .wpa-message--received .wpa-message__bubble { background: var(--tint); }
.wpa-message-form__input { border: 1px solid var(--line2); border-radius: 14px; padding: 10px 14px; font: inherit; }
.wpa-empty-state { text-align: center; padding: 40px 20px; color: var(--muted); }
.wpa-empty-state p { margin-bottom: 14px; }
.wpa-auth-forgot, .wpa-auth-link { font-size: 14px; color: var(--muted); margin-top: 14px; text-align: center; } .wpa-auth-link a, .wpa-auth-forgot a { color: var(--acc); font-weight: 500; }
.wpa-auth-form .wpa-btn { width: 100%; margin-top: 6px; }

@media (prefers-reduced-motion: reduce) { *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; } .wpa-b:hover, .wpa-lc:hover, .wpa-fc:hover, .wpa-post-card:hover { transform: none; } }

/* ---------- Submit wizard ---------- */
.wpa-wiz { display: block; }
.wpa-wiz__steps { display: flex; flex-wrap: wrap; gap: 6px; list-style: none; margin: 0 0 30px; padding: 0; counter-reset: wizstep; }
.wpa-wiz__steps li { counter-increment: wizstep; display: inline-flex; align-items: center; gap: 8px; padding: 8px 14px 8px 9px; border-radius: 999px; background: var(--white); border: 1px solid var(--line); font-size: 13.5px; font-weight: 500; color: var(--muted); }
.wpa-wiz__steps li::before { content: counter(wizstep); width: 22px; height: 22px; border-radius: 50%; background: var(--tint); color: var(--muted); display: grid; place-items: center; font-family: var(--fh); font-size: 12px; font-weight: 700; flex: none; }
.wpa-wiz__steps li.is-on { color: var(--ink); border-color: var(--acc100); }
.wpa-wiz__steps li.is-on::before { background: var(--acc); color: #fff; }
.wpa-wiz__steps li.is-now { background: var(--ink); border-color: var(--ink); color: #fff; }
.wpa-wiz__steps li.is-now::before { background: rgba(255,255,255,.18); color: #fff; }
@media (max-width: 640px) { .wpa-wiz__steps li { font-size: 0; padding: 8px; gap: 0; } .wpa-wiz__steps li::before { width: 26px; height: 26px; font-size: 12.5px; } }

.wpa-wiz__panel { background: var(--white); border: 1px solid var(--line); border-radius: 26px; padding: clamp(24px, 3.4vw, 36px); }
.wpa-wiz__panel h2 { font-size: clamp(22px, 2.8vw, 28px); font-weight: 700; margin-bottom: 8px; }
.wpa-wiz__help { font-size: 15.5px; color: var(--muted); margin-bottom: 26px; max-width: 60ch; }

.wpa-wiz__f { display: flex; flex-direction: column; gap: 7px; margin-bottom: 20px; }
.wpa-wiz__f > span { font-size: 13.5px; font-weight: 600; color: var(--ink); }
.wpa-wiz__f small { font-size: 13px; color: var(--muted); line-height: 1.5; }
.wpa-wiz__f input, .wpa-wiz__f select, .wpa-wiz__f textarea { width: 100%; box-sizing: border-box; min-height: 48px; padding: 12px 14px; border: 1px solid var(--line2); border-radius: 14px; background: var(--white); font: inherit; font-size: 15.5px; color: var(--ink); }
.wpa-wiz__f textarea { min-height: auto; line-height: 1.6; resize: vertical; }
.wpa-wiz__f select { appearance: none; -webkit-appearance: none; background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path d='M2.5 4.5 6 8l3.5-3.5' fill='none' stroke='%237C879B' stroke-width='1.6' stroke-linecap='round'/></svg>"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 38px; cursor: pointer; }
.wpa-wiz__f input:focus, .wpa-wiz__f select:focus, .wpa-wiz__f textarea:focus { outline: none; border-color: var(--acc); box-shadow: 0 0 0 4px var(--acc50); }
.wpa-wiz__row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 18px; }
@media (max-width: 620px) { .wpa-wiz__row { grid-template-columns: minmax(0, 1fr); } }

.wpa-wiz__private { display: flex; align-items: center; gap: 9px; margin-top: 4px; padding: 13px 16px; border-radius: 14px; background: var(--acc50); color: var(--acc7); font-size: 14px; font-weight: 500; }
.wpa-wiz__private svg { flex: none; }

.wpa-wiz__review { display: flex; flex-direction: column; gap: 20px; margin-bottom: 22px; }
.wpa-wiz__rgroup h3 { font-size: 12.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--faint); margin-bottom: 10px; }
.wpa-wiz__rgroup dl { margin: 0; }
.wpa-wiz__rgroup p { font-size: 15px; line-height: 1.65; }
.wpa-wiz__rrow { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr); gap: 16px; padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 14.5px; }
.wpa-wiz__rrow dt { color: var(--muted); margin: 0; }
.wpa-wiz__rrow dd { margin: 0; color: var(--ink); font-weight: 500; }
@media (max-width: 560px) { .wpa-wiz__rrow { grid-template-columns: minmax(0, 1fr); gap: 3px; } }

.wpa-wiz__check { display: flex; gap: 11px; align-items: flex-start; font-size: 14.5px; line-height: 1.55; }
.wpa-wiz__check input { width: 19px; height: 19px; margin-top: 2px; flex: none; accent-color: var(--acc); }
.wpa-wiz__check a { color: var(--acc-text); text-decoration: underline; text-underline-offset: 3px; }

.wpa-wiz__nav { display: flex; gap: 10px; align-items: center; margin-top: 22px; flex-wrap: wrap; }
.wpa-wiz__nav .wpa-wiz__next, .wpa-wiz__nav .wpa-wiz__submit { margin-left: auto; }
.wpa-wiz__status { margin-top: 14px; font-size: 14.5px; color: var(--muted); text-align: right; min-height: 1.2em; }

.wpa-wiz__done { background: var(--white); border: 1px solid var(--line); border-radius: 26px; padding: clamp(30px, 4vw, 46px); text-align: center; }
.wpa-wiz__done-i { display: inline-grid; place-items: center; width: 54px; height: 54px; border-radius: 50%; background: var(--green50); color: var(--green); margin-bottom: 18px; }
.wpa-wiz__done-i svg { width: 28px; height: 28px; }
.wpa-wiz__done.is-bad .wpa-wiz__done-i { background: var(--red50); color: var(--red); }
.wpa-wiz__done h2 { font-size: clamp(23px, 3vw, 30px); font-weight: 800; margin-bottom: 12px; }
.wpa-wiz__done p { font-size: 16px; line-height: 1.65; max-width: 52ch; margin: 0 auto 14px; }
.wpa-wiz__done .wpa-b { margin-top: 10px; }

/* ---------- Submit page layout ---------- */
/* Full site width like every other page; the wizard keeps a comfortable
   measure and the spare column carries the cost and privacy answers. */
.wpa-submit { display: grid; grid-template-columns: minmax(0, 1fr) 316px; gap: clamp(28px, 3.4vw, 48px); align-items: start; }
@media (max-width: 1000px) { .wpa-submit { grid-template-columns: minmax(0, 1fr); } }
.wpa-submit__main { min-width: 0; }
.wpa-submit__aside { display: flex; flex-direction: column; gap: 16px; position: sticky; top: 96px; }
@media (max-width: 1000px) { .wpa-submit__aside { position: static; } }

.wpa-sidecard { background: var(--white); border: 1px solid var(--line); border-radius: 24px; padding: 24px; }
.wpa-sidecard__k { display: flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--faint); margin-bottom: 14px; }
.wpa-sidecard__price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 12px; }
.wpa-sidecard__price b { font-family: var(--fh); font-weight: 800; font-size: 36px; letter-spacing: -.045em; color: var(--ink); line-height: 1; }
.wpa-sidecard__price span { font-size: 15px; color: var(--muted); }
.wpa-sidecard p { font-size: 14.5px; line-height: 1.6; }
.wpa-sidecard ul { list-style: none; margin: 16px 0 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.wpa-sidecard li { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; line-height: 1.5; }
.wpa-sidecard li svg { flex: none; margin-top: 3px; color: var(--green); }
.wpa-sidecard__link { display: inline-block; margin-top: 16px; font-size: 14px; font-weight: 600; color: var(--acc-text); }
.wpa-sidecard__link:hover { color: var(--acc6); text-decoration: underline; text-underline-offset: 3px; }
.wpa-sidecard--quiet { background: var(--tint2); border-color: var(--acc100); }
.wpa-sidecard--quiet .wpa-sidecard__k { color: var(--acc7); }
.wpa-sidecard__split { margin: 0; display: flex; flex-direction: column; gap: 14px; }
.wpa-sidecard__split dt { font-size: 12.5px; font-weight: 700; color: var(--ink); margin-bottom: 3px; }
.wpa-sidecard__split dd { margin: 0; font-size: 14px; line-height: 1.55; color: var(--body); }
.wpa-submit__help { font-size: 14px; color: var(--muted); padding-inline: 4px; }
.wpa-submit__help a { color: var(--acc-text); font-weight: 500; }

/* ---------- Wizard: month by month revenue ---------- */
.wpa-months { border: 0; margin: 26px 0 0; padding: 20px; background: var(--tint); border-radius: 18px; }
.wpa-months legend { font-size: 13.5px; font-weight: 600; color: var(--ink); padding: 0; }
.wpa-months__help { font-size: 13.5px; color: var(--muted); line-height: 1.55; margin: 6px 0 16px; }
.wpa-months__grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
@media (max-width: 760px) { .wpa-months__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (max-width: 480px) { .wpa-months__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
.wpa-months__m { display: flex; flex-direction: column; gap: 5px; }
.wpa-months__m > span { font-size: 11.5px; font-weight: 600; letter-spacing: .05em; text-transform: uppercase; color: var(--muted); }
.wpa-months__m input { width: 100%; box-sizing: border-box; height: 44px; padding: 0 12px; border: 1px solid var(--line2); border-radius: 12px; background: var(--white); font: inherit; font-size: 15px; color: var(--ink); }
.wpa-months__m input:focus { outline: none; border-color: var(--acc); box-shadow: 0 0 0 3px var(--acc50); }
.wpa-months__total { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin: 18px 0 0; padding-top: 16px; border-top: 1px solid var(--line2); font-size: 14.5px; color: var(--body); }
.wpa-months__total b { font-family: var(--fh); font-weight: 800; font-size: 22px; letter-spacing: -.035em; color: var(--ink); }

/* Sub-groups inside a wizard panel */
.wpa-wiz__group + .wpa-wiz__group { margin-top: 28px; padding-top: 24px; border-top: 1px solid var(--line); }
.wpa-wiz__group > h3 { font-size: 12.5px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--faint); margin-bottom: 16px; }

/* Sections a buyer can see the shape of but not the content of */
.wpa-lock__wrap { position: relative; overflow: hidden; border-radius: 16px; margin-top: 14px; min-height: 340px; display: grid; }
.wpa-lock__body { filter: blur(6px); opacity: .5; pointer-events: none; user-select: none; }
.wpa-lock__body > :last-child { margin-bottom: 0; }
.wpa-lock__over { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; padding: 20px;
  background: linear-gradient(to bottom, rgba(245,252,250,.72), rgba(235,250,246,.96) 44%); }
.wpa-lock__panel { text-align: center; max-width: 400px; padding: 24px 26px 22px; border-radius: 22px;
  background: var(--white); border: 1px solid var(--line2); box-shadow: 0 24px 48px -24px rgba(21,44,53,.42), 0 3px 8px -3px rgba(21,44,53,.08); }
.wpa-lock__icon { display: inline-flex; align-items: center; justify-content: center; width: 40px; height: 40px; border-radius: 15px; color: var(--acc); background: var(--tint2); border: 1px solid var(--acc100); }
.wpa-lock__panel h4 { margin: 13px 0 6px; font-family: var(--fh); font-size: 16px; font-weight: 700; letter-spacing: -.01em; color: var(--ink); }
.wpa-lock__panel p { margin: 0; font-size: 13.5px; line-height: 1.6; color: var(--body); }
/* The label wraps on a phone, and the arrow used to sit alone on the second
   line. Keeping the text together puts it back beside the last word. */
.wpa-lock__cta { display: inline-flex; align-items: center; justify-content: center; gap: 8px; margin-top: 18px; padding: 11px 20px; border-radius: 999px; text-wrap: balance;
  background: var(--ink); color: #fff; font-family: var(--fh); font-size: 14.5px; font-weight: 600; text-decoration: none;
  transition: transform .16s ease, background .16s ease, box-shadow .16s ease; }
.wpa-lock__cta svg { flex: none; transition: transform .16s ease; }
@media (max-width: 520px) {
  /* The blurred filler behind the panel shows as pale edges around it on a
     narrow screen, where the panel covers nearly the whole card anyway. */
  /* Two classes, so it beats .wpa-shots and .wpa-prose wherever they sit in
     this file. A tie on specificity is decided by order, and order here is
     not something this rule should have to know about. */
  .wpa-lock__wrap .wpa-lock__body { display: none; }
  .wpa-lock__wrap { min-height: 0; }
  .wpa-lock__over { position: static; padding: 0; }
  .wpa-lock__panel { max-width: none; width: 100%; }
}
.wpa-lock__cta:hover { background: var(--acc-text); transform: translateY(-1px); box-shadow: 0 10px 22px -12px var(--acc); }
.wpa-lock__cta:hover svg { transform: translateX(2px); }
.wpa-lock__price { display: block; margin-top: 11px; font-size: 12.5px; color: var(--muted); }
.wpa-lock__price a { color: var(--acc-ink); font-weight: 600; text-decoration: underline; text-underline-offset: 2px; }
.wpa-shots { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 12px; }
/* The tile holds the shape, so a tall screenshot cannot stretch the row. */
.wpa-shots .wpa-shot { position: relative; display: block; aspect-ratio: 16 / 10; border-radius: 14px; border: 1px solid var(--line); overflow: hidden; background: var(--tint); cursor: zoom-in; }
.wpa-shots .wpa-shot img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: top center; border: 0; border-radius: 0; transition: transform .35s ease; }
.wpa-shots .wpa-shot:hover img { transform: scale(1.03); }
.wpa-shot__zoom { position: absolute; right: 8px; bottom: 8px; width: 30px; height: 30px; display: grid; place-items: center; border-radius: 10px; background: rgba(21,44,53,.72); color: #fff; opacity: 0; transition: opacity .2s ease; }
.wpa-shots .wpa-shot:hover .wpa-shot__zoom, .wpa-shots .wpa-shot:focus-visible .wpa-shot__zoom { opacity: 1; }
.wpa-shots i { display: block; width: 100%; aspect-ratio: 16 / 10; border-radius: 14px; border: 1px solid var(--line); }

/* Lightbox */
.wpa-lb { position: fixed; inset: 0; z-index: 9999; display: grid; place-items: center; padding: 24px; background: rgba(14,32,40,.86); backdrop-filter: blur(3px); }
.wpa-lb img { max-width: min(1200px, 92vw); max-height: 86vh; width: auto; height: auto; border-radius: 14px; box-shadow: 0 30px 80px rgba(0,0,0,.45); background: #fff; }
.wpa-lb__btn { position: absolute; width: 46px; height: 46px; display: grid; place-items: center; border: 0; border-radius: 50%; background: rgba(255,255,255,.14); color: #fff; cursor: pointer; transition: background .15s ease; }
.wpa-lb__btn:hover { background: rgba(255,255,255,.28); }
.wpa-lb__x { top: 20px; right: 20px; }
.wpa-lb__p { left: 20px; top: 50%; transform: translateY(-50%); }
.wpa-lb__n { right: 20px; top: 50%; transform: translateY(-50%); }
.wpa-lb__c { position: absolute; bottom: 22px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.75); font-size: 13px; letter-spacing: .02em; }
@media (max-width: 640px) { .wpa-lb__p, .wpa-lb__n { top: auto; bottom: 20px; transform: none; } }
.wpa-shots i { background: linear-gradient(135deg, var(--tint), var(--tint2)); }
.wpa-empty { font-size: 14.5px; color: var(--muted); }
@media (max-width: 640px) { .wpa-shots { grid-template-columns: repeat(2, minmax(0,1fr)); } }

/* Contact */
.wpa-contact { padding-block: clamp(48px, 6vw, 84px) var(--sec); }
.wpa-contact__head { max-width: 640px; margin-bottom: clamp(32px, 4vw, 48px); }
.wpa-contact__head h1 { font-size: clamp(34px, 4.6vw, 52px); font-weight: 800; letter-spacing: -.035em; line-height: 1.05; margin: 14px 0 14px; }
.wpa-contact__head p { font-size: 17px; line-height: 1.65; }
.wpa-contact__grid { display: grid; grid-template-columns: minmax(0,1fr) 340px; gap: clamp(28px, 3.4vw, 52px); align-items: start; }
/* Contact Form 7 ships its own markup; these give it the same clothes as our own forms. */
.wpa-cf7 p { margin: 0 0 16px; display: flex; flex-direction: column; gap: 6px; font-size: 13.5px; font-weight: 600; color: var(--ink); }
.wpa-cf7 p:last-of-type { margin-bottom: 0; }
.wpa-cf7 input:not([type=checkbox]):not([type=radio]):not([type=submit]):not([type=file]), .wpa-cf7 select, .wpa-cf7 textarea { width: 100%; box-sizing: border-box; height: 46px; padding: 0 14px; border: 1px solid var(--line2); border-radius: 14px; background: var(--white); font: inherit; font-size: 15px; font-weight: 400; color: var(--ink); }
.wpa-cf7 textarea { height: auto; min-height: 130px; padding: 12px 14px; }
.wpa-cf7 input:focus, .wpa-cf7 select:focus, .wpa-cf7 textarea:focus { outline: none; border-color: var(--acc); box-shadow: 0 0 0 4px var(--acc50); }
.wpa-cf7 input[type=submit] { width: 100%; height: 50px; padding: 0 24px; border: 0; border-radius: 999px; background: var(--ink); color: #fff; font: inherit; font-size: 15px; font-weight: 600; cursor: pointer; transition: background .15s ease, transform .15s ease; }
.wpa-cf7 input[type=submit]:hover { background: var(--ink2); transform: translateY(-1px); }
.wpa-cf7 .wpcf7-spinner { margin: 10px auto 0; display: block; }
.wpa-cf7 .wpcf7-not-valid-tip { font-size: 13px; font-weight: 500; color: #B4413B; }
.wpa-cf7 .wpcf7-response-output { margin: 16px 0 0 !important; padding: 12px 14px !important; border: 1px solid var(--line2) !important; border-radius: 14px; font-size: 14px; }
.wpa-cf7 form.invalid .wpcf7-response-output, .wpa-cf7 form.failed .wpcf7-response-output { border-color: #E7C3C0 !important; background: #FDF4F3; color: #8E3A34; }
.wpa-cf7 form.sent .wpcf7-response-output { border-color: var(--line2) !important; background: var(--tint2); color: var(--acc-ink); }
.wpa-contact__fallback p { margin: 0 0 14px; color: var(--body); } .wpa-contact__fallback p:last-child { margin: 0; }
.wpa-contact__form { background: var(--white); border: 1px solid var(--line); border-radius: 26px; padding: clamp(24px, 3vw, 34px); box-shadow: var(--s2); }
.wpa-contact__aside { display: flex; flex-direction: column; gap: 16px; }
.wpa-contact__links { display: flex; flex-direction: column; gap: 10px; margin: 12px 0 0; padding: 0; list-style: none; }
.wpa-contact__links a { font-size: 14px; line-height: 1.5; color: var(--body); text-decoration: none; border-bottom: 1px solid transparent; }
.wpa-contact__links a:hover { color: var(--acc-text); border-bottom-color: var(--acc100); }
.wpa-cform__foot { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; margin-top: 4px; }
.wpa-cform__note { font-size: 14px; color: var(--muted); margin: 0; }
.wpa-cform__note.is-bad { color: var(--amber); }
.wpa-cform__done h3 { font-size: 22px; font-weight: 700; margin-bottom: 8px; }
.wpa-cform__done p { font-size: 15.5px; line-height: 1.65; }
.wpa-hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
@media (max-width: 900px) { .wpa-contact__grid { grid-template-columns: minmax(0,1fr); } }
.wpa-contact__aside .wpa-sidecard__split + p { margin-top: 16px; font-size: 14px; line-height: 1.6; }

/* Wizard: tick-box options and the file picker */
.wpa-wiz__opts { border: 1px solid var(--line); border-radius: 16px; padding: 18px 20px 8px; margin: 4px 0 20px; }
.wpa-wiz__opts legend { padding: 0 8px; font-size: 13.5px; font-weight: 600; color: var(--ink); }
.wpa-wiz__opts .wpa-wiz__help { margin: 0 0 14px; }
.wpa-wiz__opt { display: flex; align-items: flex-start; gap: 12px; padding: 12px 14px; margin-bottom: 10px; border: 1px solid var(--line2); border-radius: 14px; cursor: pointer; transition: border-color .16s ease, background .16s ease; }
.wpa-wiz__opt:hover { border-color: var(--acc); background: var(--tint2); }
.wpa-wiz__opt input { width: 18px; height: 18px; margin-top: 1px; flex: none; accent-color: var(--acc); }
.wpa-wiz__opt b { display: block; font-size: 14.5px; font-weight: 600; color: var(--ink); }
.wpa-wiz__opt small { display: block; margin-top: 2px; font-size: 13px; color: var(--muted); line-height: 1.5; }
.wpa-wiz__f input[type="file"] { padding: 11px 14px; font-size: 14px; cursor: pointer; }
.wpa-wiz__f input[type="file"]::file-selector-button { margin-right: 12px; padding: 7px 14px; border: 1px solid var(--line2); border-radius: 999px; background: var(--tint); font: inherit; font-size: 13.5px; font-weight: 600; color: var(--ink); cursor: pointer; }
.wpa-wiz__f input[type="file"]::file-selector-button:hover { border-color: var(--acc); color: var(--acc-text); }
.wpa-shots__video { margin-top: 14px; }

/* The last cell of the listings grid is the way through to the full list */
.wpa-lc--next { display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
  background: var(--white); border: 1px solid var(--line); box-shadow: var(--s1); text-align: left; gap: 0; }
.wpa-lc--next:hover { transform: translateY(-3px); box-shadow: var(--s2); border-color: var(--acc); }
.wpa-lc__sprout { width: 52px; height: 52px; color: var(--acc); flex: none; padding: 12px; border-radius: 16px; background: var(--tint2); box-sizing: content-box; }
.wpa-lc--next h3 { margin-top: 20px; font-size: 21px; font-weight: 700; color: var(--ink); }
.wpa-lc--next p { margin-top: 12px; font-size: 15px; line-height: 1.6; color: var(--body); }
.wpa-lc__go { display: inline-flex; align-items: center; gap: 8px; margin-top: 22px; font-family: var(--fh); font-size: 15px; font-weight: 600; color: var(--acc-ink); }
.wpa-lc__go svg { transition: transform .16s ease; }
.wpa-lc--next:hover .wpa-lc__go svg { transform: translateX(3px); }

/* Login: the two ways in, for people who have an account and people who do not */
.wpa-auth__paths { display: grid; gap: 12px; margin-top: 26px; }
.wpa-auth__path { background: var(--white); border: 1px solid var(--line); border-radius: 18px; padding: 20px 22px; }
.wpa-auth__path b { display: block; font-family: var(--fh); font-size: 16px; font-weight: 700; color: var(--ink); }
.wpa-auth__path p { margin: 6px 0 0; font-size: 14px; line-height: 1.6; color: var(--body); }
.wpa-auth__path .wpa-b { margin-top: 14px; }
.wpa-auth__path small { display: block; margin-top: 10px; font-size: 12.5px; color: var(--muted); }
.wpa-auth__path--quiet { background: transparent; border-style: dashed; }

/* Money step: months as rows you can add to and take away from */
.wpa-months__list { display: flex; flex-direction: column; gap: 8px; margin-top: 4px; }
.wpa-months__row { display: grid; grid-template-columns: minmax(0, 1fr) 190px 36px; align-items: center; gap: 12px;
  padding: 8px 8px 8px 16px; border: 1px solid var(--line); border-radius: 14px; background: var(--white); }
.wpa-months__row:hover { border-color: var(--line2); }
.wpa-months__name { font-size: 14.5px; font-weight: 600; color: var(--ink); }
.wpa-wiz__note { margin: 0 0 18px; padding: 14px 16px; border: 1px solid var(--line2); border-radius: 16px; background: var(--tint); font-size: 14px; line-height: 1.6; color: var(--body); }
/* Money fields carry the currency, so nobody has to guess whether it is dollars. */
.wpa-money { position: relative; display: block; }
.wpa-money i { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); font-style: normal; font-size: 15px; color: var(--muted); pointer-events: none; }
.wpa-money input { padding-left: 27px; }
.wpa-months__field { position: relative; display: block; }
.wpa-months__field i { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); font-style: normal; font-size: 14.5px; color: var(--muted); }
.wpa-months__field input { width: 100%; box-sizing: border-box; height: 44px; padding: 0 14px 0 28px; border: 1px solid var(--line2);
  border-radius: 11px; background: var(--white); font: inherit; font-size: 15px; color: var(--ink); }
.wpa-months__field input:focus { outline: none; border-color: var(--acc); box-shadow: 0 0 0 3px var(--acc50); }
.wpa-months__x { width: 34px; height: 34px; display: grid; place-items: center; border: 0; border-radius: 10px;
  background: transparent; color: var(--muted); cursor: pointer; transition: background .16s ease, color .16s ease; }
.wpa-months__x:hover:not(:disabled) { background: var(--red50); color: var(--red); }
.wpa-months__x:disabled { opacity: .3; cursor: not-allowed; }
.wpa-months__add { display: flex; align-items: center; gap: 10px; margin-top: 14px; flex-wrap: wrap; }
.wpa-months__addnote { font-size: 13px; color: var(--muted); }
.wpa-months__add select { height: 46px; padding: 0 34px 0 14px; border: 1px solid var(--line2); border-radius: 999px;
  background: var(--white); font: inherit; font-size: 14.5px; color: var(--ink); cursor: pointer; appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'><path d='M2.5 4.5 6 8l3.5-3.5' fill='none' stroke='%23728288' stroke-width='1.6' stroke-linecap='round'/></svg>");
  background-repeat: no-repeat; background-position: right 14px center; }
@media (max-width: 640px) { .wpa-months__row { grid-template-columns: minmax(0, 1fr) 34px; grid-template-areas: "name x" "field field"; row-gap: 8px; }
  .wpa-months__name { grid-area: name; } .wpa-months__x { grid-area: x; } .wpa-months__field { grid-area: field; } }

/* Money step: pulling the figures from Freemius */
.wpa-fsfill { margin-top: 18px; }
.wpa-fsfill__cta { display: flex; align-items: center; gap: 14px; width: 100%; text-align: left; cursor: pointer;
  padding: 16px 18px; border: 1px solid var(--acc100); border-radius: 16px; background: var(--acc50);
  font: inherit; color: var(--ink); transition: border-color .16s ease, box-shadow .16s ease, transform .16s ease; }
.wpa-fsfill__cta:hover { border-color: var(--acc); box-shadow: var(--s1); transform: translateY(-1px); }
.wpa-fsfill__icon { display: grid; place-items: center; width: 42px; height: 42px; flex: none; border-radius: 13px; background: var(--acc); color: var(--white); }
.wpa-fsfill__label { flex: 1; min-width: 0; }
.wpa-fsfill__label b { display: block; font-family: var(--fh); font-size: 15.5px; font-weight: 700; }
.wpa-fsfill__label small { display: block; margin-top: 2px; font-size: 13px; color: var(--body); }
.wpa-fsfill__chev { flex: none; color: var(--muted); transition: transform .16s ease; }
.wpa-fsfill__cta:hover .wpa-fsfill__chev { transform: translateX(3px); }
.wpa-fsfill__panel { margin-top: 14px; padding: 20px 22px; border: 1px solid var(--acc100); border-radius: 16px; background: var(--acc50); }
.wpa-fsfill__help { font-size: 13.5px; line-height: 1.6; color: var(--body); margin-bottom: 16px; }
.wpa-fsfill__foot { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.wpa-fsfill__status { font-size: 13.5px; color: var(--body); }

/* Wizard: what is missing, said where the eye already is */
.wpa-wiz__error { margin: -6px 0 20px; padding: 12px 16px; border-radius: 12px; background: var(--red50);
  border: 1px solid rgba(196,104,92,.28); color: #8C4136; font-size: 14.5px; line-height: 1.5; }

/* A waived fee: the old price stays visible, and the qualifier gets its own
   line rather than wrapping in the gap beside a very large word */
.wpa-plan__p--waived, .wpa-sidecard__price--waived { display: flex; flex-wrap: wrap; align-items: baseline; }
.wpa-plan__p--waived span, .wpa-sidecard__price--waived span { flex: 0 0 100%; margin: 4px 0 0; }
.wpa-plan__p s, .wpa-sidecard__price s { margin-right: 10px; font-family: var(--fh); font-weight: 700; color: var(--faint); text-decoration-thickness: 2px; }
.wpa-plan__p s { font-size: 30px; }
.wpa-sidecard__price s { font-size: 20px; }

/* Screenshots: what is attached, so the seller can see it went in */
.wpa-shots__picked { list-style: none; margin: 12px 0 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.wpa-shots__picked li { display: grid; grid-template-columns: minmax(0,1fr) auto 34px; align-items: center; gap: 12px;
  padding: 8px 8px 8px 14px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); }
.wpa-shots__name { font-size: 14px; color: var(--ink); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.wpa-shots__size { font-size: 12.5px; color: var(--muted); }


/* The write-up uses WordPress's own editor; these soften it into the page */
.wpa-wiz .wp-editor-wrap { border: 1px solid var(--line2); border-radius: 12px; overflow: hidden; background: var(--white); }
.wpa-wiz .wp-editor-tools { background: var(--tint); border-bottom: 1px solid var(--line); padding: 6px 6px 0; margin: 0; }
.wpa-wiz .wp-editor-tabs { padding: 0 4px; }
.wpa-wiz .wp-switch-editor { border-radius: 8px 8px 0 0; font-family: var(--fb); font-size: 13px; }
.wpa-wiz .mce-toolbar-grp, .wpa-wiz .quicktags-toolbar { background: var(--tint) !important; border-color: var(--line) !important; }
.wpa-wiz .mce-panel { border-color: var(--line) !important; }
.wpa-wiz .wp-editor-area { border: 0; font-size: 15px; line-height: 1.65; }

/* Month totals: what the figure counts, said next to the figure */
.wpa-months__sum { margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--line); }
.wpa-months__line { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; font-size: 14px; color: var(--body); }
.wpa-months__line b { font-family: var(--fh); font-size: 18px; font-weight: 700; color: var(--ink); letter-spacing: -.02em; }
.wpa-months__line--year { margin-top: 6px; }
.wpa-months__line--year b { font-size: 16px; color: var(--acc-ink); }

/* Signing out sits at the foot of the dashboard nav, away from the tabs */
.wpa-dashboard__nav-item--out { margin-top: 8px; padding-top: 14px; border-top: 1px solid var(--line); border-radius: 0 0 14px 14px; color: var(--muted); }
.wpa-dashboard__nav-item--out:hover { color: var(--red); background: var(--red50); }

/* Editing an existing listing */
.wpa-wiz__editing { margin-bottom: 20px; padding: 12px 16px; border-radius: 12px; background: var(--acc50); border: 1px solid var(--acc100); font-size: 14.5px; color: var(--body); }

/* Screenshots already on a listing, shown when editing it */
.wpa-shots__have { list-style: none; margin: 12px 0 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.wpa-shots__have li { display: grid; grid-template-columns: 90px minmax(0,1fr) 34px; align-items: center; gap: 12px;
  padding: 8px; border: 1px solid var(--line); border-radius: 12px; background: var(--white); }
.wpa-shots__have img { width: 90px; height: 60px; object-fit: cover; border-radius: 8px; display: block; }
}

/* A word to the seller about what just happened to their listing. */
.wpa-dashboard__note { margin: 0 0 16px; padding: 10px 14px; border-radius: 12px; background: var(--tint2); border: 1px solid var(--line2); color: var(--ink); font-size: 14.5px; }

/* The Analytics offer inside the wizard's traffic step. */
.wpa-wiz__ga { margin: 18px 0 8px; padding: 16px 18px; border: 1px solid var(--line2); border-radius: var(--r-sm); background: var(--tint); }
.wpa-wiz__ga-say { margin: 0 0 12px; font-size: 14.5px; color: var(--body); }
.wpa-wiz__ga-say strong { color: var(--ink); }
.wpa-wiz__ga select { max-width: 100%; }

/* What the asking price works out to, said while it is being typed. */
.wpa-wiz__multiple { display: flex; flex-direction: column; gap: 8px; margin: 10px 0 0; padding: 14px 16px; border-radius: var(--r-sm); background: var(--tint2); border: 1px solid var(--line2); color: var(--body); font-size: 14.5px; line-height: 1.6; }
.wpa-wiz__multiple strong { color: var(--ink); font-size: 15.5px; }
.wpa-wiz__multiple ul { margin: 0; padding-left: 18px; display: flex; flex-direction: column; gap: 6px; }
.wpa-wiz__multiple li { margin: 0; }
.wpa-wiz__multiple.is-high { background: var(--amber50); border-color: #EBD9BE; color: #6B4D22; }
.wpa-wiz__multiple.is-high strong { color: #543C19; }

/* What it is: several may fit, the first ticked goes on the card. Same box
   and same rows as the free/paid question below it, laid out in columns
   because there are ten of them rather than two. */
.wpa-types__list { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 0 10px; }
.wpa-types__one { align-items: center; }
.wpa-types__badge { margin: 4px 0 10px; font-size: 14px; color: var(--body); }
.wpa-types__badge strong { color: var(--ink); }

/* Our own note on a listing: same width as the cards, different ground, so a
   reader can tell at a glance that this one is not the seller talking. */
.wpa-note-card { margin-top: 18px; padding: clamp(20px, 2.6vw, 28px); border-radius: var(--r-md); background: var(--tint2); border: 1px solid var(--line2); }
.wpa-note-card__top { display: flex; align-items: center; gap: 9px; margin-bottom: 12px; color: var(--acc-text); }
.wpa-note-card__top h2 { margin: 0; font-size: clamp(17px, 1.6vw, 20px); color: var(--ink); }
.wpa-note-card .wpa-prose p { color: var(--body); }
