/* Paul World — aggressive GHL affiliate funnel */

:root {
  --bg: #F4F7FB;
  --surface: #FFFFFF;
  --ink: #0B1220;
  --muted: #5B677A;
  --line: #D7DEE8;
  --brand: #0F766E;
  --brand-2: #115E59;
  --accent: #F59E0B;
  --radius: 14px;
  --radius-btn: 12px;
  --shadow: 0 10px 30px rgba(11, 18, 32, 0.08);
  --font: "Archivo", "Archivo Placeholder", sans-serif;
  --font-display: var(--font);
  --font-body: var(--font);
  --wrap: 1320px;
  --gutter: 20px;
  --section: 48px;
  --header: 72px;
  --step-1: 2.75rem;   /* ~44 → 64 desktop */
  --step-2: 2.25rem;   /* ~36 → 56 desktop */
  --step-3: 1.5rem;    /* 24 */
  --step-body: 1rem;   /* 16 */
  --step-kicker: 0.875rem; /* 14 */
}

@media (min-width: 900px) {
  :root {
    --gutter: 32px;
    --section: 120px;
    --step-1: 4rem;    /* 64px */
    --step-2: 3.5rem;  /* 56px */
  }
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  font-size: var(--step-body);
  font-weight: 400;
  font-style: normal;
  line-height: 1.55;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(15, 118, 110, 0.1), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(11, 18, 32, 0.06), transparent 50%),
    var(--bg);
  min-height: 100%;
  -webkit-font-smoothing: antialiased;
}

img, svg { max-width: 100%; display: block; }
img { height: auto; }
a { color: var(--brand-2); text-decoration: none; }
a:hover { color: var(--brand); }
p { margin: 0; font-style: normal; font-weight: 400; }

h1, h2, h3, .pw-logo__mark {
  font-family: var(--font);
  font-style: normal;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin: 0;
}
h1 {
  font-size: var(--step-1);
  line-height: 1.08;
  font-weight: 600;
}
h2 {
  font-size: var(--step-2);
  line-height: 1.12;
  font-weight: 600;
}
h3 {
  font-size: var(--step-3);
  line-height: 1.3;
  font-weight: 600;
}

:focus-visible { outline: 2px solid var(--brand); outline-offset: 2px; }

.pw-visually-hidden, .pw-hp {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.pw-skip {
  position: absolute; left: 16px; top: -48px; z-index: 100;
  padding: 8px 16px; background: var(--ink); color: #fff; border-radius: 10px;
}
.pw-skip:focus { top: 8px; color: #fff; }

.pw-wrap {
  width: min(var(--wrap), calc(100% - (var(--gutter) * 2)));
  margin-inline: auto;
}

.pw-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  font-family: var(--font);
  font-size: var(--step-kicker);
  font-weight: 600;
  font-style: normal;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brand);
}
.pw-section__head--center .pw-eyebrow { justify-content: center; }
.pw-eyebrow__ico {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  flex: none;
  color: var(--brand);
  overflow: visible;
}
.pw-eyebrow__ico svg {
  width: 18px;
  height: 18px;
  display: block;
  stroke: currentColor;
  transform-origin: 50% 50%;
  animation: pw-kicker-spin 1.2s linear infinite;
}
.pw-eyebrow__ico--spin svg,
.pw-eyebrow__ico--pulse svg {
  animation: pw-kicker-spin 1.2s linear infinite;
}
.pw-product .pw-eyebrow__ico svg { animation-delay: 0s; }
.pw-advantages .pw-eyebrow__ico svg { animation-delay: -0.2s; }
.pw-compare .pw-eyebrow__ico svg { animation-delay: -0.4s; }
.pw-audience .pw-eyebrow__ico svg { animation-delay: -0.6s; }
.pw-faq .pw-eyebrow__ico svg { animation-delay: -0.8s; }
@keyframes pw-kicker-spin {
  from { transform: rotate(0deg) translateY(0); }
  50% { transform: rotate(180deg) translateY(-2px); }
  to { transform: rotate(360deg) translateY(0); }
}

.pw-lede {
  margin-top: 12px;
  color: var(--muted);
  font-size: var(--step-body);
  font-weight: 400;
  font-style: normal;
  max-width: 40rem;
}

.pw-disclosure {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--muted);
}

/* Buttons */
.pw-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 12px 20px;
  border-radius: var(--radius-btn);
  border: 1px solid transparent;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transition: transform 280ms ease, box-shadow 280ms ease, background 200ms ease, color 200ms ease, border-color 200ms ease;
}
.pw-btn--primary {
  background: var(--brand);
  color: #fff;
  box-shadow: 0 8px 20px rgba(15, 118, 110, 0.25);
}
.pw-btn--primary:hover {
  background: var(--brand-2);
  color: #fff;
  transform: translateY(-2px);
}
.pw-btn--secondary {
  background: var(--surface);
  color: var(--ink);
  border-color: var(--line);
}
.pw-btn--secondary:hover {
  border-color: var(--brand);
  color: var(--brand-2);
  transform: translateY(-2px);
}
.pw-btn--ghost {
  background: transparent;
  color: var(--ink);
  min-height: 40px;
  padding: 8px 12px;
}
.pw-btn--ghost:hover { color: var(--brand); }
.pw-text-link {
  font-weight: 600;
  color: var(--brand);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ========== HEADER (not sticky — shares hero atmosphere) ========== */
.pw-header {
  position: relative;
  z-index: 20;
  padding: 12px 0;
  background: transparent;
  border: 0;
  backdrop-filter: none;
}
.pw-header__bar {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 48px;
}
.pw-logo {
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  flex: none;
}
.pw-logo:hover { color: var(--ink); }
.pw-logo__icon {
  width: 32px;
  height: 32px;
  object-fit: contain;
  flex: none;
  background: transparent;
  image-rendering: auto;
}
.pw-logo__mark {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.pw-nav { margin-left: auto; }
.pw-nav__list {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 8px;
}
.pw-nav__list a {
  display: block;
  padding: 10px 12px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.9375rem;
  border-radius: 10px;
}
.pw-nav__list a:hover { color: var(--ink); background: rgba(15, 118, 110, 0.06); }
.pw-header__end {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.pw-header__cta { display: none; }
.pw-nav-toggle {
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
  display: grid;
  place-items: center;
}
.pw-nav-toggle__bars,
.pw-nav-toggle__bars::before,
.pw-nav-toggle__bars::after {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  position: relative;
}
.pw-nav-toggle__bars::before,
.pw-nav-toggle__bars::after {
  content: "";
  position: absolute;
  left: 0;
}
.pw-nav-toggle__bars::before { top: -6px; }
.pw-nav-toggle__bars::after { top: 6px; }

@media (min-width: 960px) {
  .pw-nav__list { display: flex; }
  .pw-header__cta { display: inline-flex; }
  .pw-header__end { margin-left: 0; }
  .pw-nav-toggle { display: none; }
  .pw-nav { margin-left: auto; margin-right: 8px; }
}

.pw-header.is-open .pw-nav {
  position: absolute;
  left: var(--gutter);
  right: var(--gutter);
  top: calc(100% + 4px);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 12px;
}
.pw-header.is-open .pw-nav__list {
  display: flex;
  flex-direction: column;
}

/* ========== HERO ========== */
.pw-hero {
  position: relative;
  overflow: hidden;
  margin-top: calc(-1 * var(--header));
  padding: calc(var(--header) + 28px) 0 var(--section);
  isolation: isolate;
}
.pw-hero__atmosphere {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(232, 242, 241, 0.9) 0%, transparent 55%),
    radial-gradient(ellipse 80% 50% at 70% 30%, rgba(15, 118, 110, 0.16), transparent 60%),
    radial-gradient(ellipse 50% 40% at 20% 80%, rgba(245, 158, 11, 0.08), transparent 50%);
  pointer-events: none;
}
.pw-hero__atmosphere::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  background-image: radial-gradient(circle, rgba(11, 18, 32, 0.18) 1px, transparent 1px);
  background-size: 22px 22px;
  -webkit-mask-image: linear-gradient(180deg, #000 20%, transparent 85%);
  mask-image: linear-gradient(180deg, #000 20%, transparent 85%);
}
.pw-hero__inner {
  display: grid;
  gap: 40px;
  align-items: end;
}
.pw-hero__copy {
  min-width: 0;
  max-width: 40rem;
}
.pw-hero__title {
  max-width: none;
  width: 100%;
  font-size: var(--step-1); /* 44 mobile → 64 desktop */
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin: 0 0 24px;
  text-wrap: balance;
}
.pw-hero__sub {
  margin-top: 0;
  max-width: 38rem;
  color: var(--muted);
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.55;
}
.pw-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.pw-hero__disclosure { margin-top: 16px; max-width: none; width: 100%; }
.pw-hero__visual {
  position: relative;
  min-height: 260px;
  border: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  perspective: 1200px;
}
.pw-scene3d {
  position: relative;
  height: 100%;
  min-height: 260px;
  transform-style: preserve-3d;
  transform: rotateX(14deg) rotateY(-16deg) rotateZ(2deg);
  animation: pw-scene-idle 7s ease-in-out infinite;
}
.pw-scene3d__glow {
  position: absolute;
  inset: 8% 5% 12%;
  background: radial-gradient(closest-side, rgba(15, 118, 110, 0.28), transparent 72%);
  filter: blur(8px);
  pointer-events: none;
}
.pw-scene3d__floor {
  position: absolute;
  left: 8%;
  width: 84%;
  bottom: 2%;
  height: 30%;
  border-radius: 50%;
  background:
    radial-gradient(ellipse 70% 55% at 48% 42%, rgba(11, 18, 32, 0.18) 0%, rgba(11, 18, 32, 0.06) 42%, transparent 72%);
  transform: rotateX(78deg) translateZ(-48px);
  transform-style: preserve-3d;
  pointer-events: none;
}
.pw-scene3d__floor::before {
  content: "";
  position: absolute;
  inset: 22% 18% 18%;
  border-radius: 50%;
  background: radial-gradient(ellipse at 50% 45%, rgba(11, 18, 32, 0.32) 0%, rgba(11, 18, 32, 0.1) 45%, transparent 70%);
  filter: blur(6px);
}
.pw-scene3d__floor::after {
  content: "";
  position: absolute;
  inset: 16% 10% 20%;
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(15, 118, 110, 0.08) 55%, rgba(11, 18, 32, 0.04));
  border: 1px solid rgba(15, 118, 110, 0.22);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    0 1px 0 rgba(11, 18, 32, 0.06);
}
.pw-glass {
  position: absolute;
  transform-style: preserve-3d;
}
.pw-glass--many {
  left: 0;
  top: 8%;
  width: 64%;
  z-index: 2;
  transform: translateZ(6px) rotateY(12deg) translateX(-2%);
}
.pw-glass--one {
  right: -2%;
  top: 14%;
  width: 54%;
  z-index: 3;
  transform: translateZ(44px) rotateY(-10deg);
  animation: pw-glass-lift 4.8s ease-in-out infinite;
}
.pw-glass__pane {
  position: relative;
  min-height: 286px;
  padding: 20px 18px 16px;
  border-radius: 18px;
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.78), rgba(232, 238, 245, 0.52));
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow:
    0 24px 48px rgba(11, 18, 32, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.pw-glass__pane--one {
  min-height: 310px;
  display: grid;
  place-items: center;
  background: linear-gradient(155deg, rgba(11, 18, 32, 0.94) 0%, rgba(15, 118, 110, 0.9) 100%);
  border-color: rgba(20, 184, 166, 0.5);
  box-shadow:
    0 28px 56px rgba(11, 18, 32, 0.34),
    0 0 0 1px rgba(245, 158, 11, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}
.pw-glass__apps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.pw-glass__app {
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(215, 222, 232, 0.95);
  box-shadow: 0 8px 16px rgba(11, 18, 32, 0.08);
}
.pw-glass__app::after {
  content: attr(data-n);
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 20px;
  height: 18px;
  padding: 0 5px;
  border-radius: 9px;
  background: #EF4444;
  color: #fff;
  font-size: 0.625rem;
  font-weight: 700;
  line-height: 18px;
  text-align: center;
  box-shadow: 0 4px 8px rgba(239, 68, 68, 0.28);
}
.pw-glass__app i {
  display: block;
  width: 22px;
  height: 22px;
  background: #94A3B8;
}
.pw-glass__app .is-crm {
  background: linear-gradient(135deg, #64748B, #334155);
  clip-path: polygon(20% 10%, 80% 10%, 90% 50%, 80% 90%, 20% 90%, 10% 50%);
}
.pw-glass__app .is-mail {
  background: linear-gradient(135deg, #60A5FA, #2563EB);
  clip-path: polygon(0 20%, 50% 55%, 100% 20%, 100% 80%, 0 80%);
}
.pw-glass__app .is-sms {
  background: linear-gradient(135deg, #34D399, #059669);
  border-radius: 10px 10px 10px 2px;
}
.pw-glass__app .is-funnel {
  background: linear-gradient(180deg, #F59E0B, #D97706);
  clip-path: polygon(10% 10%, 90% 10%, 70% 90%, 30% 90%);
}
.pw-glass__app .is-cal {
  background: linear-gradient(135deg, #94A3B8, #475569);
  border-radius: 4px;
  box-shadow: inset 0 6px 0 rgba(255, 255, 255, 0.35);
}
.pw-glass__app .is-chat {
  background: linear-gradient(135deg, #38BDF8, #0284C7);
  border-radius: 50% 50% 50% 8%;
}
.pw-glass__app .is-form {
  background: linear-gradient(135deg, #FB7185, #E11D48);
  border-radius: 4px;
}
.pw-glass__app .is-site {
  background: linear-gradient(135deg, #2DD4BF, #0F766E);
  border-radius: 4px 4px 2px 2px;
}
.pw-glass__label {
  margin: 16px 0 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  text-align: center;
}
.pw-glass__core {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 14px;
  text-align: center;
  color: #E8EEF5;
  padding: 16px 12px;
}
.pw-glass__hub {
  position: relative;
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(153, 246, 228, 0.35);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.28);
}
.pw-glass__hub-ring {
  position: absolute;
  inset: 18px;
  border-radius: 50%;
  border: 2px solid rgba(20, 184, 166, 0.55);
}
.pw-glass__hub-ring::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #14B8A6, #0F766E 70%);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.35);
}
.pw-glass__hub-dot {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #99F6E4;
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.35);
}
.pw-glass__hub-dot:nth-child(2) { top: 8px; left: 40px; }
.pw-glass__hub-dot:nth-child(3) { top: 40px; right: 8px; background: #FCD34D; }
.pw-glass__hub-dot:nth-child(4) { bottom: 8px; left: 40px; background: #67E8F9; }
.pw-glass__hub-dot:nth-child(5) { top: 40px; left: 8px; background: #5EEAD4; }
.pw-glass__note {
  position: absolute;
  top: 2px;
  right: calc(50% - 54px);
  z-index: 2;
  display: grid;
  place-items: center;
  min-width: 26px;
  height: 26px;
  padding: 0 6px;
  border-radius: 13px;
  background: #EF4444;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 6px 14px rgba(239, 68, 68, 0.35);
}
.pw-glass__core em {
  font-style: normal;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
}
.pw-glass__core small {
  font-size: 0.75rem;
  line-height: 1.4;
  color: rgba(232, 238, 245, 0.72);
  max-width: 16ch;
}

@media (min-width: 900px) {
  .pw-hero { padding: calc(var(--header) + 40px) 0 var(--section); }
  .pw-hero__inner {
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 0.85fr);
    gap: 56px;
    align-items: center;
    min-height: 480px;
  }
  .pw-hero__copy {
    max-width: none;
    padding-right: 24px;
  }
  .pw-hero__visual,
  .pw-scene3d { min-height: 440px; }
}

.pw-hero__copy { animation: pw-rise 520ms ease both; }

@keyframes pw-rise {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: none; }
}
@keyframes pw-scene-idle {
  0%, 100% { transform: rotateX(14deg) rotateY(-16deg) rotateZ(2deg) translateY(0); }
  50% { transform: rotateX(12deg) rotateY(-12deg) rotateZ(1deg) translateY(-6px); }
}
@keyframes pw-glass-lift {
  0%, 100% { transform: translateZ(44px) rotateY(-10deg) translateY(0); }
  50% { transform: translateZ(44px) rotateY(-10deg) translateY(-8px); }
}
/* ========== SECTIONS ========== */
.pw-section { padding: var(--section) 0; }
.pw-section__head { margin-bottom: 32px; max-width: 40rem; }
.pw-section__head--center { margin-inline: auto; text-align: center; }
.pw-section__head--center .pw-lede { margin-inline: auto; }

/* Hook band */
.pw-hook {
  background: var(--ink);
  color: #E8EEF5;
  padding: 48px 0;
  overflow: hidden;
}
.pw-hook__grid {
  display: grid;
  gap: 32px;
  align-items: center;
}
.pw-hook__art {
  position: relative;
  min-height: 220px;
  display: grid;
  place-items: center;
}
.pw-hook__svg {
  width: min(100%, 420px);
  height: auto;
  filter: drop-shadow(0 24px 40px rgba(0, 0, 0, 0.35));
  animation: pw-hook-float 5.5s ease-in-out infinite;
}
.pw-hook__copy h2 {
  color: #fff;
  max-width: 22ch;
}
.pw-hook__copy p {
  color: rgba(232, 238, 245, 0.78);
  margin-top: 12px;
  max-width: 40rem;
}
.pw-hook__copy .pw-btn--primary { margin-top: 24px; }
.pw-hook__copy .pw-btn--primary:hover { background: #14B8A6; }

@media (min-width: 900px) {
  .pw-hook { padding: 64px 0; }
  .pw-hook__grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 48px;
  }
  .pw-hook__art { min-height: 300px; }
}

@keyframes pw-hook-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Product name */
.pw-product {
  background: var(--surface);
  border-block: 1px solid var(--line);
}
.pw-product__grid {
  display: grid;
  gap: 28px;
}
@media (min-width: 800px) {
  .pw-product__grid { grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }
}
.pw-product__name {
  display: inline-block;
  margin-bottom: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--brand);
}
.pw-product__points {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.pw-product__points li {
  position: relative;
  padding-left: 28px;
  font-weight: 600;
}
.pw-product__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: var(--brand);
}

/* Motion reel (between product + advantages) */
.pw-reel {
  padding: 0 0 24px;
  background: #060A12;
}
.pw-reel__stage {
  position: relative;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.06);
  background:
    radial-gradient(900px 420px at 20% 0%, rgba(15, 118, 110, 0.28), transparent 55%),
    radial-gradient(700px 380px at 90% 80%, rgba(245, 158, 11, 0.12), transparent 50%),
    linear-gradient(180deg, #0B1220 0%, #060A12 100%);
}
.pw-reel__bg {
  position: absolute;
  inset: 0;
  opacity: 0.25;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 48px 48px;
  -webkit-mask-image: radial-gradient(ellipse at center, #000 35%, transparent 75%);
  mask-image: radial-gradient(ellipse at center, #000 35%, transparent 75%);
  animation: pw-reel-grid 18s linear infinite;
  pointer-events: none;
}
.pw-reel__frame {
  position: relative;
  padding: 48px 0 40px;
  min-height: 360px;
}
.pw-reel__chrome {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}
.pw-reel__live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #99F6E4;
}
.pw-reel__live span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #14B8A6;
  box-shadow: 0 0 0 0 rgba(20, 184, 166, 0.6);
  animation: pw-reel-pulse 1.4s ease-out infinite;
}
.pw-reel__viewport {
  position: relative;
  min-height: 220px;
}
.pw-reel__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(16px) scale(0.98);
  pointer-events: none;
  transition: opacity 380ms ease, transform 380ms ease;
  color: #E8EEF5;
}
.pw-reel__slide.is-on {
  position: relative;
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.pw-reel__kicker {
  margin: 0 0 12px;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #F59E0B;
}
.pw-reel__slide h2 {
  color: #fff;
  max-width: 18ch;
  font-size: clamp(1.75rem, 3.2vw, 2.5rem);
  font-weight: 600;
}
.pw-reel__slide p {
  margin-top: 14px;
  max-width: 38rem;
  color: rgba(232, 238, 245, 0.78);
  font-size: 1.0625rem;
}
.pw-reel__slide .pw-btn { margin-top: 22px; }
.pw-reel__progress {
  margin-top: 28px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.pw-reel__progress i {
  display: block;
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #0F766E, #14B8A6, #F59E0B);
}
.pw-reel__dots {
  display: flex;
  gap: 8px;
  margin-top: 16px;
}
.pw-reel__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.22);
  cursor: pointer;
}
.pw-reel__dot.is-on { background: #14B8A6; }
.pw-reel__note {
  margin: 12px auto 0;
  font-size: 0.75rem;
  color: rgba(232, 238, 245, 0.45);
}

@keyframes pw-reel-pulse {
  0% { box-shadow: 0 0 0 0 rgba(20, 184, 166, 0.55); }
  70% { box-shadow: 0 0 0 10px rgba(20, 184, 166, 0); }
  100% { box-shadow: 0 0 0 0 rgba(20, 184, 166, 0); }
}
@keyframes pw-reel-grid {
  from { background-position: 0 0, 0 0; }
  to { background-position: 48px 48px, 48px 48px; }
}

/* Advantages */
.pw-advantages { background: transparent; }
.pw-adv-list {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--line);
}
.pw-adv {
  display: grid;
  gap: 8px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 800px) {
  .pw-adv {
    grid-template-columns: 64px 1fr 1.2fr;
    gap: 24px;
    align-items: baseline;
  }
}
.pw-adv__num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--brand);
  letter-spacing: -0.03em;
}
.pw-adv h3 { margin: 0; }
.pw-adv p { color: var(--muted); }

/* Compare */
.pw-compare { background: #EEF2F6; }
.pw-compare__grid {
  display: grid;
  gap: 16px;
}
@media (min-width: 800px) {
  .pw-compare__grid { grid-template-columns: 1fr 1fr; gap: 24px; }
}
.pw-compare__col {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.pw-compare__col.is-win {
  border-color: rgba(15, 118, 110, 0.45);
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, #fff 0%, #F2FBFA 100%);
}
.pw-compare__col h3 { margin-bottom: 16px; }
.pw-compare__col ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}
.pw-compare__col li {
  padding-left: 20px;
  position: relative;
  color: var(--muted);
  font-size: 1rem;
}
.pw-compare__col li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--muted);
  font-weight: 700;
}
.pw-compare__col.is-win li::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 2px;
  top: 0.55em;
  background: var(--brand);
}
.pw-compare__cta {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* Audience */
.pw-audience__grid {
  display: grid;
  gap: 16px;
}
@media (min-width: 800px) {
  .pw-audience__grid { grid-template-columns: 1.2fr 0.8fr; gap: 24px; }
}
.pw-audience__card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
}
.pw-audience__card.is-skip {
  background: #F7F9FB;
}
.pw-audience__card h3 { margin-bottom: 12px; }
.pw-audience__card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.pw-audience__card li {
  padding-left: 16px;
  position: relative;
  color: var(--muted);
}
.pw-audience__card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}
.pw-audience__card.is-skip li::before { background: var(--muted); }

/* FAQ */
.pw-faq__split {
  display: grid;
  gap: 32px;
}
@media (min-width: 900px) {
  .pw-faq__split { grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: start; }
}
.pw-faq__mail { margin-top: 20px; color: var(--muted); font-size: 0.9375rem; }
.pw-faq__mail a { font-weight: 600; }
.pw-faq__list details {
  border-bottom: 1px solid var(--line);
  padding: 16px 0;
}
.pw-faq__list summary {
  cursor: pointer;
  font-weight: 600;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
.pw-faq__list summary::-webkit-details-marker { display: none; }
.pw-faq__list summary::after {
  content: "+";
  color: var(--brand);
  font-weight: 700;
  flex: none;
}
.pw-faq__list details[open] summary::after { content: "–"; }
.pw-faq__list details p {
  margin-top: 10px;
  color: var(--muted);
  max-width: 42rem;
}

/* Final CTA */
.pw-close {
  background: linear-gradient(135deg, #0B1220 0%, #115E59 100%);
  color: #E8EEF5;
  padding: var(--section) 0;
  text-align: center;
}
.pw-close h2 { color: #fff; max-width: 18ch; margin-inline: auto; }
.pw-close .pw-lede { color: rgba(232, 238, 245, 0.75); margin-inline: auto; }
.pw-close__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: center;
  margin-top: 28px;
}
.pw-close .pw-disclosure {
  margin-top: 20px;
  color: rgba(232, 238, 245, 0.6);
  max-width: 40rem;
  margin-inline: auto;
}
.pw-close .pw-text-link { color: #99F6E4; }

/* Reveal */
.pw-reveal.js-ready { opacity: 0; transform: translateY(14px); transition: opacity 400ms ease, transform 400ms ease; }
.pw-reveal.js-ready.is-in { opacity: 1; transform: none; }

/* Sticky mobile CTA */
.pw-sticky-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 40;
}
.pw-sticky-cta__btn { width: 100%; box-shadow: var(--shadow); }
@media (min-width: 960px) {
  .pw-sticky-cta { display: none !important; }
}

/* Footer */
.pw-footer {
  background: var(--surface);
  border-top: 1px solid var(--line);
  padding: var(--section) 0 24px;
  margin-top: 0;
}
.pw-footer__grid {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
@media (min-width: 900px) {
  .pw-footer__grid {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 48px;
  }
}
.pw-footer__col--brand {
  flex: 0 1 260px;
  max-width: 30ch;
}
.pw-footer__cluster {
  display: flex;
  flex-wrap: wrap;
  gap: 28px 36px;
  align-items: flex-start;
}
@media (min-width: 900px) {
  .pw-footer__cluster {
    flex: 0 0 auto;
    flex-wrap: nowrap;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 48px;
    margin-left: auto;
  }
}
.pw-footer__col--explore,
.pw-footer__col--legal,
.pw-footer__col--disclaimer {
  flex: 0 0 auto;
}
.pw-footer__col--explore,
.pw-footer__col--legal {
  min-width: 6.5rem;
}
.pw-footer__col--disclaimer {
  width: 16rem;
  max-width: 16rem;
}
.pw-footer__logo {
  margin-bottom: 12px;
}
.pw-footer__blurb {
  color: var(--muted);
  font-size: 0.9375rem;
  max-width: 32ch;
  line-height: 1.5;
}
.pw-footer__mail { margin-top: 14px; }
.pw-footer__mail a { font-weight: 600; color: var(--brand); }
.pw-footer__label {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
  text-transform: none;
  margin: 0 0 14px;
  color: var(--ink);
}
.pw-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pw-footer__links li {
  margin: 0;
  padding: 0;
}
.pw-footer__links a {
  display: inline-block;
  color: var(--muted);
  font-weight: 400;
  font-size: 0.9375rem;
  line-height: 1.35;
  text-decoration: none;
}
.pw-footer__links a:hover {
  color: var(--ink);
}
.pw-footer__disclosure {
  margin: 0;
  color: var(--muted);
  font-size: 0.875rem;
  line-height: 1.5;
  max-width: none;
}
.pw-footer__base {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.875rem;
  text-align: center;
}

/* Inner pages */
.pw-page { padding: 0 0 var(--section); }
.pw-page__hero {
  position: relative;
  padding: 40px 0 40px;
  margin-bottom: 40px;
  overflow: hidden;
}
@media (min-width: 900px) {
  .pw-page__hero {
    padding: 56px 0 48px;
    margin-bottom: 56px;
  }
}
.pw-page__atmosphere {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(232, 242, 241, 0.85) 0%, transparent 70%),
    radial-gradient(ellipse 70% 60% at 80% 0%, rgba(15, 118, 110, 0.12), transparent 55%);
  pointer-events: none;
}
.pw-page__intro { max-width: 40rem; }
.pw-page__intro--narrow { max-width: 42rem; }
.pw-page__intro h1 {
  margin: 12px 0 0;
  font-size: var(--step-2);
  line-height: 1.1;
  letter-spacing: -0.02em;
}
.pw-page__intro .pw-lede { margin-top: 16px; }

.pw-prose {
  max-width: 42rem;
  color: var(--ink);
}
.pw-prose h2 {
  margin-top: 32px;
  margin-bottom: 12px;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.pw-prose p { color: var(--muted); }
.pw-prose p + p { margin-top: 14px; }
.pw-prose ul {
  margin: 14px 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
}
.pw-prose li {
  margin: 0 0 8px;
  line-height: 1.5;
}
.pw-prose li:last-child { margin-bottom: 0; }
.pw-prose a {
  color: var(--brand);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.pw-legal__body > p:first-child {
  color: var(--ink);
  font-size: 1.0625rem;
  line-height: 1.55;
}

/* Contact */
.pw-contact {
  display: grid;
  gap: 32px;
  align-items: start;
}
@media (min-width: 900px) {
  .pw-contact {
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 48px;
  }
}
.pw-contact__card {
  padding: 24px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}
.pw-contact__card-label {
  margin: 0 0 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}
.pw-contact__email {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--brand);
  word-break: break-all;
}
.pw-contact__email:hover { color: var(--brand-2); }
.pw-contact__note {
  margin: 12px 0 0;
  font-size: 0.875rem;
  color: var(--muted);
}
.pw-contact__panel {
  padding: 28px 24px;
  border-radius: var(--radius);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
@media (min-width: 700px) {
  .pw-contact__panel { padding: 32px; }
  .pw-form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }
  .pw-form__row .pw-field { margin-bottom: 16px; }
}
.pw-form__actions { margin: 8px 0 0; }
.pw-alert {
  margin: 0 0 20px;
  padding: 14px 16px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.9375rem;
}
.pw-alert--ok {
  background: rgba(15, 118, 110, 0.12);
  color: var(--brand-2);
}
.pw-alert--err {
  background: rgba(185, 28, 28, 0.1);
  color: #991B1B;
}

/* About */
.pw-about {
  display: grid;
  gap: 32px;
  align-items: start;
}
@media (min-width: 900px) {
  .pw-about {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
    gap: 56px;
  }
}
.pw-about__card {
  padding: 28px 24px;
  border-radius: var(--radius);
  background: linear-gradient(160deg, #0B1220 0%, #115E59 100%);
  color: #E8EEF5;
}
.pw-about__card-title {
  margin: 0 0 16px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
}
.pw-about__points {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  gap: 12px;
}
.pw-about__points li {
  position: relative;
  padding-left: 22px;
  font-size: 0.9375rem;
  line-height: 1.45;
  color: rgba(232, 238, 245, 0.82);
}
.pw-about__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45em;
  width: 10px;
  height: 10px;
  border-radius: 3px;
  background: #14B8A6;
}
.pw-about__card .pw-btn--secondary {
  width: 100%;
  background: #fff;
  border-color: transparent;
}

/* Legal */
.pw-legal {
  max-width: 42rem;
}
.pw-legal__meta {
  margin-top: 12px;
  font-size: 0.875rem;
  color: var(--muted);
}
.pw-legal__body h2:first-child { margin-top: 0; }

.pw-field { display: grid; gap: 8px; margin-bottom: 16px; }
.pw-field label { font-weight: 600; font-size: 0.875rem; }
.pw-field input,
.pw-field textarea,
.pw-field select {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  font: inherit;
  background: var(--bg);
  color: var(--ink);
}
.pw-field input:focus,
.pw-field textarea:focus {
  outline: 2px solid rgba(15, 118, 110, 0.35);
  outline-offset: 1px;
  border-color: var(--brand);
}
.pw-field textarea { min-height: 140px; resize: vertical; }

/* Magazine blog — layout only; fonts/colors from site defaults */
.pw-mag-hero {
  position: relative;
  padding: var(--section) 0 48px;
}
.pw-mag-hero__inner {
  display: grid;
  gap: 40px;
  align-items: center;
}
@media (min-width: 960px) {
  .pw-mag-hero__inner {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 480px);
    gap: 64px;
    min-height: 280px;
  }
}
.pw-mag-hero__copy h1 {
  margin: 0;
  max-width: none;
}
.pw-mag-hero__lede {
  margin: 16px 0 0;
  max-width: 40ch;
  font-size: 1.0625rem;
  line-height: 1.55;
  color: var(--muted);
  font-weight: 400;
}
.pw-mag-hero__art {
  position: relative;
  min-height: 220px;
  display: none;
  place-items: center;
}
@media (min-width: 960px) {
  .pw-mag-hero__art {
    display: grid;
  }
}
.pw-mag-hero__orb {
  position: absolute;
  border-radius: 50%;
}
.pw-mag-hero__orb--a {
  width: 160px;
  height: 160px;
  top: 8%;
  right: 12%;
  background: rgba(15, 118, 110, 0.22);
}
.pw-mag-hero__orb--b {
  width: 90px;
  height: 90px;
  bottom: 18%;
  left: 18%;
  background: rgba(245, 158, 11, 0.28);
}
.pw-mag-hero__orb--c {
  width: 56px;
  height: 56px;
  top: 42%;
  left: 8%;
  background: rgba(17, 94, 89, 0.2);
}
.pw-mag-hero__panel {
  position: relative;
  z-index: 1;
  width: min(100%, 280px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--surface) 0%, #E8F5F3 100%);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 28px;
}
.pw-mag-hero__mark {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: linear-gradient(135deg, #14B8A6, var(--brand) 55%, var(--brand-2));
}
.pw-mag-hero__line {
  display: block;
  width: 58%;
  height: 8px;
  border-radius: 6px;
  background: rgba(11, 18, 32, 0.08);
}
.pw-mag-hero__line--short { width: 38%; }
.pw-mag-hero__chips {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}
.pw-mag-hero__chips span {
  width: 28px;
  height: 10px;
  border-radius: 6px;
  background: rgba(15, 118, 110, 0.25);
}
.pw-mag-hero__chips span:nth-child(2) { background: rgba(245, 158, 11, 0.35); }
.pw-mag-hero__chips span:nth-child(3) { background: rgba(11, 18, 32, 0.12); }

.pw-magazine {
  padding: 0 0 var(--section);
}

.pw-mag-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 20px;
  margin: 0 0 48px;
  padding: 8px 0 0;
}
.pw-mag-filters__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  flex: 1 1 auto;
}
.pw-mag-filters__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: none;
  line-height: 1;
}
.pw-mag-filters__chip:hover {
  border-color: rgba(15, 118, 110, 0.45);
  color: var(--brand-2);
}
.pw-mag-filters__chip.is-active {
  color: var(--brand);
  border-color: var(--brand);
  background: rgba(15, 118, 110, 0.06);
  font-weight: 600;
}
.pw-mag-filters__more {
  position: relative;
  flex: 0 0 auto;
  margin-left: auto;
}
.pw-mag-filters__more > summary {
  list-style: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1.5px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 500;
  user-select: none;
}
.pw-mag-filters__more > summary::-webkit-details-marker { display: none; }
.pw-mag-filters__more-ico {
  width: 14px;
  height: 12px;
  background:
    linear-gradient(var(--ink), var(--ink)) 0 0 / 100% 2px no-repeat,
    linear-gradient(var(--ink), var(--ink)) 0 5px / 100% 2px no-repeat,
    linear-gradient(var(--ink), var(--ink)) 0 10px / 100% 2px no-repeat;
}
.pw-mag-filters__more > summary::after {
  content: "";
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid var(--muted);
  margin-left: 2px;
}
.pw-mag-filters__menu {
  position: absolute;
  right: 0;
  top: calc(100% + 8px);
  z-index: 20;
  min-width: 200px;
  margin: 0;
  padding: 8px;
  list-style: none;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.pw-mag-filters__menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--ink);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
}
.pw-mag-filters__menu a:hover {
  background: rgba(15, 118, 110, 0.06);
  color: var(--brand-2);
}

.pw-magazine__grid {
  display: grid;
  gap: 48px 28px;
}
@media (min-width: 700px) {
  .pw-magazine__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 56px 36px;
  }
}
@media (min-width: 960px) {
  .pw-magazine__grid:not(.pw-magazine__grid--related) {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 64px 44px;
  }
}
.pw-magazine__grid--related {
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 700px) {
  .pw-magazine__grid--related {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.pw-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: transparent;
  border: 0;
}
.pw-card__media-wrap {
  position: relative;
  margin: 0 0 20px;
}
.pw-card__media {
  position: relative;
  z-index: 1;
  display: block;
  aspect-ratio: 16 / 10;
  border-radius: 18px;
  overflow: hidden;
  background: var(--line);
}
.pw-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.pw-card:hover .pw-card__media img {
  transform: scale(1.04);
}

.pw-card__placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background:
    radial-gradient(500px 200px at 25% 0%, rgba(15, 118, 110, 0.18), transparent 55%),
    linear-gradient(145deg, #E8EEF5, var(--bg));
}
.pw-card__body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 4px;
  flex: 1;
}
.pw-card__label {
  display: inline-flex;
  align-self: flex-start;
  margin: 0;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(11, 18, 32, 0.06);
  color: var(--muted);
  font-size: 0.8125rem;
  font-weight: 500;
  text-decoration: none;
  line-height: 1.2;
}
.pw-card__label:hover {
  color: var(--brand-2);
  background: rgba(15, 118, 110, 0.1);
}
.pw-card__meta {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--muted);
  font-weight: 400;
}
.pw-card__dot { margin: 0 5px; }
.pw-card__title {
  margin: 2px 0 0;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.02em;
  font-family: var(--font);
}
.pw-card__title a {
  color: var(--ink);
  text-decoration: none;
}
.pw-card__title a:hover { color: var(--brand); }
.pw-card__excerpt {
  margin-top: 2px;
  color: var(--muted);
  font-size: var(--step-body);
  line-height: 1.55;
  font-weight: 400;
}
.pw-card__excerpt p { margin: 0; color: inherit; }

.pw-pagination {
  margin-top: 64px;
  display: flex;
  justify-content: center;
}
.pw-pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: center;
}
.pw-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 8px 14px;
  border-radius: var(--radius-btn);
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--muted);
  font-family: var(--font);
  font-weight: 600;
  font-size: 0.875rem;
  text-decoration: none;
}
.pw-pagination .page-numbers:hover { color: var(--ink); border-color: var(--brand); }
.pw-pagination .page-numbers.current {
  background: var(--brand);
  border-color: var(--brand);
  color: #fff;
}

/* Single article — centered hero + share rail (reference layout) */
.pw-article { padding: 0 0 var(--section); }

.pw-article__hero {
  padding: 40px 0 28px;
}
@media (min-width: 900px) {
  .pw-article__hero { padding: 56px 0 36px; }
}

.pw-article__intro {
  max-width: 46rem;
  margin-inline: auto;
  text-align: center;
}
.pw-article__date {
  margin: 0 0 16px;
  font-size: var(--step-kicker);
  font-weight: 500;
  color: var(--muted);
}
.pw-article__intro h1 {
  margin: 0;
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 700;
}
.pw-article__deck {
  margin: 16px auto 0;
  max-width: 36rem;
  font-size: 1.125rem;
  line-height: 1.45;
  font-weight: 500;
  color: var(--muted);
}
.pw-article__tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}
.pw-article__tag {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
}
.pw-article__tag:hover {
  border-color: var(--brand);
  color: var(--brand-2);
}

.pw-article__media {
  margin: 0 auto 40px;
  max-width: 64rem;
}
@media (min-width: 900px) {
  .pw-article__media { margin-bottom: 56px; }
}
.pw-article__media img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.pw-article__layout {
  display: grid;
  gap: 32px;
  max-width: 52rem;
  margin: 0 auto 48px;
  align-items: start;
}
@media (min-width: 900px) {
  .pw-article__layout {
    grid-template-columns: minmax(0, 1fr) 4.5rem;
    column-gap: 40px;
    max-width: 56rem;
  }
}

.pw-article__content {
  max-width: none;
  min-width: 0;
}
.pw-article__content > p:first-of-type {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--line);
}
.pw-article__content h2 {
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}
.pw-article__content .wp-block-image,
.pw-article__content figure {
  margin: 28px 0;
}
.pw-article__content .wp-block-image img,
.pw-article__content figure img,
.pw-article__content > p > img {
  border-radius: var(--radius);
}

.pw-article__aside {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  padding-top: 4px;
}
@media (min-width: 900px) {
  .pw-article__aside {
    flex-direction: column;
    position: sticky;
    top: calc(var(--header) + 24px);
    gap: 12px;
  }
}

.pw-article__share-label {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--muted);
  white-space: nowrap;
}
@media (min-width: 900px) {
  .pw-article__share-label {
    text-align: center;
    white-space: normal;
    line-height: 1.3;
  }
}

.pw-article__share {
  display: flex;
  flex-direction: row;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (min-width: 900px) {
  .pw-article__share {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
}
.pw-article__share-btn {
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.pw-article__share-btn:hover {
  border-color: var(--brand);
  color: var(--brand-2);
  transform: translateY(-1px);
}

.pw-post-nav {
  max-width: 56rem;
  margin: 0 auto 56px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.pw-post-nav .nav-links {
  display: grid;
  gap: 20px;
}
@media (min-width: 700px) {
  .pw-post-nav .nav-links {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .pw-post-nav .nav-next {
    text-align: right;
  }
}
.pw-post-nav a {
  display: block;
  text-decoration: none;
  color: var(--ink);
  padding: 16px;
  border-radius: var(--radius-btn);
  border: 1px solid var(--line);
  background: var(--surface);
}
.pw-post-nav a:hover {
  border-color: var(--brand);
  color: var(--ink);
}
.pw-post-nav__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 6px;
}
.pw-post-nav__title {
  display: block;
  font-weight: 600;
  line-height: 1.3;
}

.pw-related {
  padding-top: 8px;
  margin-bottom: 24px;
}
.pw-related__heading {
  margin: 0 0 24px;
  font-size: var(--step-3);
}
.pw-related__more {
  margin: 32px 0 0;
  text-align: center;
}

/* 404 / empty */
.pw-empty {
  padding: var(--section) 0;
  max-width: 36rem;
  text-align: center;
  margin-inline: auto;
}
.pw-empty h1 {
  margin: 0 0 12px;
  font-size: var(--step-2);
  letter-spacing: -0.02em;
}
.pw-empty .pw-lede { margin: 0 auto 28px; }
.pw-empty .pw-btn { margin: 0 6px 8px; }

/* Kicker (review / posts) */
.pw-kicker {
  margin: 0 0 12px;
  font-size: var(--step-kicker);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--brand);
}

/* Review layout */
.pw-review { padding: 0 0 var(--section); }
.pw-review__layout {
  display: grid;
  gap: 40px;
  align-items: start;
}
@media (min-width: 960px) {
  .pw-review__layout {
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 56px;
  }
  .pw-review__side {
    position: sticky;
    top: 24px;
  }
}
.pw-side-cta {
  padding: 24px;
  border-radius: var(--radius);
  background: linear-gradient(155deg, #0B1220 0%, #115E59 100%);
  color: #E8EEF5;
  box-shadow: var(--shadow);
}
.pw-side-cta__kicker {
  margin: 0 0 8px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #99F6E4;
}
.pw-side-cta__title {
  margin: 0 0 20px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #fff;
  line-height: 1.25;
}
.pw-side-cta .pw-btn { width: 100%; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .pw-hero__copy, .pw-reveal, .pw-eyebrow__ico, .pw-eyebrow__ico svg, .pw-scene3d, .pw-glass--one, .pw-hook__svg, .pw-reel__bg, .pw-reel__live span { animation: none !important; transition: none !important; }
  .pw-scene3d { transform: rotateX(12deg) rotateY(-14deg) rotateZ(1deg); }
  .pw-reveal.js-ready { opacity: 1; transform: none; }
  .pw-btn { transition: none; }
  .pw-btn:hover { transform: none; }
}
