/* ============================================================
   LAUNCH SEQUENCE — appears above everything until launched
   ============================================================ */
.pw-launch {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, #0E2A1F 0%, transparent 60%),
    linear-gradient(180deg, #050D09 0%, #06110C 50%, #0A1F16 100%);
  color: #F4FBF8;
  overflow-y: auto;
  overflow-x: hidden;
  isolation: isolate;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  font-family: 'Manrope', system-ui, sans-serif;
  opacity: 1;
  transition: opacity 1s cubic-bezier(.2,.7,.2,1);
}
.pw-launch.is-done {
  opacity: 0;
  pointer-events: none;
}
body.is-launching { overflow: hidden; }

.pw-launch-aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 0;
}
.pw-launch-aurora-1 {
  width: 620px; height: 620px;
  top: -200px; right: -160px;
  background: radial-gradient(circle, rgba(79,209,165,.32), transparent 65%);
  animation: pwLaunchAurora 28s ease-in-out infinite;
}
.pw-launch-aurora-2 {
  width: 480px; height: 480px;
  bottom: -180px; left: -120px;
  background: radial-gradient(circle, rgba(0,128,95,.28), transparent 65%);
  animation: pwLaunchAurora 36s ease-in-out infinite reverse;
}
@keyframes pwLaunchAurora {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%      { transform: translate(40px, -20px) scale(1.05); }
}
.pw-launch-grain {
  position: absolute; inset: 0; z-index: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1 0 0 0 0 1 0 0 0 0 1 0 0 0 0.08 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .35;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.pw-launch-screen {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 900px;
  min-height: 100vh;
  padding: 40px 24px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  animation: pwLaunchFade .7s cubic-bezier(.2,.7,.2,1);
}
.pw-launch-screen[hidden] { display: none; }
@keyframes pwLaunchFade {
  from { opacity: 0; transform: translateY(12px); }
  to   { opacity: 1; transform: translateY(0); }
}
.pw-launch-inner { max-width: 720px; margin: 0 auto; }
.pw-launch-inner--narrow { max-width: 460px; }

.pw-launch-logo {
  height: 40px;
  width: auto;
  margin-bottom: 28px;
  filter: brightness(0) invert(1);
  opacity: .85;
}
.pw-launch-logo--big { height: 56px; opacity: 1; margin-bottom: 32px; }

.pw-launch-kicker {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(79,209,165,.85);
  padding: .45rem 1rem;
  border: 1px solid rgba(79,209,165,.22);
  border-radius: 999px;
  margin-bottom: 22px;
}

.pw-launch-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.04;
  letter-spacing: -.035em;
  color: #FFFFFF;
  margin: 0 0 18px;
}
.pw-launch-title em {
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: #4FD1A5;
}
.pw-launch-title--big { font-size: clamp(2.6rem, 6vw, 5rem); }

.pw-launch-lead {
  font-family: 'Manrope', sans-serif;
  font-size: 1.06rem;
  line-height: 1.6;
  color: rgba(244,251,248,.72);
  max-width: 540px;
  margin: 0 auto 36px;
}
.pw-launch-lead--muted { color: rgba(244,251,248,.55); margin-top: 24px; margin-bottom: 0; }
.pw-launch-lead strong { color: #FFFFFF; font-weight: 600; }

/* Anticlockwise circular timer */
.pw-launch-timer {
  position: relative;
  width: 260px;
  height: 260px;
  margin: 0 auto 36px;
}
.pw-launch-timer-svg {
  width: 100%; height: 100%;
  /* flipped horizontally so stroke draws counter-clockwise from 12 o'clock */
  transform: rotate(-90deg) scaleX(-1);
}
.pw-launch-timer-bg,
.pw-launch-timer-fg {
  fill: none;
  stroke-width: 8;
  stroke-linecap: round;
}
.pw-launch-timer-bg {
  stroke: rgba(255,255,255,.08);
}
.pw-launch-timer-fg {
  stroke: url(#none);
  stroke: #4FD1A5;
  filter: drop-shadow(0 0 10px rgba(79,209,165,.4));
  transition: stroke-dashoffset 1s linear;
}
.pw-launch-timer-text {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  pointer-events: none;
}
.pw-launch-timer-time {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: 2.4rem;
  line-height: 1;
  color: #FFFFFF;
  letter-spacing: -.035em;
  font-variant-numeric: tabular-nums;
}
.pw-launch-timer-label {
  display: block;
  margin-top: 10px;
  font-family: 'Manrope', sans-serif;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(244,251,248,.5);
}

.pw-launch-hint {
  font-family: 'Manrope', sans-serif;
  font-size: .82rem;
  color: rgba(244,251,248,.45);
  margin: 0;
  letter-spacing: -.005em;
}
.pw-launch-hint span { color: rgba(244,251,248,.7); margin-right: 4px; }
.pw-launch-hint kbd {
  display: inline-block;
  padding: 2px 7px;
  font-family: 'Manrope', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 6px;
  color: #FFFFFF;
  margin: 0 2px;
}

/* Admin form */
.pw-launch-form {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
}
.pw-launch-input {
  flex: 1;
  padding: 14px 18px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  color: #FFFFFF;
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  outline: none;
  letter-spacing: -.005em;
  transition: border-color .25s ease, background .25s ease;
}
.pw-launch-input::placeholder { color: rgba(244,251,248,.4); }
.pw-launch-input:focus {
  border-color: rgba(79,209,165,.5);
  background: rgba(255,255,255,.09);
  box-shadow: 0 0 0 4px rgba(79,209,165,.12);
}

.pw-launch-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: linear-gradient(180deg, #5BE0B0 0%, #2DBA89 100%);
  color: #051410;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  letter-spacing: -.005em;
  box-shadow:
    0 14px 32px -8px rgba(45,186,137,.55),
    inset 0 1px 0 rgba(255,255,255,.45);
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s ease;
}
.pw-launch-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 22px 44px -10px rgba(45,186,137,.7),
    inset 0 1px 0 rgba(255,255,255,.55);
}
.pw-launch-btn--big {
  font-size: 1.06rem;
  padding: 16px 30px;
  margin-bottom: 18px;
}
.pw-launch-btn i { font-size: 1.1rem; }

.pw-launch-link {
  background: none;
  border: 0;
  color: rgba(244,251,248,.55);
  font-family: 'Manrope', sans-serif;
  font-size: .9rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  transition: color .2s ease;
}
.pw-launch-link:hover { color: #FFFFFF; }

.pw-launch-error {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  padding: 10px 14px;
  background: rgba(244,91,67,.10);
  border: 1px solid rgba(244,91,67,.28);
  border-radius: 10px;
  font-family: 'Manrope', sans-serif;
  font-size: .9rem;
  color: #FFB8A8;
}
.pw-launch-error i { color: #F45B43; }
.pw-launch-error[hidden] { display: none; }

/* ============================================================
   OTP — 4-digit launch code entry (editorial vault)
   ============================================================ */
.pw-otp {
  position: relative;
  width: 100%;
  max-width: 540px;
  margin: 0 auto;
  text-align: center;
  font-family: 'Manrope', sans-serif;
  padding: 32px clamp(22px, 4vw, 44px) 28px;
  border: 1px solid rgba(91,224,176,.2);
  border-radius: 18px;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, rgba(91,224,176,.1), transparent 70%),
    linear-gradient(180deg, rgba(8,22,15,.66), rgba(6,15,11,.78));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow:
    0 30px 80px -24px rgba(0,0,0,.55),
    0 8px 24px rgba(0,0,0,.25),
    inset 0 1px 0 rgba(91,224,176,.12);
  overflow: hidden;
  isolation: isolate;
}
.pw-otp::before,
.pw-otp::after {
  content: "";
  position: absolute;
  left: 12%; right: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(91,224,176,.32), transparent);
  z-index: -1;
}
.pw-otp::before { top: 88px; }
.pw-otp::after  { bottom: 64px; }

/* Ambient orbs behind */
.pw-otp-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  z-index: -2;
  pointer-events: none;
}
.pw-otp-orb-1 {
  width: 280px; height: 280px;
  top: -100px; right: -80px;
  background: radial-gradient(circle, rgba(91,224,176,.25), transparent 65%);
}
.pw-otp-orb-2 {
  width: 220px; height: 220px;
  bottom: -80px; left: -60px;
  background: radial-gradient(circle, rgba(0,128,95,.22), transparent 65%);
}

/* Masthead */
.pw-otp-mast {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.pw-otp-logo { height: 26px; width: auto; flex-shrink: 0; }
.pw-otp-mast-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(91,224,176,.4), rgba(91,224,176,.05));
}
.pw-otp-mast-id {
  font-family: ui-monospace, 'SF Mono', Consolas, monospace;
  font-size: .64rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: rgba(91,224,176,.75);
}
.pw-otp-mast-id em {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  text-transform: none;
  letter-spacing: -.005em;
  color: #5BE0B0;
  font-size: .82rem;
}

/* Lock seal — concentric rings + shield-lock icon */
.pw-otp-seal {
  position: relative;
  width: 78px;
  height: 78px;
  margin: 4px auto 18px;
  display: grid;
  place-items: center;
}
.pw-otp-seal-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(91,224,176,.35);
  animation: pwOtpPulse 2.4s ease-out infinite;
}
.pw-otp-seal-ring--2 {
  inset: 8px;
  border-color: rgba(91,224,176,.5);
  animation-delay: -.8s;
}
@keyframes pwOtpPulse {
  0%   { opacity: .9; transform: scale(.96); }
  60%  { opacity: .3; transform: scale(1.06); }
  100% { opacity: 0;  transform: scale(1.18); }
}
.pw-otp-seal-core {
  position: relative;
  z-index: 1;
  width: 50px; height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 30%, rgba(91,224,176,.4), rgba(0,128,95,.6)),
    linear-gradient(180deg, #0E2A1F, #08160F);
  border: 1px solid rgba(91,224,176,.55);
  box-shadow:
    0 0 24px rgba(91,224,176,.4),
    inset 0 1px 0 rgba(255,255,255,.18);
}
.pw-otp-seal-core i {
  font-size: 1.3rem;
  color: #5BE0B0;
  filter: drop-shadow(0 0 6px rgba(91,224,176,.7));
}

/* Eyebrow tag */
.pw-otp-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: .4rem .9rem;
  border-radius: 999px;
  background: rgba(244,91,67,.08);
  border: 1px solid rgba(244,91,67,.3);
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: #F48473;
  margin-bottom: 14px;
}
.pw-otp-tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #F48473;
  box-shadow: 0 0 10px rgba(244,132,115,.7);
  animation: pwOtpBlink 1.4s ease-in-out infinite;
}
@keyframes pwOtpBlink {
  0%, 100% { opacity: 1;   transform: scale(1); }
  50%      { opacity: .55; transform: scale(.85); }
}

.pw-otp-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: clamp(2rem, 4.4vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -.025em;
  color: #FFFFFF;
  margin: 0 0 8px;
}
.pw-otp-title em {
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: #5BE0B0;
  padding-right: .02em;
}
.pw-otp-lead {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1rem;
  color: rgba(244,251,248,.7);
  line-height: 1.5;
  margin: 0 0 26px;
}
.pw-otp-lead em {
  color: #5BE0B0;
  font-style: italic;
}

/* OTP form */
.pw-otp-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
}

/* Grid of 4 underline slots */
.pw-otp-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(10px, 2vw, 18px);
  width: 100%;
  max-width: 360px;
}
.pw-otp-slot {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: text;
}
.pw-otp-slot-num {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: .82rem;
  color: rgba(91,224,176,.55);
  letter-spacing: -.005em;
}
/* Div-based OTP cells — no <input>, so Safari has nothing to autofill */
.pw-otp-grid { outline: none; }
.pw-otp-cell {
  width: 100%;
  max-width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  text-align: center;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: 2.2rem;
  line-height: 1;
  color: #5BE0B0;
  font-variant-numeric: tabular-nums;
  letter-spacing: .04em;
  user-select: none;
  -webkit-user-select: none;
  transition: color .2s ease, transform .15s cubic-bezier(.2,.8,.2,1);
}
/* Caret indicator for the active cell while the grid is focused */
.pw-otp-grid:focus-within .pw-otp-cell.is-active::after,
.pw-otp-grid:focus .pw-otp-cell.is-active::after {
  content: "";
  width: 2px;
  height: 38px;
  background: #5BE0B0;
  box-shadow: 0 0 12px rgba(91,224,176,.55);
  animation: pwOtpCaret 1s steps(1, end) infinite;
}
@keyframes pwOtpCaret {
  0%, 49% { opacity: 1; }
  50%, 100% { opacity: 0; }
}
.pw-otp-cell.is-filled { color: #FFFFFF; text-shadow: 0 0 16px rgba(91,224,176,.35); }
.pw-otp-grid.is-error .pw-otp-cell { color: #F48473; }
.pw-otp-cell::placeholder { color: rgba(244,251,248,.25); }
.pw-otp-slot-line {
  position: relative;
  width: 100%;
  height: 2px;
  background: rgba(244,251,248,.18);
  border-radius: 2px;
  overflow: hidden;
  transition: background .25s ease;
}
.pw-otp-slot-line::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, #5BE0B0, transparent);
  transform: translateX(-110%);
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.pw-otp-slot:focus-within .pw-otp-slot-line {
  background: rgba(91,224,176,.3);
  box-shadow: 0 6px 16px -6px rgba(91,224,176,.5);
}
.pw-otp-slot:focus-within .pw-otp-slot-line::after {
  transform: translateX(0);
}
.pw-otp-slot:focus-within .pw-otp-slot-num { color: #5BE0B0; }

.pw-otp-cell.is-filled {
  color: #5BE0B0;
  text-shadow: 0 0 16px rgba(91,224,176,.45);
}
.pw-otp-grid.is-error .pw-otp-cell {
  color: #F48473;
  animation: pwOtpShake .42s cubic-bezier(.36,.07,.19,.97);
}
.pw-otp-grid.is-error .pw-otp-slot-line {
  background: rgba(244,91,67,.5);
}
@keyframes pwOtpShake {
  10%, 90% { transform: translateX(-2px); }
  20%, 80% { transform: translateX(4px); }
  30%, 50%, 70% { transform: translateX(-6px); }
  40%, 60% { transform: translateX(6px); }
}

.pw-otp-error {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 8px 14px;
  background: rgba(244,91,67,.1);
  border: 1px solid rgba(244,91,67,.28);
  border-radius: 8px;
  font-size: .85rem;
  color: #FFB8A8;
}
.pw-otp-error i { color: #F45B43; }
.pw-otp-error[hidden] { display: none !important; }

.pw-otp-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  margin-top: 4px;
}
.pw-otp-link {
  appearance: none;
  background: transparent;
  border: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 0;
  font-family: 'Manrope', sans-serif;
  font-size: .85rem;
  color: rgba(244,251,248,.55);
  cursor: pointer;
  transition: color .2s ease;
}
.pw-otp-link:hover { color: #FFFFFF; }
.pw-otp-btn {
  appearance: none;
  border: 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: .78rem 1.6rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #5BE0B0 0%, #2DBA89 100%);
  color: #051410;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: .95rem;
  letter-spacing: -.005em;
  cursor: pointer;
  box-shadow:
    0 14px 32px -8px rgba(45,186,137,.55),
    0 4px 12px rgba(45,186,137,.2),
    inset 0 1px 0 rgba(255,255,255,.45);
  transition: transform .2s cubic-bezier(.2,.8,.2,1), box-shadow .2s ease;
}
.pw-otp-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 22px 44px -10px rgba(45,186,137,.7),
    0 6px 16px rgba(45,186,137,.28),
    inset 0 1px 0 rgba(255,255,255,.55);
}
.pw-otp-btn i { font-size: 1rem; }

/* Foot sign-off */
.pw-otp-foot {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}
.pw-otp-foot-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(91,224,176,.3), transparent);
}
.pw-otp-foot-sign {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: .78rem;
  color: rgba(244,251,248,.5);
  letter-spacing: -.005em;
  white-space: nowrap;
}

@media (max-width: 575.98px) {
  .pw-otp { padding: 26px 18px 22px; }
  .pw-otp-grid { gap: 8px; max-width: 280px; }
  .pw-otp-cell { max-width: 56px; height: 56px; font-size: 2rem; }
  .pw-otp-seal { width: 64px; height: 64px; }
  .pw-otp-seal-core { width: 42px; height: 42px; }
}

/* ============================================================
   CONGRATS — confetti celebration screen
   ============================================================ */
.pw-launch-screen--congrats {
  position: relative;
  max-width: none;
  width: 100%;
  min-height: 100vh;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(91,224,176,.18), transparent 70%),
    radial-gradient(ellipse 60% 50% at 50% 100%, rgba(0,128,95,.2), transparent 70%),
    linear-gradient(180deg, #050D09 0%, #06110C 50%, #0A1F16 100%);
  overflow: hidden;
}
.pw-confetti-stage {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.pw-confetti {
  position: absolute;
  top: -30px;
  width: 9px;
  height: 15px;
  border-radius: 1.5px;
  opacity: .95;
  animation: pwConfettiFall linear forwards;
}
.pw-confetti.is-square { border-radius: 1px; height: 9px; }
.pw-confetti.is-circle { border-radius: 50%; width: 8px; height: 8px; }
@keyframes pwConfettiFall {
  0%   { transform: translate3d(0,0,0) rotate(0deg);   opacity: 1; }
  85%  { opacity: 1; }
  100% { transform: translate3d(var(--dx, 0), 110vh, 0) rotate(var(--rot, 720deg)); opacity: 0; }
}

.pw-congrats {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1080px;
  padding: 32px clamp(20px, 4vw, 64px);
  text-align: center;
  font-family: 'Manrope', sans-serif;
  animation: pwCongratsRise .9s cubic-bezier(.2,.7,.2,1);
}
/* Mid-launch banner screen (between the "A toast" congrats screen and LIVE).
   Holds for ~7.5s — see showBannerMiddle() in script.js.
   Full-bleed: pinned to the viewport so it escapes .pw-launch-screen's
   900px max-width + 40px 24px padding. */
.pw-launch-screen--banner {
  position: fixed;
  inset: 0;
  width: 100vw;
  max-width: none;
  min-height: 100vh;
  padding: 0;
  margin: 0;
  background: #04140f;
  overflow: hidden;
  z-index: 2;
}
.pw-banner-mid-stage {
  position: absolute;
  inset: 0;
  animation: pwCongratsRise .9s cubic-bezier(.2,.7,.2,1);
}
.pw-banner-mid-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0;
}

/* 2-col layout: portrait | message */
.pw-congrats-grid {
  display: grid;
  grid-template-columns: minmax(0, auto) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 60px);
  align-items: center;
  text-align: left;
  margin-top: 14px;
}

/* CEO portrait — circular with mint halo + ring */
.pw-congrats-portrait {
  position: relative;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.pw-congrats-portrait-halo {
  position: absolute;
  top: -10px;
  left: 50%;
  width: 280px;
  height: 280px;
  transform: translateX(-50%);
  background: radial-gradient(circle, rgba(91,224,176,.35), transparent 65%);
  filter: blur(36px);
  pointer-events: none;
  z-index: 0;
  animation: pwCongratsHalo 4s ease-in-out infinite;
}
@keyframes pwCongratsHalo {
  0%, 100% { opacity: .9; transform: translateX(-50%) scale(1); }
  50%      { opacity: 1;  transform: translateX(-50%) scale(1.06); }
}
.pw-congrats-portrait-ring {
  position: absolute;
  top: 0;
  left: 50%;
  width: 220px;
  height: 220px;
  transform: translateX(-50%);
  border: 1px solid rgba(91,224,176,.4);
  border-radius: 50%;
  z-index: 1;
  animation: pwCongratsRing 3.2s ease-in-out infinite;
}
@keyframes pwCongratsRing {
  0%, 100% { opacity: .55; transform: translateX(-50%) scale(1); }
  50%      { opacity: .15; transform: translateX(-50%) scale(1.08); }
}
.pw-congrats-portrait-frame {
  position: relative;
  z-index: 2;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(91,224,176,.55);
  background: #08160F;
  box-shadow:
    0 24px 50px -16px rgba(0,0,0,.7),
    0 0 32px rgba(91,224,176,.25),
    inset 0 0 0 6px rgba(8,22,15,.8);
}
.pw-congrats-portrait-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.pw-congrats-portrait-cap {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  text-align: center;
}
.pw-congrats-portrait-name {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-style: italic;
  font-variation-settings: "opsz" 96, "SOFT" 80;
  font-size: 1.08rem;
  color: #FFFFFF;
  letter-spacing: -.005em;
  line-height: 1.2;
}
.pw-congrats-portrait-role {
  font-family: 'Manrope', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: #5BE0B0;
}

.pw-congrats-message { min-width: 0; }
.pw-congrats-body {
  font-family: 'Manrope', sans-serif;
  font-size: 1.02rem;
  line-height: 1.6;
  color: rgba(244,251,248,.78);
  margin: 0 0 8px;
}
.pw-congrats-body em {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  color: #5BE0B0;
}

@media (max-width: 767.98px) {
  .pw-congrats-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 28px;
  }
  .pw-congrats-rule { margin-left: auto; margin-right: auto; }
}
@keyframes pwCongratsRise {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.pw-congrats-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: .45rem .95rem;
  border-radius: 999px;
  background: rgba(255,214,107,.1);
  border: 1px solid rgba(255,214,107,.34);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: #FFD66B;
  margin-bottom: 22px;
}
.pw-congrats-tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #FFD66B;
  box-shadow: 0 0 12px rgba(255,214,107,.7);
  animation: pwOtpBlink 1.4s ease-in-out infinite;
}
.pw-congrats-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: clamp(2.4rem, 6vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -.035em;
  color: #FFFFFF;
  margin: 0 0 22px;
}
.pw-congrats-title em {
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: #5BE0B0;
  padding-right: .02em;
}
.pw-congrats-rule {
  display: inline-block;
  width: 100px;
  height: 1px;
  position: relative;
  background: linear-gradient(90deg, transparent, rgba(91,224,176,.6), transparent);
  margin: 8px 0 18px;
}
.pw-congrats-rule::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 7px; height: 7px;
  transform: translate(-50%, -50%) rotate(45deg);
  background: #5BE0B0;
  box-shadow: 0 0 10px rgba(91,224,176,.6);
}
.pw-congrats-sign {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(244,251,248,.72);
  margin: 0;
}
.pw-congrats-sign strong {
  display: block;
  margin-top: 4px;
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #FFFFFF;
}

@media (max-width: 575.98px) {
  .pw-otp-grid { grid-template-columns: repeat(4, 56px); gap: 8px; }
  .pw-otp-cell { width: 56px; height: 70px; font-size: 2.2rem; }
  .pw-otp { padding: 26px 20px; }
}

/* Countdown tagline — rotates every other second */
.pw-launch-tagline {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 96, "SOFT" 80;
  font-size: clamp(1.05rem, 2.2vw, 1.4rem);
  line-height: 1.4;
  color: rgba(244,251,248,.78);
  max-width: 620px;
  margin: 18px auto 0;
  letter-spacing: -.005em;
  min-height: 1.4em;
  transition: opacity .18s cubic-bezier(.2,.7,.2,1), transform .18s cubic-bezier(.2,.7,.2,1);
}
.pw-launch-tagline em {
  color: #5BE0B0;
  font-style: italic;
  font-weight: 500;
}
.pw-launch-tagline strong {
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: .005em;
}
.pw-launch-tagline.is-out {
  opacity: 0;
  transform: translateY(8px);
}

/* Big countdown number */
.pw-launch-count {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: clamp(8rem, 22vw, 18rem);
  line-height: 1;
  letter-spacing: -.05em;
  color: #FFFFFF;
  margin: 24px 0;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 0 60px rgba(79,209,165,.4);
  animation: pwCountTick .6s cubic-bezier(.2,.7,.2,1);
}
@keyframes pwCountTick {
  0%   { transform: scale(.6); opacity: 0; }
  60%  { transform: scale(1.08); opacity: 1; }
  100% { transform: scale(1); opacity: 1; }
}

/* Video screen — escapes the parent grid and fills the entire viewport */
.pw-launch-screen--video {
  position: absolute;
  inset: 0;
  max-width: none;
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000;
  z-index: 2;
}
.pw-launch-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   Welcome screen — CINEMATIC stage + bottom T-minus ticker
   ============================================================ */
.pw-launch-screen--cine {
  max-width: none;
  width: 100%;
  min-height: 100vh;
  height: 100vh;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-rows: auto 1fr auto;
  text-align: left;
  justify-content: stretch;
  background: #060F0B;
}

/* Announce bar inside the launch overlay — slimmer + raised z so it sits above orbs */
.pw-announce--launch {
  position: relative;
  z-index: 5;
  padding: 8px 0;
  border-bottom: 1px solid rgba(91,224,176,.22);
  background: linear-gradient(90deg, #00805F 0%, #006B4F 50%, #00805F 100%);
}
.pw-announce--launch::before {
  background: linear-gradient(90deg, #00805F, transparent);
}
.pw-announce--launch::after {
  background: linear-gradient(-90deg, #00805F, transparent);
}

/* ---------- Top mast ---------- */
.pw-cine-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px clamp(16px, 2.5vw, 32px);
  background: rgba(8,22,15,.78);
  border-bottom: 1px solid rgba(91,224,176,.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-family: ui-monospace, 'SF Mono', 'JetBrains Mono', Consolas, monospace;
  flex-wrap: wrap;
}
.pw-cine-mast {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.pw-cine-logo { height: 26px; width: auto; flex-shrink: 0; }
.pw-cine-mast-sep {
  color: rgba(91,224,176,.5);
  font-size: .85rem;
  letter-spacing: .04em;
}
.pw-cine-mast-title {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: #5BE0B0;
  font-variant-numeric: tabular-nums;
}
.pw-cine-bar-right {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.pw-cine-clock {
  font-size: .82rem;
  color: rgba(244,251,248,.75);
  letter-spacing: .04em;
  font-variant-numeric: tabular-nums;
}
.pw-cine-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: .35rem .75rem;
  border-radius: 999px;
  background: rgba(91,224,176,.1);
  border: 1px solid rgba(91,224,176,.32);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #5BE0B0;
}
.pw-cine-chip-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #5BE0B0;
  box-shadow: 0 0 10px #5BE0B0;
  animation: pwCineBlink 1.4s ease-in-out infinite;
}
@keyframes pwCineBlink {
  0%, 100% { opacity: 1;  transform: scale(1); }
  50%      { opacity: .5; transform: scale(.85); }
}

/* ---------- Full-bleed banner stage ---------- */
.pw-cine-stage {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #060F0B;
  isolation: isolate;
}
.pw-cine-poster {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 1.2s cubic-bezier(.2,.7,.2,1);
  pointer-events: none;
}
.pw-cine-poster.is-active {
  opacity: 1;
  pointer-events: auto;
}
.pw-cine-poster img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
/* Blurred backdrop — fills the letterbox area with a soft glow of the banner */
.pw-cine-poster-bg {
  object-fit: cover;
  object-position: center;
  filter: blur(40px) saturate(1.25);
  opacity: .55;
  transform: scale(1.18);
  z-index: 0;
}
/* Foreground — full uncropped image, contained */
.pw-cine-poster-fg {
  object-fit: contain;
  object-position: center;
  z-index: 1;
  background: transparent;
}

/* ---------- Intro card (slide 0 — welcoming chief guests) ---------- */
.pw-cine-poster--intro {
  display: grid;
  place-items: center;
  background:
    radial-gradient(ellipse 60% 50% at 50% 30%, rgba(91,224,176,.16), transparent 65%),
    radial-gradient(ellipse 50% 40% at 50% 100%, rgba(0,128,95,.18), transparent 70%),
    linear-gradient(180deg, #08160F 0%, #0B2018 100%);
}
.pw-cine-poster--intro::before,
.pw-cine-poster--intro::after {
  content: "";
  position: absolute;
  left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(91,224,176,.4), transparent);
  pointer-events: none;
}
.pw-cine-poster--intro::before { top: 18%; }
.pw-cine-poster--intro::after  { bottom: 18%; }
.pw-cine-poster--intro img { display: none; }
.pw-cine-intro {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 560px;
  padding: 24px clamp(20px, 4vw, 48px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  text-align: center;
}
.pw-cine-intro-logo {
  height: 40px;
  width: auto;
  filter: drop-shadow(0 4px 16px rgba(91,224,176,.35));
}
.pw-cine-intro-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: .42rem .9rem;
  border-radius: 999px;
  background: rgba(91,224,176,.08);
  border: 1px solid rgba(91,224,176,.28);
  font-family: 'Manrope', sans-serif;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: #5BE0B0;
}
.pw-cine-intro-tag-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #5BE0B0;
  box-shadow: 0 0 10px #5BE0B0;
  animation: pwCineBlink 1.6s ease-in-out infinite;
}
.pw-cine-intro-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.05;
  letter-spacing: -.03em;
  color: #FFFFFF;
  margin: 0;
}
.pw-cine-intro-title em {
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: #5BE0B0;
  padding-right: .02em;
}
.pw-cine-intro-rule {
  width: 80px;
  height: 1px;
  position: relative;
  background: linear-gradient(90deg, transparent, rgba(91,224,176,.6), transparent);
  margin: 4px 0;
}
.pw-cine-intro-rule::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  width: 6px; height: 6px;
  transform: translate(-50%, -50%) rotate(45deg);
  background: #5BE0B0;
  box-shadow: 0 0 8px rgba(91,224,176,.55);
}
.pw-cine-intro-sign {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: 1.02rem;
  line-height: 1.5;
  color: rgba(244,251,248,.7);
  margin: 0;
}
.pw-cine-intro-sign strong {
  display: block;
  margin-top: 4px;
  font-family: 'Manrope', sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: .84rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #FFFFFF;
}

/* Subtle vignette so dots stay readable */
.pw-cine-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse 100% 60% at 50% 100%, rgba(6,15,11,.65), transparent 60%);
  z-index: 2;
}
/* Fallback when image is missing */
.pw-cine-poster.is-missing {
  background:
    radial-gradient(ellipse 70% 50% at 50% 50%, rgba(91,224,176,.18), transparent 70%),
    repeating-linear-gradient(45deg, rgba(91,224,176,.04) 0 8px, transparent 8px 16px);
}
.pw-cine-poster.is-missing::before {
  content: "no signal";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-family: ui-monospace, monospace;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: .4em;
  text-transform: uppercase;
  color: rgba(91,224,176,.55);
}

/* Corner crop marks */
.pw-cine-crop {
  position: absolute;
  width: 18px;
  height: 18px;
  z-index: 4;
  pointer-events: none;
}
.pw-cine-crop::before,
.pw-cine-crop::after {
  content: "";
  position: absolute;
  background: rgba(91,224,176,.8);
  box-shadow: 0 0 6px rgba(91,224,176,.4);
}
.pw-cine-crop::before { width: 18px; height: 1.5px; }
.pw-cine-crop::after  { width: 1.5px; height: 18px; }
.pw-cine-crop--tl { top: 18px; left: 18px; }
.pw-cine-crop--tl::before { top: 0; left: 0; }
.pw-cine-crop--tl::after  { top: 0; left: 0; }
.pw-cine-crop--tr { top: 18px; right: 18px; }
.pw-cine-crop--tr::before { top: 0; right: 0; }
.pw-cine-crop--tr::after  { top: 0; right: 0; }
.pw-cine-crop--bl { bottom: 18px; left: 18px; }
.pw-cine-crop--bl::before { bottom: 0; left: 0; }
.pw-cine-crop--bl::after  { bottom: 0; left: 0; }
.pw-cine-crop--br { bottom: 18px; right: 18px; }
.pw-cine-crop--br::before { bottom: 0; right: 0; }
.pw-cine-crop--br::after  { bottom: 0; right: 0; }

/* Top-right ID stamp */
.pw-cine-stamp {
  position: absolute;
  top: 22px;
  right: 56px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: .35rem .7rem;
  background: rgba(8,22,15,.65);
  border: 1px solid rgba(91,224,176,.3);
  border-radius: 999px;
  font-family: ui-monospace, 'SF Mono', Consolas, monospace;
  font-size: .66rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(91,224,176,.8);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.pw-cine-stamp-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #5BE0B0;
  box-shadow: 0 0 8px #5BE0B0;
  animation: pwCineBlink 1.4s ease-in-out infinite;
}

/* Counter + dots block, bottom-center of stage */
.pw-cine-nav {
  position: absolute;
  bottom: 26px;
  left: 0; right: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 3;
}
.pw-cine-counter {
  font-family: ui-monospace, 'SF Mono', Consolas, monospace;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .3em;
  color: rgba(255,255,255,.85);
  text-shadow: 0 1px 6px rgba(0,0,0,.6);
  font-variant-numeric: tabular-nums;
}
.pw-cine-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.pw-cine-dots button {
  appearance: none;
  border: 0;
  width: 28px; height: 4px;
  border-radius: 999px;
  background: rgba(255,255,255,.45);
  cursor: pointer;
  padding: 0;
  transition: background .25s ease, width .25s ease;
}
.pw-cine-dots button:hover { background: rgba(255,255,255,.75); }
.pw-cine-dots button.is-active {
  background: #5BE0B0;
  width: 48px;
  box-shadow: 0 0 12px rgba(91,224,176,.7);
}

/* ---------- Bottom chronograph — editorial countdown ---------- */
.pw-chrono {
  position: relative;
  padding: 18px clamp(16px, 2.5vw, 40px) 22px;
  background: linear-gradient(180deg, rgba(8,22,15,.78), rgba(6,15,11,.92));
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(91,224,176,.22);
  font-family: 'Manrope', sans-serif;
  overflow: hidden;
}
/* Subtle hairline below the chrono — picks up the mint accent */
.pw-chrono::after {
  content: "";
  position: absolute;
  bottom: 0; left: 8%; right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(91,224,176,.5), transparent);
}

/* Top progress strip with tickmarks */
.pw-chrono-strip {
  position: relative;
  height: 14px;
  margin-bottom: 10px;
}
.pw-chrono-strip-track {
  position: absolute;
  top: 6px; left: 0; right: 0;
  height: 2px;
  border-radius: 999px;
  background: rgba(91,224,176,.1);
  overflow: hidden;
}
.pw-chrono-strip-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: 0%;
  background: linear-gradient(90deg, rgba(91,224,176,.35), #5BE0B0);
  box-shadow: 0 0 12px rgba(91,224,176,.55);
  transition: width 1s linear;
}
.pw-chrono-strip-ticks {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  pointer-events: none;
}
.pw-chrono-strip-ticks span {
  width: 1px;
  height: 6px;
  background: rgba(91,224,176,.35);
}
.pw-chrono-strip-ticks span:first-child,
.pw-chrono-strip-ticks span:last-child {
  height: 10px;
  background: rgba(91,224,176,.6);
}

/* Main row */
.pw-chrono-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, auto) minmax(0, 1fr);
  align-items: center;
  gap: clamp(16px, 3vw, 48px);
}

/* LEFT — kicker + status */
.pw-chrono-left {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}
.pw-chrono-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #5BE0B0;
  box-shadow: 0 0 12px rgba(91,224,176,.75);
  position: relative;
  flex-shrink: 0;
}
.pw-chrono-dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border-radius: 50%;
  border: 1px solid rgba(91,224,176,.45);
  animation: pwChronoPing 2.2s ease-out infinite;
}
@keyframes pwChronoPing {
  0%   { transform: scale(1);   opacity: .8; }
  100% { transform: scale(2.6); opacity: 0; }
}
.pw-chrono-left-stack {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
.pw-chrono-kicker {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 96, "SOFT" 100;
  font-size: 1.05rem;
  color: #FFFFFF;
  letter-spacing: -.005em;
  line-height: 1;
}
.pw-chrono-status {
  font-family: 'Manrope', sans-serif;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(244,251,248,.55);
  font-variant-numeric: tabular-nums;
}
.pw-chrono-status em {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: .82rem;
  letter-spacing: -.005em;
  text-transform: none;
  color: #5BE0B0;
}

/* CENTER — Fraunces tabular digits */
.pw-chrono-clock {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: clamp(8px, 1.4vw, 18px);
  font-variant-numeric: tabular-nums;
  position: relative;
}
.pw-chrono-clock::before,
.pw-chrono-clock::after {
  content: "";
  position: absolute;
  bottom: -6px;
  height: 1px;
  width: 36px;
  background: linear-gradient(90deg, transparent, rgba(91,224,176,.55), transparent);
}
.pw-chrono-clock::before { left: 50%; transform: translateX(calc(-50% - 80px)); }
.pw-chrono-clock::after  { left: 50%; transform: translateX(calc(-50% + 80px)); }
.pw-chrono-unit-grp {
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.pw-chrono-num {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: clamp(2.6rem, 6.5vw, 5rem);
  line-height: .9;
  letter-spacing: -.04em;
  color: #FFFFFF;
  font-variant-numeric: tabular-nums;
  text-shadow:
    0 0 24px rgba(91,224,176,.18),
    0 0 60px rgba(91,224,176,.08);
}
.pw-chrono-unit {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 96, "SOFT" 100;
  font-size: clamp(1.2rem, 2.6vw, 1.8rem);
  color: #5BE0B0;
  letter-spacing: -.02em;
}
.pw-chrono-gap {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(91,224,176,.4);
  align-self: center;
  box-shadow: 0 0 8px rgba(91,224,176,.4);
  animation: pwChronoTick 1s steps(1, end) infinite;
}
@keyframes pwChronoTick {
  0%, 49.9% { opacity: 1; }
  50%, 100% { opacity: .25; }
}

/* RIGHT — event meta */
.pw-chrono-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  text-align: right;
  min-width: 0;
}
.pw-chrono-meta-strong {
  font-family: 'Manrope', sans-serif;
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #FFFFFF;
  font-variant-numeric: tabular-nums;
}
.pw-chrono-meta-sub {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: .9rem;
  letter-spacing: -.005em;
  color: rgba(244,251,248,.65);
}

/* Launch button — appears at T-0 */
.pw-chrono-launch {
  margin-top: 10px;
  appearance: none;
  border: 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: .6rem 1.1rem;
  border-radius: 999px;
  background: linear-gradient(180deg, #5BE0B0 0%, #2DBA89 100%);
  color: #051410;
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .04em;
  cursor: pointer;
  box-shadow:
    0 12px 28px -8px rgba(45,186,137,.6),
    0 4px 12px rgba(45,186,137,.22),
    inset 0 1px 0 rgba(255,255,255,.45);
  transition: transform .2s cubic-bezier(.2,.8,.2,1), box-shadow .2s ease;
  animation: pwChronoLaunchIn .55s cubic-bezier(.2,.7,.2,1);
}
.pw-chrono-launch:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 38px -10px rgba(45,186,137,.7),
    0 6px 16px rgba(45,186,137,.28),
    inset 0 1px 0 rgba(255,255,255,.55);
}
.pw-chrono-launch[hidden] { display: none !important; }
.pw-chrono-launch-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #051410;
  box-shadow: 0 0 0 2px rgba(5,20,16,.4);
  animation: pwOtpBlink 1.2s ease-in-out infinite;
}
.pw-chrono-launch i { font-size: .9rem; }
@keyframes pwChronoLaunchIn {
  from { opacity: 0; transform: translateY(8px) scale(.92); }
  to   { opacity: 1; transform: translateY(0)   scale(1); }
}

/* Hide the SVG ring (kept in DOM so JS does not need rewrites) */
.pw-cine-ringhidden { display: none !important; }

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .pw-chrono-row {
    grid-template-columns: 1fr;
    gap: 14px;
    justify-items: center;
  }
  .pw-chrono-left { justify-content: center; }
  .pw-chrono-left-stack { align-items: center; text-align: center; }
  .pw-chrono-right { align-items: center; text-align: center; }
  .pw-chrono-clock::before,
  .pw-chrono-clock::after { display: none; }
}
@media (max-width: 575.98px) {
  .pw-chrono { padding: 14px 14px 18px; }
  .pw-chrono-num { font-size: clamp(2.2rem, 11vw, 3.4rem); }
  .pw-chrono-unit { font-size: clamp(1rem, 4vw, 1.2rem); }
  .pw-chrono-meta-sub { display: none; }
  .pw-chrono-strip { height: 10px; margin-bottom: 6px; }
}


/* ============================================================
   PayWallet — Bootstrap design system
   Symmetric, modern, fintech-clean
   ============================================================ */

:root {
  --brand: #00805F;
  --brand-600: #006B4F;
  --brand-700: #005C44;
  --brand-50: #E6F4EE;
  --brand-100: #C9E7DA;
  --brand-light: #4FD1A5;

  --accent: #F45B43;
  --accent-50: #FEE9E4;
  --purple: #6366F1;
  --purple-50: #EEF0FE;
  --blue: #3B82F6;
  --blue-50: #E8F1FE;
  --amber: #F59E0B;
  --amber-50: #FEF3DD;
  --pink: #EC4899;
  --pink-50: #FDE7F3;
  --red: #EF4444;
  --red-50: #FEE8E8;

  --ink: #0B1220;
  --ink-2: #1A2333;
  --muted: #5B6473;
  --muted-2: #8A93A4;
  --line: #E7ECEF;
  --line-2: #EFF3F5;
  --surface: #FFFFFF;
  --soft: #F4F9F6;
  --dark: #0B1A2E;
  --dark-2: #0F2238;

  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;

  --shadow-sm: 0 1px 2px rgba(11,18,32,.04), 0 1px 1px rgba(11,18,32,.03);
  --shadow-md: 0 8px 24px rgba(11,18,32,.06), 0 2px 6px rgba(11,18,32,.04);
  --shadow-lg: 0 24px 60px rgba(11,18,32,.12), 0 8px 18px rgba(11,18,32,.06);

  --font-display: 'Plus Jakarta Sans', 'Inter', -apple-system, system-ui, sans-serif;
  --font-body: 'Inter', -apple-system, system-ui, sans-serif;
}

* { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
}

/* ---------- Utility text colors ---------- */
.text-brand        { color: var(--brand) !important; }
.text-brand-light  { color: var(--brand-light) !important; }
.text-accent       { color: var(--accent) !important; }
.text-purple       { color: var(--purple) !important; }
.text-blue         { color: var(--blue) !important; }
.text-amber        { color: var(--amber) !important; }
.text-pink         { color: var(--pink) !important; }
.text-red          { color: var(--red) !important; }
.text-ink          { color: var(--ink) !important; }
.text-muted        { color: var(--muted) !important; }

.bg-soft-green  { background: var(--brand-50); }
.bg-soft-orange { background: var(--accent-50); }
.bg-soft-purple { background: var(--purple-50); }
.bg-soft-blue   { background: var(--blue-50); }
.bg-soft-amber  { background: var(--amber-50); }
.bg-soft-pink   { background: var(--pink-50); }
.bg-soft-red    { background: var(--red-50); }

/* ---------- Buttons ---------- */
.btn { font-weight: 600; border-radius: 999px; padding: .7rem 1.4rem; transition: transform .15s ease, box-shadow .15s ease, background .2s; }
.btn-lg { padding: .9rem 1.7rem; }
.btn:focus { box-shadow: none; }

.btn-brand { background: var(--brand); color: #fff; box-shadow: 0 8px 20px rgba(0,128,95,.25); }
.btn-brand:hover { background: var(--brand-600); color: #fff; transform: translateY(-1px); box-shadow: 0 12px 26px rgba(0,128,95,.32); }

.btn-outline-accent { background: rgba(244,91,67,.06); color: var(--accent); border: 1.5px solid rgba(244,91,67,.25); }
.btn-outline-accent:hover { background: var(--accent); color: #fff; border-color: var(--accent); transform: translateY(-1px); }

.btn-dark-outline { background: rgba(255,255,255,.06); color: #fff; border: 1.5px solid rgba(255,255,255,.2); }
.btn-dark-outline:hover { background: #fff; color: var(--ink); border-color: #fff; }

/* ============================================================
   ANNOUNCE BAR — scrolling welcome above the navbar
   ============================================================ */
.pw-announce {
  position: relative;
  background:
    linear-gradient(90deg, #00805F 0%, #006B4F 50%, #00805F 100%);
  color: #FFFFFF;
  padding: 9px 0;
  overflow: hidden;
  isolation: isolate;
  border-bottom: 1px solid rgba(11,18,32,.06);
}
.pw-announce::before,
.pw-announce::after {
  content: "";
  position: absolute;
  top: 0; bottom: 0; width: 60px;
  pointer-events: none;
  z-index: 2;
}
.pw-announce::before {
  left: 0;
  background: linear-gradient(90deg, #00805F, transparent);
}
.pw-announce::after {
  right: 0;
  background: linear-gradient(-90deg, #00805F, transparent);
}
.pw-announce-track {
  display: flex;
  width: max-content;
  animation: pwAnnounceScroll 26s linear infinite;
  will-change: transform;
}
.pw-announce:hover .pw-announce-track { animation-play-state: paused; }
.pw-announce-group {
  display: inline-flex;
  align-items: center;
  gap: 26px;
  padding-right: 26px;
  flex-shrink: 0;
}
.pw-announce-item {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: 'Manrope', sans-serif;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: rgba(255,255,255,.94);
  white-space: nowrap;
  text-transform: uppercase;
}
.pw-announce-item i {
  font-size: .85rem;
  color: #FFD66B;
  filter: drop-shadow(0 0 6px rgba(255,214,107,.45));
}
.pw-announce-item em {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-size: .98rem;
  letter-spacing: -.005em;
  text-transform: none;
  color: #FFD66B;
}
.pw-announce-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,.55);
  flex-shrink: 0;
}
@keyframes pwAnnounceScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .pw-announce-track { animation: none; }
}

/* ============================================================
   NAVBAR — premium light, refined hover, glass mobile menu
   ============================================================ */
.pw-navbar {
  background: rgba(255,255,255,.78);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  border-bottom: 1px solid rgba(11,18,32,.04);
  padding: .65rem 0;
  transition:
    background .25s ease,
    border-color .25s ease,
    box-shadow .25s ease,
    padding .25s ease;
}
.pw-navbar.is-scrolled {
  background: rgba(255,255,255,.92);
  border-bottom-color: rgba(11,18,32,.08);
  box-shadow: 0 8px 24px -8px rgba(11,18,32,.08);
  padding: .5rem 0;
}

.pw-brand {
  display: inline-flex;
  align-items: center;
  transition: opacity .2s ease;
}
.pw-brand:hover { opacity: .85; }
.pw-logo-img {
  height: 38px;
  width: auto;
  display: block;
  object-fit: contain;
}
.pw-logo-img-dark {
  height: 40px;
  /* If logo is dark-on-transparent and footer is dark, uncomment:
     filter: brightness(0) invert(1); */
}
@media (max-width: 575.98px) {
  .pw-logo-img { height: 32px; }
  .pw-logo-img-dark { height: 36px; }
}

/* ---------- Nav links ---------- */
.navbar-nav .nav-link {
  position: relative;
  font-family: 'Manrope', sans-serif;
  color: var(--ink-2);
  font-weight: 500;
  font-size: .95rem;
  padding: .55rem .95rem;
  letter-spacing: -.005em;
  border-radius: 0;
  background: transparent !important;
  transition: color .2s ease;
}
.navbar-nav .nav-link:not(.dropdown-toggle)::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: .3rem;
  width: 0;
  height: 1.5px;
  background: var(--brand);
  border-radius: 2px;
  transition:
    width .3s cubic-bezier(.2,.8,.2,1),
    left .3s cubic-bezier(.2,.8,.2,1);
}
.navbar-nav .nav-link:hover,
.navbar-nav .nav-link:focus-visible,
.navbar-nav .nav-link.active,
.navbar-nav .show > .nav-link {
  color: var(--brand);
}
.navbar-nav .nav-link:not(.dropdown-toggle):hover::after,
.navbar-nav .nav-link:not(.dropdown-toggle):focus-visible::after,
.navbar-nav .show > .nav-link:not(.dropdown-toggle)::after {
  left: 20%;
  width: 60%;
}
/* Dropdown toggle caret — inline next to "Company" */
.navbar-nav .dropdown-toggle::after {
  position: static;
  display: inline-block;
  border: 0;
  width: auto;
  height: auto;
  background: transparent;
  content: "\f282"; /* bi-chevron-down */
  font-family: "bootstrap-icons";
  font-size: .7rem;
  line-height: 1;
  vertical-align: middle;
  margin-left: .35rem;
  opacity: .6;
  transition: transform .25s ease, opacity .2s ease;
}
.navbar-nav .dropdown-toggle:hover::after { opacity: .85; }
.navbar-nav .show > .dropdown-toggle::after {
  transform: rotate(180deg);
  opacity: 1;
}

/* ---------- Dropdown menu ---------- */
.dropdown-menu {
  --bs-dropdown-bg: rgba(255,255,255,.92);
  border-radius: 16px;
  border: 1px solid rgba(11,18,32,.06);
  box-shadow:
    0 18px 44px -14px rgba(11,18,32,.14),
    0 4px 10px rgba(11,18,32,.05);
  padding: .5rem;
  margin-top: .6rem;
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  backdrop-filter: saturate(180%) blur(20px);
  font-family: 'Manrope', sans-serif;
  min-width: 220px;
}
.dropdown-item {
  display: flex;
  align-items: center;
  gap: .65rem;
  border-radius: 10px;
  padding: .6rem .85rem;
  font-weight: 500;
  font-size: .93rem;
  color: var(--ink-2);
  letter-spacing: -.005em;
  transition: background .15s ease, color .15s ease, padding-left .15s ease;
}
.dropdown-item i {
  font-size: 1rem;
  color: var(--brand);
  opacity: .85;
  width: 18px;
  text-align: center;
}
.dropdown-item:hover,
.dropdown-item:focus {
  background: var(--brand-50);
  color: var(--brand);
  padding-left: 1rem;
}
.dropdown-item:hover i { opacity: 1; }

/* ---------- CTA button in navbar ---------- */
.pw-nav-cta {
  display: flex;
  align-items: center;
  gap: .85rem;
}
.pw-nav-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .55rem 1.2rem;
  font-size: .92rem;
  font-weight: 600;
  letter-spacing: -.005em;
  border-radius: 999px;
  box-shadow:
    0 6px 16px -4px rgba(0,128,95,.30),
    inset 0 1px 0 rgba(255,255,255,.18);
}
.pw-nav-btn:hover {
  box-shadow:
    0 10px 22px -6px rgba(0,128,95,.38),
    inset 0 1px 0 rgba(255,255,255,.22);
}
.pw-nav-btn i { font-size: 1rem; }

/* ---------- Mobile collapse — glass card ---------- */
.navbar-toggler {
  border: 1px solid rgba(11,18,32,.08);
  border-radius: 12px;
  padding: .35rem .55rem;
}
.navbar-toggler:focus { box-shadow: none; }

@media (max-width: 991.98px) {
  .pw-navbar { padding: .55rem 0; }
  .navbar-collapse {
    margin-top: .65rem;
    padding: .75rem;
    background: rgba(255,255,255,.96);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    backdrop-filter: saturate(180%) blur(20px);
    border-radius: 18px;
    border: 1px solid rgba(11,18,32,.06);
    box-shadow:
      0 24px 56px -16px rgba(11,18,32,.16),
      0 6px 16px -4px rgba(11,18,32,.05);
  }
  .navbar-nav .nav-link {
    padding: .65rem .85rem;
    border-radius: 10px;
  }
  .navbar-nav .nav-link::after { display: none; }
  .navbar-nav .nav-link:hover,
  .navbar-nav .nav-link:focus-visible { background: var(--brand-50) !important; }
  .dropdown-menu {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0 0 .25rem 1rem;
    margin-top: .25rem;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .dropdown-item { font-size: .9rem; padding: .5rem .85rem; }
  .pw-nav-cta {
    padding-top: .65rem;
    margin-top: .35rem;
    border-top: 1px solid rgba(11,18,32,.06);
  }
  .pw-nav-btn {
    width: 100%;
    justify-content: center;
    padding: .7rem 1.25rem;
  }
}

/* ============================================================
   HERO — premium light editorial canvas
   ============================================================ */
:root {
  --hero-bg-1: #F8FBF8;
  --hero-bg-2: #FFFFFF;
  --hero-bg-3: #F2F7F3;
  --hero-mint: #00805F;
  --hero-mint-2: #006B4F;
  --hero-peach: #C8553D;
  --hero-text: #0B1220;
  --hero-text-muted: #5B6473;
  --hero-text-dim: #8A93A4;
  --hero-glass: rgba(255,255,255,.78);
  --hero-glass-2: rgba(255,255,255,.92);
  --hero-border: rgba(11,18,32,.08);
  --hero-border-2: rgba(11,18,32,.14);
}

.pw-hero {
  position: relative;
  padding: 88px 0 96px;
  overflow: hidden;
  isolation: isolate;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, #E3F2EA 0%, transparent 60%),
    linear-gradient(180deg, var(--hero-bg-1) 0%, var(--hero-bg-2) 50%, var(--hero-bg-3) 100%);
  color: var(--hero-text);
}
.pw-hero-bg {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none; overflow: hidden;
}
.pw-aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  will-change: transform;
}
.pw-aurora-1 {
  width: 620px; height: 620px;
  top: -200px; right: -160px;
  background: radial-gradient(circle, rgba(79,209,165,.32), transparent 65%);
  animation: pwAuroraDrift 28s ease-in-out infinite;
}
.pw-aurora-2 {
  width: 480px; height: 480px;
  top: 30%; left: -160px;
  background: radial-gradient(circle, rgba(0,128,95,.18), transparent 65%);
  animation: pwAuroraDrift 36s ease-in-out infinite reverse;
}
.pw-aurora-3 {
  width: 380px; height: 380px;
  bottom: -120px; left: 30%;
  background: radial-gradient(circle, rgba(244,91,67,.10), transparent 65%);
  animation: pwAuroraDrift 32s ease-in-out infinite;
  animation-delay: -8s;
}
@keyframes pwAuroraDrift {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(40px, -30px) scale(1.06); }
  66%      { transform: translate(-30px, 40px) scale(.96); }
}

/* Hairline grid mask on light */
.pw-grid-lines {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(90deg, rgba(11,18,32,.028) 1px, transparent 1px),
    linear-gradient(0deg,  rgba(11,18,32,.028) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 65% 65% at 50% 55%, #000 25%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 65% 65% at 50% 55%, #000 25%, transparent 80%);
}

/* Paper grain — multiply blend on light */
.pw-grain {
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: .5;
  mix-blend-mode: multiply;
  pointer-events: none;
}

.pw-hero-inner { z-index: 1; }

/* ---------- Two-column grid ---------- */
.pw-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
  min-height: 720px;
}

.pw-hero-text {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.pw-hero-visual {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  min-height: 680px;
}

/* ---------- Display headline (light on dark) ---------- */
.pw-display {
  font-family: 'Fraunces', 'Plus Jakarta Sans', Georgia, serif;
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: clamp(2.8rem, 6.2vw, 5.4rem);
  line-height: .96;
  letter-spacing: -.038em;
  color: var(--hero-text);
  margin: 0;
}
.pw-display-line { display: block; }
.pw-display-line + .pw-display-line { margin-top: .04em; }
.pw-ital {
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  padding-right: .02em;
}
.pw-ital-mint  { color: var(--hero-mint); }
.pw-ital-peach { color: var(--hero-peach); }
.pw-ital-white { color: var(--ink-2); }

.pw-lead {
  font-family: 'Manrope', sans-serif;
  font-size: 1.1rem;
  color: var(--hero-text-muted);
  max-width: 540px;
  line-height: 1.6;
  letter-spacing: -.005em;
  font-weight: 400;
}
.pw-lead strong {
  color: var(--hero-text);
  font-weight: 600;
}

/* ---------- CTA pair ---------- */
.pw-hero-cta {
  display: flex; gap: 22px;
  align-items: center; flex-wrap: wrap;
}

.btn-mint {
  position: relative;
  isolation: isolate;
  background: linear-gradient(180deg, #5BE0B0 0%, #2DBA89 100%);
  color: #051410;
  font-weight: 700;
  padding: .95rem 1.7rem;
  border-radius: 999px;
  border: 0;
  letter-spacing: -.005em;
  box-shadow:
    0 14px 32px -8px rgba(45,186,137,.55),
    0 4px 12px rgba(45,186,137,.2),
    inset 0 1px 0 rgba(255,255,255,.45),
    inset 0 -1px 0 rgba(0,40,28,.25);
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s ease;
}
.btn-mint:hover {
  color: #051410;
  transform: translateY(-2px);
  box-shadow:
    0 22px 44px -10px rgba(45,186,137,.7),
    0 6px 16px rgba(45,186,137,.28),
    inset 0 1px 0 rgba(255,255,255,.55),
    inset 0 -1px 0 rgba(0,40,28,.25);
}
.pw-btn-glow {
  position: absolute; inset: -12px;
  border-radius: 999px;
  background: radial-gradient(closest-side, rgba(79,209,165,.55), transparent 70%);
  filter: blur(20px);
  z-index: -1;
  opacity: .65;
}

.pw-ghost-link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: .98rem;
  color: var(--ink-2);
  text-decoration: none;
  padding: .55rem 0;
  border-bottom: 1px solid rgba(11,18,32,.18);
  transition: border-color .25s ease, color .25s ease, gap .25s ease;
}
.pw-ghost-link:hover {
  color: var(--hero-mint);
  border-bottom-color: var(--hero-mint);
  gap: 12px;
}
.pw-ghost-link i { font-size: 1rem; transition: transform .25s ease; }
.pw-ghost-link:hover i { transform: translateX(2px); }

/* ---------- Bento services grid ---------- */
.pw-bento {
  list-style: none;
  padding: 0;
  margin: 36px 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: 560px;
}
.pw-bento-cell {
  --accent: var(--hero-mint);
  position: relative;
  background: var(--hero-glass);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  backdrop-filter: saturate(160%) blur(14px);
  border: 1px solid var(--hero-border);
  border-radius: 18px;
  padding: 16px 14px 14px;
  display: flex; flex-direction: column;
  gap: 4px;
  overflow: hidden;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), border-color .25s ease, background .25s ease, box-shadow .25s ease;
  cursor: default;
  box-shadow: 0 1px 2px rgba(11,18,32,.03);
}
.pw-bento-cell::before {
  content: "";
  position: absolute;
  top: -1px; left: -1px; right: -1px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0;
  transition: opacity .35s ease;
}
.pw-bento-cell::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 0%, rgba(255,255,255,.5), transparent 60%);
  pointer-events: none;
}
.pw-bento-cell:hover {
  background: var(--hero-glass-2);
  border-color: color-mix(in oklab, var(--accent) 45%, transparent);
  transform: translateY(-3px);
  box-shadow:
    0 14px 32px -10px rgba(11,18,32,.10),
    0 4px 10px rgba(11,18,32,.04);
}
.pw-bento-cell:hover::before { opacity: 1; }
.pw-bento-cell i {
  font-size: 1.15rem;
  color: var(--accent);
  margin-bottom: 6px;
  filter: drop-shadow(0 0 8px color-mix(in oklab, var(--accent) 25%, transparent));
}
.pw-bento-name {
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  color: var(--hero-text);
  letter-spacing: -.005em;
  line-height: 1.2;
}
.pw-bento-sub {
  font-family: 'Manrope', sans-serif;
  font-size: .78rem;
  color: var(--hero-text-muted);
  letter-spacing: .005em;
  line-height: 1.3;
}

/* (Service pill row + floating cards removed — replaced by .pw-bento + clean phone.) */

/* ---------- "Get the app" anchor card ---------- */
.pw-hero-card {
  position: relative;
  width: 100%;
  max-width: 420px;
  margin-inline: auto;
  background: #FFFFFF;
  border: 1px solid rgba(11,18,32,.07);
  border-radius: 28px;
  padding: 28px 28px 22px;
  box-shadow:
    0 30px 60px -18px rgba(11,18,32,.14),
    0 6px 14px rgba(11,18,32,.05),
    inset 0 1px 0 rgba(255,255,255,.95);
  overflow: hidden;
  isolation: isolate;
}
.pw-hero-card-halo {
  position: absolute;
  inset: -40px;
  background: radial-gradient(ellipse 60% 50% at 50% 0%, rgba(79,209,165,.22), transparent 65%);
  filter: blur(40px);
  z-index: -1;
  pointer-events: none;
}

.pw-hero-card-head {
  text-align: center;
  margin-bottom: 22px;
}
.pw-hero-card-kicker {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brand);
  background: rgba(0,128,95,.08);
  padding: .35rem .8rem;
  border-radius: 999px;
  margin-bottom: 12px;
}
.pw-hero-card-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: clamp(1.6rem, 2.2vw, 2rem);
  line-height: 1.1;
  letter-spacing: -.024em;
  color: var(--ink);
  margin: 0 0 8px;
}
.pw-hero-card-sub {
  font-family: 'Manrope', sans-serif;
  font-size: .9rem;
  line-height: 1.5;
  color: var(--muted);
  margin: 0;
  max-width: 280px;
  margin-inline: auto;
}

/* QR code area */
.pw-hero-card-qr {
  position: relative;
  display: grid;
  place-items: center;
  background: #FFFFFF;
  padding: 18px;
  margin: 0 auto 16px;
  width: 252px;
  height: 252px;
  border-radius: 22px;
  border: 1px solid rgba(11,18,32,.06);
  box-shadow:
    inset 0 0 0 6px #FFFFFF,
    0 8px 20px -8px rgba(11,18,32,.08);
}
.pw-hero-card-qr-img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: 220px;
  max-height: 220px;
  border-radius: 8px;
}
.pw-hero-card-qr-corner {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 2px solid var(--brand);
  border-radius: 4px;
}
.pw-hero-card-qr-corner--tl { top: 8px;  left: 8px;  border-right: 0; border-bottom: 0; }
.pw-hero-card-qr-corner--tr { top: 8px;  right: 8px; border-left: 0;  border-bottom: 0; }
.pw-hero-card-qr-corner--bl { bottom: 8px; left: 8px;  border-right: 0; border-top: 0; }
.pw-hero-card-qr-corner--br { bottom: 8px; right: 8px; border-left: 0;  border-top: 0; }

/* CTA link below QR */
.pw-hero-card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'Manrope', sans-serif;
  font-size: .88rem;
  font-weight: 500;
  color: var(--ink-2);
  text-decoration: none;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(11,18,32,.08);
  background: rgba(11,18,32,.02);
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}
.pw-hero-card-cta:hover {
  background: rgba(0,128,95,.06);
  border-color: rgba(0,128,95,.25);
  color: var(--brand);
}
.pw-hero-card-cta i:first-child { color: var(--brand); font-size: 1rem; }
.pw-hero-card-cta i:last-child { font-size: .85rem; opacity: .7; }

/* Editorial header above list */
.pw-hero-card-list-head {
  margin-top: 18px;
  padding-top: 18px;
  padding-bottom: 10px;
  border-top: 1px solid rgba(11,18,32,.06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.pw-hero-card-list-kicker {
  font-family: 'Manrope', sans-serif;
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.pw-hero-card-list-count {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 96, "SOFT" 100;
  font-size: .85rem;
  color: var(--brand);
  letter-spacing: -.01em;
}

/* Inside-the-app list — per-row accent + tag pill */
.pw-hero-card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.pw-hero-card-list li {
  --row: var(--brand);
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px 10px;
  border-radius: 12px;
  transition: background .25s ease;
  position: relative;
}
.pw-hero-card-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%) scaleY(.4);
  width: 2px;
  height: 60%;
  background: var(--row);
  border-radius: 2px;
  opacity: 0;
  transition: opacity .25s ease, transform .3s cubic-bezier(.2,.8,.2,1);
}
.pw-hero-card-list li:hover {
  background: color-mix(in oklab, var(--row) 5%, transparent);
}
.pw-hero-card-list li:hover::before {
  opacity: 1;
  transform: translateY(-50%) scaleY(1);
}
.pw-hero-card-list > li > i {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: color-mix(in oklab, var(--row) 10%, transparent);
  color: var(--row);
  font-size: 1rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), background .25s ease;
}
.pw-hero-card-list li:hover > i {
  transform: scale(1.08);
  background: color-mix(in oklab, var(--row) 16%, transparent);
}
.pw-hero-card-row {
  flex: 1;
  min-width: 0;
}
.pw-hero-card-row strong {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: .94rem;
  color: var(--ink);
  letter-spacing: -.01em;
  line-height: 1.25;
}
.pw-hero-card-sub {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: .74rem;
  color: var(--muted);
  letter-spacing: .005em;
  margin-top: 1px;
  line-height: 1.35;
}
.pw-hero-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: 'Manrope', sans-serif;
  font-size: .62rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--row);
  background: color-mix(in oklab, var(--row) 10%, transparent);
  border: 1px solid color-mix(in oklab, var(--row) 20%, transparent);
  padding: .26rem .55rem;
  border-radius: 999px;
  flex-shrink: 0;
  white-space: nowrap;
}
.pw-hero-card-tag i { font-size: .7rem; }
.pw-hero-card-tag--accent {
  background: linear-gradient(135deg,
    color-mix(in oklab, var(--row) 14%, transparent),
    color-mix(in oklab, var(--row) 6%, transparent));
  border-color: color-mix(in oklab, var(--row) 35%, transparent);
  box-shadow: 0 2px 6px color-mix(in oklab, var(--row) 18%, transparent);
  animation: pwHeroFreePulse 3s ease-in-out infinite;
}
.pw-hero-card-tag--accent i {
  color: var(--row);
  filter: drop-shadow(0 0 4px color-mix(in oklab, var(--row) 40%, transparent));
}
@keyframes pwHeroFreePulse {
  0%, 100% {
    box-shadow: 0 2px 6px color-mix(in oklab, var(--row) 18%, transparent),
                0 0 0 0 color-mix(in oklab, var(--row) 30%, transparent);
  }
  50% {
    box-shadow: 0 2px 6px color-mix(in oklab, var(--row) 18%, transparent),
                0 0 0 6px color-mix(in oklab, var(--row) 0%, transparent);
  }
}

/* Editorial roman-numeral prefix */
.pw-hero-card-num {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 96, "SOFT" 100;
  font-size: .82rem;
  color: var(--row);
  letter-spacing: -.01em;
  flex-shrink: 0;
  width: 18px;
  text-align: right;
  opacity: .7;
  transition: opacity .25s ease;
}
.pw-hero-card-list li:hover .pw-hero-card-num { opacity: 1; }

/* Chevron hint at right edge */
.pw-hero-card-chev {
  font-size: .72rem;
  color: var(--muted-2);
  opacity: 0;
  margin-left: -4px;
  transform: translateX(-4px);
  transition: opacity .3s ease, transform .3s cubic-bezier(.2,.8,.2,1), color .25s ease;
}
.pw-hero-card-list li:hover .pw-hero-card-chev {
  opacity: 1;
  transform: translateX(2px);
  color: var(--row);
}

@media (prefers-reduced-motion: reduce) {
  .pw-hero-card-tag--accent { animation: none; }
}

/* ---------- Entrance animations ---------- */
.pw-hero-text > * {
  opacity: 0;
  animation: pwRise .95s cubic-bezier(.2,.7,.2,1) forwards;
}
.pw-hero-text > *:nth-child(1) { animation-delay: .05s; }
.pw-hero-text > *:nth-child(2) { animation-delay: .18s; }
.pw-hero-text > *:nth-child(3) { animation-delay: .30s; }
.pw-hero-text > *:nth-child(4) { animation-delay: .42s; }

.pw-bento-cell {
  opacity: 0;
  animation: pwRise .8s cubic-bezier(.2,.7,.2,1) forwards;
}
.pw-bento-cell:nth-child(1) { animation-delay: .50s; }
.pw-bento-cell:nth-child(2) { animation-delay: .57s; }
.pw-bento-cell:nth-child(3) { animation-delay: .64s; }
.pw-bento-cell:nth-child(4) { animation-delay: .71s; }
.pw-bento-cell:nth-child(5) { animation-delay: .78s; }
.pw-bento-cell:nth-child(6) { animation-delay: .85s; }

@keyframes pwRise {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .pw-aurora { animation: none; }
  .pw-hero-text > *, .pw-bento-cell, .pw-hero-card {
    opacity: 1;
    animation: none;
  }
}

/* ---------- Responsive ---------- */
@media (max-width: 1199.98px) {
  .pw-hero-grid { gap: 40px; }
  .pw-display { font-size: clamp(2.6rem, 5.6vw, 4.6rem); }
}
@media (max-width: 991.98px) {
  .pw-hero { padding: 72px 0 80px; }
  .pw-hero-grid {
    grid-template-columns: 1fr;
    gap: 64px;
    text-align: center;
    min-height: auto;
  }
  .pw-hero-text {
    max-width: 640px;
    margin-inline: auto;
  }
  .pw-hero-text .pw-lead { margin-inline: auto; }
  .pw-hero-cta { justify-content: center; }
  .pw-bento {
    margin-inline: auto;
    max-width: 540px;
  }
  .pw-bento-cell { text-align: left; }
  .pw-hero-visual { min-height: auto; padding: 0; }
  .pw-hero-card { max-width: 440px; }
}
@media (max-width: 575.98px) {
  .pw-hero { padding: 56px 0 64px; }
  .pw-hero-card { padding: 24px 22px 20px; border-radius: 22px; }
  .pw-hero-card-qr { width: 220px; height: 220px; padding: 14px; }
  .pw-hero-card-qr-img { max-width: 192px; max-height: 192px; }
  .pw-bento {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .pw-bento-cell { padding: 14px 12px 12px; border-radius: 16px; }
  .pw-hero-cta { gap: 14px; }
  .btn-mint { padding: .85rem 1.4rem; }
  .pw-ghost-link { font-size: .92rem; }
}

/* ============================================================
   EDITORIAL WHISPER BAND — closing line of the hero
   ============================================================ */
.pw-band {
  position: relative;
  margin-top: 80px;
  padding: 32px 0;
  border-top: 1px solid rgba(11,18,32,.06);
  border-bottom: 1px solid rgba(11,18,32,.06);
  background:
    radial-gradient(ellipse 70% 80% at 50% 50%, rgba(0,128,95,.04), transparent 70%);
  overflow: hidden;
}
.pw-band-track {
  display: flex;
  width: max-content;
  animation: pwBandScroll 35s linear infinite;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  will-change: transform;
}
.pw-band:hover .pw-band-track {
  animation-play-state: paused;
}
.pw-band-group {
  display: inline-flex;
  align-items: center;
  gap: 44px;
  padding-right: 44px;
  flex-shrink: 0;
}
.pw-band-item {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 96, "SOFT" 100;
  font-size: clamp(1.2rem, 2vw, 1.85rem);
  line-height: 1.5;
  letter-spacing: -.018em;
  color: rgba(11,18,32,.45);
  white-space: nowrap;
  user-select: none;
  transition: color .35s ease;
  padding: .15em 0;
}
.pw-band-item:hover { color: var(--ink); }
.pw-band-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--brand);
  opacity: .55;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(0,128,95,.06);
}

@keyframes pwBandScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  .pw-band-track { animation: none; }
}

@media (max-width: 991.98px) {
  .pw-band { margin-top: 56px; padding: 26px 0; }
  .pw-band-group { gap: 36px; padding-right: 36px; }
}
@media (max-width: 575.98px) {
  .pw-band { margin-top: 36px; padding: 22px 0; }
  .pw-band-group { gap: 28px; padding-right: 28px; }
  .pw-band-item { font-size: clamp(1rem, 4vw, 1.4rem); }
  .pw-band-dot { width: 5px; height: 5px; box-shadow: 0 0 0 2px rgba(0,128,95,.07); }
}

/* ============================================================
   SECTIONS — shared
   ============================================================ */
.pw-section { padding: 96px 0; }
.pw-section-soft { background: var(--soft); }
.pw-section-head { max-width: 760px; margin: 0 auto; }
.pw-eyebrow {
  display: inline-block; background: var(--brand-50); color: var(--brand);
  padding: .4rem 1rem; border-radius: 999px; font-weight: 600; font-size: .82rem;
  letter-spacing: .02em;
}
.pw-eyebrow-pink { background: var(--pink-50); color: var(--pink); }
.pw-h2 {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(2rem, 3.6vw, 3rem); letter-spacing: -.02em; color: var(--ink);
  margin-top: 1rem;
}
.pw-h3 { font-family: var(--font-display); font-weight: 700; font-size: 1.7rem; color: var(--ink); }
.pw-sub { color: var(--muted); font-size: 1.02rem; margin-top: .6rem; }

@media (max-width: 767.98px) { .pw-section { padding: 72px 0; } }

/* ============================================================
   MANIFESTO — Why we built it
   ============================================================ */
.pw-manifesto { position: relative; }
.pw-manifesto-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}

.pw-manifesto-intro {
  position: sticky;
  top: 110px;
  max-width: 420px;
}
.pw-manifesto-intro .pw-h2 em {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.pw-manifesto-pillars {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: none;
}
.pw-manifesto-pillar {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 28px;
  padding: 32px 0;
  border-top: 1px solid rgba(11,18,32,.08);
  position: relative;
  transition: padding-left .35s cubic-bezier(.2,.8,.2,1);
}
.pw-manifesto-pillar:first-child {
  padding-top: 4px;
  border-top: 0;
}
.pw-manifesto-pillar::after {
  content: "";
  position: absolute;
  left: 0; top: 0;
  width: 2px; height: 100%;
  background: var(--brand);
  border-radius: 2px;
  opacity: 0;
  transition: opacity .35s ease;
}
.pw-manifesto-pillar:hover {
  padding-left: 18px;
}
.pw-manifesto-pillar:hover::after { opacity: .4; }

.pw-manifesto-num {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: clamp(2.8rem, 4.4vw, 4rem);
  line-height: .85;
  letter-spacing: -.04em;
  color: rgba(11,18,32,.14);
  transition: color .35s ease;
  user-select: none;
}
.pw-manifesto-pillar:hover .pw-manifesto-num {
  color: var(--brand);
}

.pw-manifesto-pillar-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  line-height: 1.15;
  letter-spacing: -.026em;
  color: var(--ink);
  margin: 0 0 12px;
}
.pw-manifesto-pillar-title em {
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--brand);
}
.pw-manifesto-pillar-desc {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0;
  max-width: 540px;
}

@media (max-width: 991.98px) {
  .pw-manifesto-grid { grid-template-columns: 1fr; gap: 40px; }
  .pw-manifesto-intro {
    position: static;
    max-width: 640px;
    margin-inline: auto;
    text-align: center;
  }
}
@media (max-width: 575.98px) {
  .pw-manifesto-pillar {
    grid-template-columns: 70px 1fr;
    gap: 16px;
    padding: 26px 0;
  }
  .pw-manifesto-pillar:hover { padding-left: 0; }
  .pw-manifesto-pillar:hover::after { opacity: 0; }
  .pw-manifesto-num { font-size: 2.4rem; }
  .pw-manifesto-pillar-title { font-size: 1.25rem; }
}

/* ============================================================
   INSIDE THE APP — Cinematic chapters
   ============================================================ */
.pw-features {
  position: relative;
  background:
    radial-gradient(ellipse 60% 40% at 100% 0%, #F4FAF6 0%, transparent 60%),
    linear-gradient(180deg, #FFFFFF 0%, #FAFCFA 100%);
}

.pw-features-head {
  max-width: 900px;
  margin: 0 auto 72px;
  text-align: center;
}
.pw-features-head-meta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 14px;
}
.pw-features-head-volume {
  font-family: 'Manrope', sans-serif;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted-2);
  padding-left: 14px;
  border-left: 1px solid rgba(11,18,32,.12);
}
.pw-features-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: clamp(2.4rem, 5vw, 4.4rem);
  line-height: .98;
  letter-spacing: -.038em;
  color: var(--ink);
  margin: 0;
}
.pw-features-headline em {
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.pw-features-tagline {
  font-family: 'Manrope', sans-serif;
  font-size: 1.08rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 20px auto 0;
  max-width: 580px;
}

/* Chapter list */
.pw-features-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 1140px;
  margin-inline: auto;
}

.pw-chapter {
  --cac: var(--brand);
  display: grid;
  grid-template-columns: 180px 1fr 280px;
  gap: 64px;
  align-items: center;
  padding: 88px 0;
  border-top: 1px solid rgba(11,18,32,.06);
  position: relative;
  transition: padding-left .4s cubic-bezier(.2,.8,.2,1);
}
.pw-chapter:first-child { border-top: 0; }
.pw-chapter::after {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 4px;
  height: 0;
  background: var(--cac);
  border-radius: 2px;
  transform: translateY(-50%);
  transition: height .5s cubic-bezier(.2,.8,.2,1);
}
.pw-chapter:hover {
  padding-left: 24px;
}
.pw-chapter:hover::after {
  height: 40%;
}

/* Left: number + kicker */
.pw-chapter-aside {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
}
.pw-chapter-num {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 60;
  font-size: clamp(4rem, 7vw, 6.5rem);
  line-height: .85;
  letter-spacing: -.05em;
  color: var(--cac);
  user-select: none;
  position: relative;
}
.pw-chapter-num::before {
  content: "";
  position: absolute;
  left: -4px; bottom: -2px;
  width: 6px; height: 6px;
  background: var(--cac);
  border-radius: 50%;
  opacity: .5;
}
.pw-chapter-rule {
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, var(--cac), transparent);
  opacity: .4;
}
.pw-chapter-kicker {
  font-family: 'Manrope', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--cac);
}

/* Middle: title + desc + tags */
.pw-chapter-body { min-width: 0; }
.pw-chapter-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  line-height: 1.05;
  letter-spacing: -.032em;
  color: var(--ink);
  margin: 0 0 18px;
}
.pw-chapter-title em {
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--cac);
}
.pw-chapter-desc {
  font-family: 'Manrope', sans-serif;
  font-size: 1.04rem;
  line-height: 1.65;
  color: var(--muted);
  margin: 0 0 22px;
  max-width: 540px;
}
.pw-chapter-tags {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.pw-chapter-tags li {
  font-family: 'Manrope', sans-serif;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .005em;
  color: var(--ink-2);
  background: color-mix(in oklab, var(--cac) 7%, transparent);
  border: 1px solid color-mix(in oklab, var(--cac) 18%, transparent);
  padding: .32rem .72rem;
  border-radius: 999px;
}

/* Right: art accent */
.pw-chapter-art {
  position: relative;
  display: grid;
  place-items: center;
  width: 220px;
  height: 220px;
  margin-inline: auto;
  border-radius: 28px;
  background:
    radial-gradient(ellipse 70% 70% at 50% 100%,
      color-mix(in oklab, var(--cac) 18%, transparent),
      transparent 70%),
    linear-gradient(160deg, #FAFEFB 0%, #F3FAF5 100%);
  border: 1px solid color-mix(in oklab, var(--cac) 14%, transparent);
  box-shadow:
    0 18px 36px -14px color-mix(in oklab, var(--cac) 32%, transparent),
    inset 0 1px 0 rgba(255,255,255,.9);
  transition: transform .5s cubic-bezier(.2,.8,.2,1), box-shadow .5s ease;
}
.pw-chapter-art::before {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 28px;
  background: conic-gradient(from 90deg at 50% 50%,
    transparent 0deg,
    color-mix(in oklab, var(--cac) 30%, transparent) 90deg,
    transparent 180deg,
    transparent 360deg);
  opacity: 0;
  transition: opacity .5s ease;
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask-composite: xor;
  -webkit-mask-composite: xor;
  padding: 1px;
  pointer-events: none;
}
.pw-chapter:hover .pw-chapter-art {
  transform: rotate(-2deg) translateY(-4px);
  box-shadow:
    0 28px 56px -14px color-mix(in oklab, var(--cac) 40%, transparent),
    inset 0 1px 0 rgba(255,255,255,.9);
}
.pw-chapter:hover .pw-chapter-art::before { opacity: 1; }
.pw-chapter-art i {
  font-size: 4.6rem;
  color: var(--cac);
  filter: drop-shadow(0 4px 12px color-mix(in oklab, var(--cac) 35%, transparent));
}

/* Responsive */
@media (max-width: 1199.98px) {
  .pw-chapter {
    grid-template-columns: 140px 1fr 220px;
    gap: 40px;
    padding: 72px 0;
  }
  .pw-chapter-art { width: 180px; height: 180px; }
  .pw-chapter-art i { font-size: 3.8rem; }
}
@media (max-width: 991.98px) {
  .pw-features-head { margin-bottom: 48px; }
  .pw-chapter {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 24px;
    padding: 56px 0;
  }
  .pw-chapter:hover { padding-left: 0; }
  .pw-chapter:hover::after { height: 0; }
  .pw-chapter-aside {
    flex-direction: row;
    align-items: center;
    gap: 16px;
  }
  .pw-chapter-num { font-size: 4rem; }
  .pw-chapter-rule { width: 40px; }
  .pw-chapter-art {
    order: -1;
    width: 140px;
    height: 140px;
    margin-inline: 0;
  }
  .pw-chapter-art i { font-size: 3rem; }
}
@media (max-width: 575.98px) {
  .pw-chapter { padding: 48px 0; gap: 18px; }
  .pw-chapter-num { font-size: 3.2rem; }
  .pw-chapter-title { font-size: 1.5rem; }
  .pw-chapter-art { width: 120px; height: 120px; border-radius: 22px; }
  .pw-chapter-art i { font-size: 2.6rem; }
}


.pw-byday {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 30% at 50% 0%,    rgba(248,183,154,.12) 0%, transparent 70%),
    radial-gradient(ellipse 80% 30% at 50% 50%,   rgba(245,200,140,.08) 0%, transparent 70%),
    radial-gradient(ellipse 80% 30% at 50% 100%,  rgba(91,107,230,.10)  0%, transparent 70%),
    linear-gradient(180deg, var(--soft) 0%, #FFFFFF 50%, #F4F4F8 100%);
}
.pw-byday::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(11,18,32,.025) 1px, transparent 1px),
    linear-gradient(0deg,  rgba(11,18,32,.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 30%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}
.pw-byday > .container { position: relative; z-index: 1; }
.pw-byday-head {
  max-width: 760px;
  margin: 0 auto 64px;
}
.pw-byday-head .pw-h2 em {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

/* ---------- The day timeline ---------- */
.pw-day {
  position: relative;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 1100px;
}

/* Vertical center spine with scroll-driven mint-fill */
.pw-day-spine {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  background: rgba(11,18,32,.08);
  border-radius: 2px;
  pointer-events: none;
  overflow: hidden;
}
.pw-day-spine-fill {
  position: absolute;
  left: 0; top: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(180deg,
    #F8B79A 0%,
    #F59E0B 25%,
    #00805F 50%,
    #5B6BE6 75%,
    #1A2333 100%);
  border-radius: 2px;
  transition: height .6s cubic-bezier(.2,.7,.2,1);
  box-shadow: 0 0 12px rgba(0,128,95,.45);
}
/* Scroll-driven fill via JS — sets --day-progress 0..1 on .pw-day */
.pw-day { --day-progress: 0; }
.pw-day-spine-fill { height: calc(var(--day-progress) * 100%); }

/* Row: 3-col grid — left card | marker (spine) | right card */
.pw-day-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 130px 1fr;
  gap: 24px;
  align-items: center;
  padding: 36px 0;
}
.pw-day-row::marker { content: none; }

/* Card placement alternates */
.pw-day-row--left .pw-vignette  { grid-column: 1; }
.pw-day-row--left .pw-day-marker { grid-column: 2; }
.pw-day-row--right .pw-day-marker { grid-column: 2; }
.pw-day-row--right .pw-vignette { grid-column: 3; }

/* Marker on the spine */
.pw-day-marker {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  z-index: 3;
  gap: 8px;
}
.pw-day-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 2px solid var(--brand);
  box-shadow:
    0 0 0 5px rgba(0,128,95,.10),
    0 4px 12px rgba(0,128,95,.22);
  transition: transform .4s cubic-bezier(.2,.8,.2,1), box-shadow .4s ease;
  position: relative;
}
.pw-day-dot::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px dashed rgba(0,128,95,.18);
  opacity: 0;
  transform: scale(.8);
  transition: opacity .4s ease, transform .4s cubic-bezier(.2,.8,.2,1);
}
.pw-day-row:hover .pw-day-dot {
  transform: scale(1.3);
  box-shadow:
    0 0 0 7px rgba(0,128,95,.18),
    0 6px 16px rgba(0,128,95,.32);
}
.pw-day-row:hover .pw-day-dot::after {
  opacity: 1;
  transform: scale(1);
}
.pw-day-dot--cycle {
  background: linear-gradient(135deg, var(--brand), #4FD1A5);
  border-color: var(--brand);
}

/* Period-of-day icon (sun/moon/etc.) */
.pw-day-period-icon {
  font-size: 1.05rem;
  color: var(--muted-2);
  background: #FFFFFF;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(11,18,32,.06);
  box-shadow: 0 2px 6px rgba(11,18,32,.04);
  transition: color .4s ease, background .4s ease, transform .4s ease;
}
.pw-day-row--left .pw-day-period-icon,
.pw-day-row--right .pw-day-period-icon {
  /* defaults vary by row position via CSS-only theming */
}
.pw-day-row:nth-child(2)  .pw-day-period-icon { color: #F8B79A; } /* morning */
.pw-day-row:nth-child(3)  .pw-day-period-icon { color: #F59E0B; } /* noon */
.pw-day-row:nth-child(4)  .pw-day-period-icon { color: #C8553D; } /* evening */
.pw-day-row:nth-child(5)  .pw-day-period-icon { color: #5B6BE6; } /* night */
.pw-day-row:nth-child(6)  .pw-day-period-icon { color: #1A2333; } /* midnight */
.pw-day-row:nth-child(7)  .pw-day-period-icon { color: var(--brand); }
.pw-day-row:hover .pw-day-period-icon {
  transform: scale(1.08);
  background: color-mix(in oklab, var(--vac, var(--brand)) 8%, white);
}

.pw-day-time {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: 1.85rem;
  line-height: 1;
  letter-spacing: -.035em;
  color: var(--ink);
}
.pw-day-when {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted-2);
  white-space: nowrap;
}

/* Horizontal connector line from spine dot to card */
.pw-day-connector {
  position: absolute;
  top: 50%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(11,18,32,.16) 30%, rgba(11,18,32,.16) 70%, transparent);
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}
.pw-day-connector--left {
  right: calc(50% + 70px);
  width: calc(50% - 280px);
}
.pw-day-connector--right {
  left: calc(50% + 70px);
  width: calc(50% - 280px);
}
.pw-day-row:hover .pw-day-connector {
  background: linear-gradient(90deg, transparent, color-mix(in oklab, var(--vac, var(--brand)) 50%, transparent) 30%, color-mix(in oklab, var(--vac, var(--brand)) 50%, transparent) 70%, transparent);
}

/* Vignette card */
.pw-vignette {
  --vac: var(--brand);
  position: relative;
  background: #FFFFFF;
  border: 1px solid rgba(11,18,32,.06);
  border-radius: 22px;
  padding: 28px 28px 30px;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), box-shadow .35s ease, border-color .35s ease;
  overflow: hidden;
}
.pw-day-row--left .pw-vignette  { text-align: right; }
.pw-day-row--right .pw-vignette { text-align: left; }
.pw-vignette::before {
  content: "";
  position: absolute;
  top: 28px; bottom: 28px;
  width: 2px;
  background: var(--vac);
  border-radius: 2px;
  opacity: 0;
  transition: opacity .35s ease;
}
.pw-day-row--left  .pw-vignette::before { right: 0; }
.pw-day-row--right .pw-vignette::before { left: 0; }
.pw-vignette::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 0% 100%, color-mix(in oklab, var(--vac) 8%, transparent), transparent 65%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.pw-day-row--left .pw-vignette::after {
  background: radial-gradient(ellipse 60% 80% at 100% 100%, color-mix(in oklab, var(--vac) 8%, transparent), transparent 65%);
}
.pw-vignette:hover {
  transform: translateY(-4px);
  border-color: color-mix(in oklab, var(--vac) 24%, transparent);
  box-shadow:
    0 22px 44px -14px rgba(11,18,32,.10),
    0 4px 10px rgba(11,18,32,.04);
}
.pw-vignette:hover::before,
.pw-vignette:hover::after { opacity: 1; }

.pw-vignette-icon {
  font-size: 1.4rem;
  color: var(--vac);
  margin-bottom: 14px;
  padding: 10px;
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border-radius: 12px;
  background: color-mix(in oklab, var(--vac) 10%, transparent);
}
.pw-day-row--left .pw-vignette-icon { margin-left: auto; display: grid; }

.pw-vignette-scene {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: clamp(1.25rem, 1.7vw, 1.5rem);
  line-height: 1.2;
  letter-spacing: -.024em;
  color: var(--ink);
  margin: 0 0 14px;
}
.pw-vignette-scene em {
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--vac);
}
.pw-vignette-answer {
  font-family: 'Manrope', sans-serif;
  font-size: .98rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .pw-byday-head { margin-bottom: 44px; }
  .pw-day-spine { left: 24px; transform: none; }
  .pw-day-row {
    grid-template-columns: 48px 1fr;
    gap: 16px;
    padding: 24px 0;
  }
  .pw-day-row--left .pw-day-marker,
  .pw-day-row--right .pw-day-marker { grid-column: 1; align-items: flex-start; }
  .pw-day-row--left .pw-vignette,
  .pw-day-row--right .pw-vignette {
    grid-column: 2;
    text-align: left;
  }
  .pw-day-row--left .pw-vignette::before,
  .pw-day-row--right .pw-vignette::before { left: 0; right: auto; }
  .pw-day-row--left .pw-vignette::after,
  .pw-day-row--right .pw-vignette::after {
    background: radial-gradient(ellipse 60% 80% at 0% 100%, color-mix(in oklab, var(--vac) 8%, transparent), transparent 65%);
  }
  .pw-day-time { font-size: 1.3rem; }
  .pw-day-when { display: none; }
  .pw-day-period-icon { width: 26px; height: 26px; font-size: .92rem; }
  .pw-day-connector { display: none; }
  .pw-day-row--left .pw-vignette-icon { margin-left: 0; }
}
@media (max-width: 575.98px) {
  .pw-vignette { padding: 22px 20px; border-radius: 18px; }
  .pw-vignette-scene { font-size: 1.15rem; }
  .pw-vignette-answer { font-size: .9rem; }
  .pw-day-time { font-size: 1.1rem; }
}

/* ============================================================
   BRAND CATALOGUE — premium slow-marquee
   ============================================================ */
.text-red  { color: var(--red); }
.text-pink { color: var(--pink); }

.pw-brands {
  position: relative;
  overflow: hidden;
}
.pw-brands::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 30% at 50% 0%, rgba(0,128,95,.06), transparent 65%),
    radial-gradient(ellipse 60% 30% at 50% 100%, rgba(79,209,165,.08), transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.pw-brands > .container { position: relative; z-index: 1; }

.pw-brands-head {
  max-width: 760px;
  margin: 0 auto 32px;
}
.pw-brands-head .pw-h2 em {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

/* Category indicators — chapter markers above marquee */
.pw-brand-cats {
  list-style: none;
  padding: 0;
  margin: 0 auto 36px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.pw-brand-cats li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Manrope', sans-serif;
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: -.005em;
  color: var(--ink-2);
  background: rgba(255,255,255,.74);
  border: 1px solid rgba(11,18,32,.08);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  backdrop-filter: saturate(160%) blur(10px);
  padding: .35rem .75rem .35rem .6rem;
  border-radius: 999px;
  transition: border-color .25s ease, color .25s ease, transform .25s ease;
}
.pw-brand-cats li:hover {
  border-color: rgba(0,128,95,.3);
  color: var(--brand);
  transform: translateY(-2px);
}
.pw-brand-cats i { color: var(--brand); font-size: .88rem; opacity: .85; }

/* Marquee */
.pw-brand-marquee {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
  /* Edge fade-masks so cards melt in/out at the borders */
  mask-image: linear-gradient(90deg,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%);
  -webkit-mask-image: linear-gradient(90deg,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%);
}
.pw-brand-marquee-track {
  display: flex;
  align-items: stretch;
  gap: 16px;
  width: max-content;
  animation: pwBrandsScroll var(--marquee-duration, 300s) linear infinite;
  will-change: transform;
}
.pw-brand-marquee:hover .pw-brand-marquee-track {
  animation-play-state: paused;
}
@keyframes pwBrandsScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Brand cell — richer card design */
.pw-brand-cell {
  position: relative;
  flex-shrink: 0;
  width: 180px;
  background: #FFFFFF;
  border: 1px solid rgba(11,18,32,.07);
  border-radius: 18px;
  padding: 20px 16px 18px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), border-color .35s ease, box-shadow .35s ease;
  overflow: hidden;
  isolation: isolate;
}
.pw-brand-cell::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 50% at 50% 0%, rgba(0,128,95,.06), transparent 65%);
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.pw-brand-cell::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 18px;
  padding: 1px;
  background: linear-gradient(135deg, rgba(0,128,95,.4), transparent 50%, rgba(79,209,165,.3));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .35s ease;
  pointer-events: none;
}
.pw-brand-cell:hover {
  transform: translateY(-4px);
  border-color: rgba(0,128,95,.18);
  box-shadow:
    0 22px 44px -14px rgba(11,18,32,.12),
    0 6px 14px rgba(11,18,32,.05);
}
.pw-brand-cell:hover::before,
.pw-brand-cell:hover::after { opacity: 1; }

.pw-brand-logo-wrap {
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(160deg, #FFFFFF 0%, #F5FAF6 100%);
  border: 1px solid rgba(11,18,32,.04);
  position: relative;
  z-index: 1;
  transition: transform .35s cubic-bezier(.2,.8,.2,1);
}
.pw-brand-cell:hover .pw-brand-logo-wrap {
  transform: scale(1.05);
}
.pw-brand-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 2px 6px rgba(11,18,32,.08));
}
.pw-brand-name {
  font-family: 'Manrope', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  letter-spacing: -.018em;
  line-height: 1.15;
  position: relative;
  z-index: 1;
}
.pw-brand-cat {
  font-family: 'Manrope', sans-serif;
  font-size: .64rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted-2);
  position: relative;
  z-index: 1;
  padding: .22rem .6rem;
  border-radius: 999px;
  background: rgba(0,128,95,.05);
  border: 1px solid rgba(0,128,95,.08);
}

/* Footer rail */
.pw-brands-rail {
  margin: 48px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  font-family: 'Manrope', sans-serif;
  flex-wrap: wrap;
}
.pw-brands-rail-label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted-2);
}
.pw-brands-rail-item {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 96, "SOFT" 100;
  font-size: 1.1rem;
  color: var(--brand);
  letter-spacing: -.01em;
}
.pw-brands-rail-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--brand);
  opacity: .4;
}
.pw-brands-rail-meta {
  font-size: .82rem;
  color: var(--muted);
  letter-spacing: -.005em;
}

@media (prefers-reduced-motion: reduce) {
  .pw-brand-marquee-track { animation: none; }
}

@media (max-width: 991.98px) {
  .pw-brand-cell { width: 160px; padding: 18px 14px 16px; }
  .pw-brand-logo-wrap { width: 68px; height: 68px; }
  .pw-brand-logo { width: 48px; height: 48px; }
  .pw-brand-name { font-size: .94rem; }
}
@media (max-width: 575.98px) {
  .pw-brand-cats { gap: 6px; margin-bottom: 28px; }
  .pw-brand-cats li { font-size: .7rem; padding: .3rem .65rem .3rem .5rem; }
  .pw-brand-cell { width: 140px; padding: 16px 12px 14px; }
  .pw-brand-logo-wrap { width: 60px; height: 60px; border-radius: 12px; }
  .pw-brand-logo { width: 42px; height: 42px; }
  .pw-brands-rail { gap: 10px; margin-top: 32px; }
  .pw-brands-rail-meta { display: none; }
}

/* ============================================================
   OUR VENTURES — Chowthan businesses showcase
   ============================================================ */
.pw-ventures-head {
  max-width: 760px;
  margin: 0 auto 56px;
}
.pw-ventures-head .pw-h2 em {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.pw-ventures-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.pw-ventures-grid-4 {
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.pw-venture {
  --vac: var(--brand);
  position: relative;
  background: #FFFFFF;
  border: 1px solid rgba(11,18,32,.06);
  border-radius: 22px;
  padding: 32px 30px 30px;
  overflow: hidden;
  isolation: isolate;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  transition: transform .35s cubic-bezier(.2,.8,.2,1), border-color .35s ease, box-shadow .35s ease;
}
.pw-venture::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 100% 100%,
      color-mix(in oklab, var(--vac) 14%, transparent),
      transparent 65%);
  pointer-events: none;
  z-index: 0;
}
.pw-venture::after {
  content: "";
  position: absolute;
  left: 0; top: 30px; bottom: 30px;
  width: 2px;
  background: var(--vac);
  border-radius: 0 2px 2px 0;
  opacity: 0;
  transition: opacity .35s ease;
  z-index: 1;
}
.pw-venture:hover {
  transform: translateY(-4px);
  border-color: color-mix(in oklab, var(--vac) 25%, transparent);
  box-shadow:
    0 22px 44px -14px rgba(11,18,32,.10),
    0 4px 10px rgba(11,18,32,.04);
}
.pw-venture:hover::after { opacity: 1; }
.pw-venture > * { position: relative; z-index: 2; }

.pw-venture-kicker {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--vac);
  margin-bottom: 14px;
  padding: 4px 10px;
  background: color-mix(in oklab, var(--vac) 10%, transparent);
  border-radius: 999px;
  align-self: flex-start;
}
.pw-venture-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  line-height: 1.1;
  letter-spacing: -.028em;
  color: var(--ink);
  margin: 0 0 14px;
}
.pw-venture-desc {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 20px;
}
.pw-venture-tags {
  list-style: none;
  padding: 0;
  margin: auto 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.pw-venture-tags li {
  font-family: 'Manrope', sans-serif;
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .005em;
  color: var(--ink-2);
  background: rgba(11,18,32,.04);
  padding: .3rem .68rem;
  border-radius: 999px;
}
.pw-venture-glyph {
  position: absolute;
  right: 22px; top: 24px;
  font-size: 1.4rem;
  color: var(--vac);
  opacity: .5;
  z-index: 2;
}

@media (max-width: 991.98px) {
  .pw-ventures-grid { grid-template-columns: 1fr; gap: 16px; }
  .pw-venture { min-height: auto; padding: 28px 26px; }
}

/* ============================================================
   LEADERSHIP — Editorial CEO profile
   ============================================================ */
.pw-leadership { position: relative; }
.pw-leadership-head {
  max-width: 760px;
  margin: 0 auto 56px;
}
.pw-leadership-head .pw-h2 em {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

.pw-leader-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 64px;
  align-items: start;
}

/* Photo card */
.pw-leader-photo {
  margin: 0;
  position: sticky;
  top: 100px;
}
.pw-leader-photo-frame {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(160deg, #ECF6EF 0%, #DFF0E6 100%);
  box-shadow:
    0 30px 60px -16px rgba(11,18,32,.18),
    0 8px 16px rgba(11,18,32,.06);
  isolation: isolate;
}
.pw-leader-photo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.pw-leader-photo-mark {
  position: absolute;
  left: 20px; bottom: -10px;
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: 8rem;
  line-height: 1;
  color: var(--brand);
  opacity: .14;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}

.pw-leader-caption {
  margin: 24px 0 0;
  padding: 0;
  border-top: 1px solid rgba(11,18,32,.08);
  padding-top: 22px;
}
.pw-leader-kicker {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brand);
  margin-bottom: 12px;
}
.pw-leader-name {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: clamp(1.6rem, 2.4vw, 2.1rem);
  line-height: 1.05;
  letter-spacing: -.028em;
  color: var(--ink);
  margin: 0 0 10px;
}
.pw-leader-org {
  font-family: 'Manrope', sans-serif;
  font-size: .76rem;
  font-weight: 600;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0;
}

/* Bio column */
.pw-leader-bio { padding-top: 6px; }
.pw-leader-para {
  font-family: 'Manrope', sans-serif;
  font-size: 1.04rem;
  line-height: 1.75;
  color: var(--ink-2);
  margin: 0 0 24px;
  max-width: 620px;
  letter-spacing: -.003em;
}
.pw-leader-para strong { color: var(--ink); font-weight: 600; }
.pw-leader-lede {
  font-size: 1.18rem;
  line-height: 1.65;
  color: var(--ink);
  /* drop-cap on first letter for editorial signature */
}
.pw-leader-lede::first-letter {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: 3.4em;
  line-height: .85;
  float: left;
  margin: .04em .14em 0 0;
  color: var(--brand);
  letter-spacing: -.04em;
}

/* Pull quote */
.pw-leader-pull {
  position: relative;
  margin: 36px 0 0;
  padding: 28px 0 24px;
  border-top: 1px solid rgba(11,18,32,.08);
  border-bottom: 1px solid rgba(11,18,32,.08);
}
.pw-leader-pull-mark {
  position: absolute;
  top: 8px; left: -8px;
  font-size: 2.6rem;
  color: var(--brand);
  opacity: .14;
  line-height: 1;
}
.pw-leader-pull blockquote {
  margin: 0 0 10px;
  padding: 0;
  border: 0;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.2;
  letter-spacing: -.028em;
  color: var(--ink);
}
.pw-leader-pull blockquote em {
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--brand);
}
.pw-leader-pull figcaption {
  font-family: 'Manrope', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted-2);
}

@media (max-width: 991.98px) {
  .pw-leader-grid { grid-template-columns: 1fr; gap: 40px; }
  .pw-leader-photo {
    position: static;
    max-width: 380px;
    margin-inline: auto;
    width: 100%;
  }
  .pw-leader-caption { text-align: center; }
  .pw-leader-bio { max-width: 640px; margin-inline: auto; }
}
@media (max-width: 575.98px) {
  .pw-leader-photo-mark { font-size: 6rem; }
  .pw-leader-lede { font-size: 1.08rem; }
  .pw-leader-lede::first-letter { font-size: 3rem; }
}

/* ============================================================
   GALLERY — Editorial scrapbook (polaroid masonry)
   ============================================================ */
.pw-gallery {
  position: relative;
  overflow: hidden;
}
.pw-gallery-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    linear-gradient(90deg, rgba(11,18,32,.025) 1px, transparent 1px),
    linear-gradient(0deg,  rgba(11,18,32,.025) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 30%, transparent 80%);
  pointer-events: none;
}

.pw-gallery-head {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 auto 56px;
  max-width: 880px;
  text-align: center;
  position: relative;
  z-index: 1;
}
.pw-gallery-head-meta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 4px;
}
.pw-gallery-issue {
  font-family: 'Manrope', sans-serif;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--muted-2);
  padding-left: 14px;
  border-left: 1px solid rgba(11,18,32,.12);
}
.pw-gallery-head .pw-h2 em {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}

/* Deterministic 3-col grid with flex columns — each item has a guaranteed slot */
.pw-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: start;
  position: relative;
  z-index: 1;
}
.pw-gallery-col {
  display: flex;
  flex-direction: column;
  gap: 28px;
  min-width: 0;
}

.pw-gallery-item {
  display: block;
  margin: 0;
  transition: transform .5s cubic-bezier(.2,.8,.2,1);
}

/* Tilt variants — per-item slight rotation */
.pw-gallery-item--tilt-l { transform: rotate(-1.6deg); }
.pw-gallery-item--tilt-r { transform: rotate(1.6deg); }
.pw-gallery-item:hover { transform: rotate(0) translateY(-6px); }

/* Polaroid frame around image */
.pw-gallery-polaroid {
  position: relative;
  background: #FFFFFF;
  padding: 14px 14px 56px;
  border-radius: 6px;
  box-shadow:
    0 14px 32px -10px rgba(11,18,32,.18),
    0 4px 10px rgba(11,18,32,.06),
    inset 0 0 0 1px rgba(11,18,32,.04);
  transition: box-shadow .4s ease;
}
.pw-gallery-item:hover .pw-gallery-polaroid {
  box-shadow:
    0 28px 60px -14px rgba(11,18,32,.22),
    0 8px 18px rgba(11,18,32,.08),
    inset 0 0 0 1px rgba(11,18,32,.04);
}
.pw-gallery-polaroid img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 3px;
  background: #E8EFE9;
}

/* Decorative tape pin at top */
.pw-gallery-pin {
  position: absolute;
  left: 50%;
  top: -8px;
  width: 44px;
  height: 16px;
  background: linear-gradient(180deg, rgba(0,128,95,.32), rgba(0,128,95,.18));
  border-radius: 2px;
  transform: translateX(-50%) rotate(-2deg);
  box-shadow: 0 3px 8px rgba(0,128,95,.15);
  opacity: .85;
}
.pw-gallery-item--tilt-r .pw-gallery-pin {
  transform: translateX(-50%) rotate(3deg);
  background: linear-gradient(180deg, rgba(200,85,61,.30), rgba(200,85,61,.18));
  box-shadow: 0 3px 8px rgba(200,85,61,.15);
}

/* Persistent editorial number at the bottom of polaroid */
.pw-gallery-num {
  position: absolute;
  left: 14px;
  bottom: 18px;
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--brand);
  letter-spacing: -.03em;
}
.pw-gallery-num::after {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--brand);
  opacity: .35;
  margin-left: 8px;
  vertical-align: middle;
  transform: translateY(-2px);
}

/* Typographic quote-card woven into the masonry */
.pw-gallery-card {
  break-inside: avoid;
}
.pw-gallery-quote {
  position: relative;
  margin: 0;
  padding: 36px 28px 32px;
  background: linear-gradient(160deg, #FFFEFA 0%, #F5F0E6 100%);
  border-radius: 6px;
  box-shadow:
    0 14px 32px -10px rgba(11,18,32,.14),
    0 4px 10px rgba(11,18,32,.05),
    inset 0 0 0 1px rgba(200,85,61,.10);
}
.pw-gallery-quote-mark {
  position: absolute;
  top: 8px;
  left: 18px;
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-size: 5rem;
  line-height: 1;
  color: var(--brand);
  opacity: .18;
  user-select: none;
}
.pw-gallery-quote p {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  line-height: 1.2;
  letter-spacing: -.025em;
  color: var(--ink);
  margin: 0 0 22px;
  position: relative;
  z-index: 1;
}
.pw-gallery-quote footer {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid rgba(11,18,32,.08);
  padding-top: 14px;
}
.pw-gallery-quote-place {
  font-family: 'Manrope', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  color: var(--ink-2);
  letter-spacing: -.005em;
}
.pw-gallery-quote-meta {
  font-family: 'Manrope', sans-serif;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted-2);
}

/* Responsive */
@media (max-width: 991.98px) {
  .pw-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .pw-gallery-col { gap: 24px; }
  /* Re-balance: drop the lone 3rd col into the others */
  .pw-gallery-col:nth-child(3) { display: contents; }
}
@media (max-width: 767.98px) {
  .pw-gallery-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .pw-gallery-col { gap: 22px; }
  .pw-gallery-item--tilt-l,
  .pw-gallery-item--tilt-r { transform: none; }
  .pw-gallery-polaroid { padding: 10px 10px 44px; }
  .pw-gallery-num { font-size: 1.3rem; bottom: 14px; left: 12px; }
  .pw-gallery-quote { padding: 28px 22px 24px; }
}

/* ============================================================
   PARTNER BAND — Editorial CTA
   ============================================================ */
.pw-partner-band { position: relative; }
.pw-partner-card {
  position: relative;
  background:
    radial-gradient(ellipse 60% 80% at 100% 100%, rgba(79,209,165,.18), transparent 65%),
    radial-gradient(ellipse 50% 60% at 0% 0%, rgba(0,128,95,.10), transparent 65%),
    linear-gradient(160deg, #FAFEFB 0%, #F0F8F3 100%);
  border: 1px solid rgba(0,128,95,.12);
  border-radius: 28px;
  padding: 56px 56px 48px;
  box-shadow:
    0 24px 56px -18px rgba(11,18,32,.10),
    0 4px 12px rgba(11,18,32,.04);
  overflow: hidden;
  isolation: isolate;
}
.pw-partner-grid {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 56px;
  align-items: center;
}

.pw-partner-text .pw-h2 em {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.pw-partner-text .pw-sub { max-width: 520px; }

.pw-partner-cta { display: flex; flex-wrap: wrap; gap: 12px; }

.pw-partner-ways {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pw-partner-way {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 20px;
  background: rgba(255,255,255,.78);
  -webkit-backdrop-filter: saturate(160%) blur(12px);
  backdrop-filter: saturate(160%) blur(12px);
  border: 1px solid rgba(11,18,32,.06);
  border-radius: 16px;
  transition: transform .3s cubic-bezier(.2,.8,.2,1), border-color .3s ease, box-shadow .3s ease;
}
.pw-partner-way:hover {
  transform: translateX(4px);
  border-color: rgba(0,128,95,.25);
  box-shadow: 0 10px 24px -10px rgba(11,18,32,.10);
}
.pw-partner-way-icon {
  font-size: 1.4rem;
  color: var(--brand);
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: rgba(0,128,95,.08);
}
.pw-partner-way h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: 1.08rem;
  line-height: 1.15;
  letter-spacing: -.018em;
  color: var(--ink);
  margin: 0 0 4px;
}
.pw-partner-way p {
  font-family: 'Manrope', sans-serif;
  font-size: .86rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.4;
}

@media (max-width: 991.98px) {
  .pw-partner-card { padding: 40px 32px; }
  .pw-partner-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
}
@media (max-width: 575.98px) {
  .pw-partner-card { padding: 32px 22px; border-radius: 22px; }
  .pw-partner-way { padding: 14px 16px; gap: 12px; }
  .pw-partner-way-icon { width: 38px; height: 38px; font-size: 1.15rem; }
}

/* ============================================================
   SUPPORT — Magazine spread: sticky aside + searchable FAQ
   ============================================================ */
.pw-support { position: relative; }

.pw-support-grid {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 80px;
  align-items: start;
}

/* ---------- LEFT: sticky aside ---------- */
.pw-support-aside { align-self: start; }
.pw-support-aside-inner {
  position: sticky;
  top: 110px;
  max-width: 420px;
}

.pw-support-headline {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: .98;
  letter-spacing: -.035em;
  color: var(--ink);
  margin: 16px 0 18px;
}
.pw-support-headline em {
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.pw-support-tagline {
  font-family: 'Manrope', sans-serif;
  font-size: 1.04rem;
  line-height: 1.6;
  color: var(--muted);
  margin: 0 0 28px;
  max-width: 360px;
}

.pw-support-contact {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pw-support-contact-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  background: rgba(255,255,255,.78);
  -webkit-backdrop-filter: saturate(170%) blur(14px);
  backdrop-filter: saturate(170%) blur(14px);
  border: 1px solid rgba(11,18,32,.06);
  border-radius: 14px;
  text-decoration: none;
  color: var(--ink-2);
  transition: background .2s ease, border-color .2s ease, transform .25s cubic-bezier(.2,.8,.2,1);
}
.pw-support-contact-item:hover {
  background: #FFFFFF;
  border-color: rgba(0,128,95,.22);
  transform: translateY(-2px);
  color: var(--ink);
}
.pw-support-contact-item > i:first-child {
  width: 40px; height: 40px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(0,128,95,.08);
  color: var(--brand);
  font-size: 1rem;
  flex-shrink: 0;
}
.pw-support-contact-item > div {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}
.pw-support-contact-label {
  font-family: 'Manrope', sans-serif;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted-2);
  margin-bottom: 2px;
}
.pw-support-contact-value {
  font-family: 'Manrope', sans-serif;
  font-size: .94rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -.005em;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.pw-support-contact-arrow {
  color: var(--muted-2);
  font-size: .85rem;
  opacity: .6;
  transition: opacity .25s ease, transform .25s cubic-bezier(.2,.8,.2,1), color .25s ease;
}
.pw-support-contact-item:hover .pw-support-contact-arrow {
  opacity: 1;
  color: var(--brand);
  transform: translate(2px, -2px);
}

.pw-support-meta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-top: 20px;
  border-top: 1px solid rgba(11,18,32,.08);
  font-family: 'Manrope', sans-serif;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brand);
}
.pw-support-meta-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--brand);
  opacity: .55;
}
.pw-support-meta-label { color: var(--brand); }

/* ---------- RIGHT: search + topics + FAQ ---------- */
.pw-support-content { min-width: 0; }

/* Search input */
.pw-support-search {
  position: relative;
  margin-bottom: 24px;
}
.pw-support-search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted-2);
  font-size: 1rem;
  pointer-events: none;
}
.pw-support-search-input {
  width: 100%;
  padding: 16px 48px 16px 46px;
  font-family: 'Manrope', sans-serif;
  font-size: .98rem;
  color: var(--ink);
  background: #FFFFFF;
  border: 1px solid rgba(11,18,32,.08);
  border-radius: 14px;
  outline: none;
  letter-spacing: -.005em;
  box-shadow: 0 1px 2px rgba(11,18,32,.03);
  transition: border-color .25s ease, box-shadow .25s ease;
}
.pw-support-search-input::placeholder { color: var(--muted-2); }
.pw-support-search-input:focus {
  border-color: var(--brand);
  box-shadow:
    0 0 0 4px rgba(0,128,95,.12),
    0 1px 2px rgba(11,18,32,.03);
}
.pw-support-search-clear {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  border: 0;
  background: transparent;
  color: var(--muted-2);
  cursor: pointer;
  font-size: .9rem;
  transition: background .2s ease, color .2s ease;
}
.pw-support-search-clear:hover {
  background: rgba(11,18,32,.06);
  color: var(--ink);
}
.pw-support-search-clear[hidden] { display: none; }

/* Topic chips */
.pw-topics {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0 0 24px;
}
.pw-topic {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #FFFFFF;
  border: 1px solid rgba(11,18,32,.08);
  color: var(--ink-2);
  font-family: 'Manrope', sans-serif;
  font-weight: 500;
  font-size: .85rem;
  padding: .5rem 1rem;
  border-radius: 999px;
  transition: all .2s ease;
  cursor: pointer;
}
.pw-topic:hover { border-color: var(--brand); color: var(--brand); }
.pw-topic.is-active {
  background: var(--brand);
  border-color: var(--brand);
  color: #FFFFFF;
}
.pw-topic i { font-size: .9rem; }

/* FAQ accordion */
.pw-faq { margin: 0; }
.pw-faq .accordion-item {
  border: 1px solid rgba(11,18,32,.07) !important;
  border-radius: 16px !important;
  margin-bottom: 10px;
  overflow: hidden;
  background: #FFFFFF;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.pw-faq .accordion-item:hover {
  border-color: rgba(0,128,95,.18) !important;
  box-shadow: 0 4px 14px rgba(11,18,32,.05);
}
.pw-faq .accordion-button {
  padding: 1.1rem 1.4rem;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  background: #FFFFFF;
  border-radius: 16px !important;
  letter-spacing: -.01em;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
}
.pw-faq .accordion-button:not(.collapsed) {
  color: var(--brand);
  background: rgba(0,128,95,.04);
  box-shadow: none;
}
.pw-faq .accordion-button:focus { box-shadow: none; }
.pw-faq-q { flex: 1; }
.pw-faq-topic {
  font-family: 'Manrope', sans-serif;
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--brand);
  background: rgba(0,128,95,.08);
  padding: .22rem .6rem;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}
.pw-faq .accordion-body {
  font-family: 'Manrope', sans-serif;
  font-size: .98rem;
  line-height: 1.7;
  color: var(--ink-2);
  padding: 0 1.4rem 1.4rem;
}
.pw-faq-item[hidden] { display: none; }

/* Empty state when search/topic yields no results */
.pw-support-empty {
  margin-top: 12px;
  padding: 36px 24px;
  text-align: center;
  background: rgba(255,255,255,.78);
  border: 1px dashed rgba(11,18,32,.12);
  border-radius: 18px;
}
.pw-support-empty[hidden] { display: none; }
.pw-support-empty i {
  font-size: 2rem;
  color: var(--brand);
  opacity: .7;
  margin-bottom: 10px;
  display: block;
}
.pw-support-empty h4 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: 1.2rem;
  color: var(--ink);
  margin: 0 0 6px;
}
.pw-support-empty p {
  font-family: 'Manrope', sans-serif;
  font-size: .94rem;
  color: var(--muted);
  margin: 0;
}

/* Still-stuck closing card */
.pw-support-still-stuck {
  margin-top: 32px;
  padding: 24px 26px;
  background: linear-gradient(160deg, #FAFEFB 0%, #F0F8F3 100%);
  border: 1px solid rgba(0,128,95,.12);
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.pw-support-still-stuck p {
  font-family: 'Manrope', sans-serif;
  font-size: .96rem;
  color: var(--ink-2);
  margin: 6px 0 0;
}
.pw-support-still-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  background: var(--brand);
  color: #FFFFFF;
  font-family: 'Manrope', sans-serif;
  font-weight: 600;
  font-size: .92rem;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 8px 20px -6px rgba(0,128,95,.35);
  transition: transform .25s ease, box-shadow .25s ease;
  white-space: nowrap;
}
.pw-support-still-cta:hover {
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px -6px rgba(0,128,95,.45);
}
.pw-support-still-cta i:last-child {
  font-size: .82rem;
  opacity: .8;
}

/* Responsive */
@media (max-width: 991.98px) {
  .pw-support-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .pw-support-aside-inner {
    position: static;
    max-width: 640px;
    margin-inline: auto;
    text-align: center;
  }
  .pw-support-contact-item { text-align: left; }
  .pw-support-meta { justify-content: center; }
}
@media (max-width: 575.98px) {
  .pw-support-still-stuck {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }
  .pw-faq-topic { display: none; }
  .pw-support-search-input { padding: 14px 44px 14px 44px; font-size: .94rem; }
}


.pw-cta-band {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding: 96px 0 88px;
  color: #F4FBF8;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, #0E2A1F 0%, transparent 60%),
    linear-gradient(180deg, #050D09 0%, #06110C 50%, #0A1F16 100%);
}
.pw-cta-bg {
  position: absolute; inset: 0; z-index: 0;
  pointer-events: none; overflow: hidden;
}
.pw-cta-aurora-1 {
  width: 540px; height: 540px;
  top: -180px; left: -120px;
  background: radial-gradient(circle, rgba(79,209,165,.35), transparent 65%);
  filter: blur(80px);
  animation: pwAuroraDrift 28s ease-in-out infinite;
}
.pw-cta-aurora-2 {
  width: 480px; height: 480px;
  bottom: -180px; right: -100px;
  background: radial-gradient(circle, rgba(248,183,154,.18), transparent 65%);
  filter: blur(80px);
  animation: pwAuroraDrift 32s ease-in-out infinite reverse;
}

.pw-cta-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 1;
}
.pw-cta-eyebrow {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  padding: .45rem 1rem;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  margin-bottom: 28px;
}
.pw-cta-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: clamp(2.2rem, 5vw, 4rem);
  line-height: 1.05;
  letter-spacing: -.035em;
  color: #FFFFFF;
  margin: 0;
}
.pw-cta-italic {
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: #4FD1A5;
}
.pw-cta-sub {
  font-family: 'Manrope', sans-serif;
  font-size: 1.08rem;
  line-height: 1.55;
  color: rgba(244,251,248,.72);
  margin: 22px auto 36px;
  max-width: 560px;
}

.pw-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.pw-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 14px 26px;
  border-radius: 16px;
  text-decoration: none;
  transition: transform .25s cubic-bezier(.2,.8,.2,1), box-shadow .25s ease, background .25s ease;
}
.pw-cta-btn i { font-size: 1.8rem; line-height: 1; }
.pw-cta-btn-small {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .05em;
  opacity: .8;
}
.pw-cta-btn-big {
  display: block;
  font-family: 'Manrope', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -.01em;
  margin-top: 1px;
}
.pw-cta-btn-primary {
  background: #FFFFFF;
  color: #051410;
  box-shadow: 0 14px 30px -8px rgba(255,255,255,.18);
}
.pw-cta-btn-primary:hover {
  color: #051410;
  transform: translateY(-2px);
  box-shadow: 0 20px 40px -10px rgba(255,255,255,.24);
}
.pw-cta-btn-ghost {
  background: rgba(255,255,255,.06);
  color: #F4FBF8;
  border: 1px solid rgba(255,255,255,.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.pw-cta-btn-ghost:hover {
  color: #F4FBF8;
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.24);
  transform: translateY(-2px);
}

/* ============================================================
   FOOTER — Editorial dark with sign-off
   ============================================================ */
.pw-footer {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(180deg, #050D09 0%, #030906 100%);
  color: rgba(244,251,248,.7);
  padding: 96px 0 28px;
}
.pw-footer-aurora {
  position: absolute;
  top: -200px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 400px;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(79,209,165,.18), transparent 65%);
  filter: blur(80px);
  z-index: 0;
  pointer-events: none;
}

/* Editorial sign-off line at the very top */
.pw-footer-signoff {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 40px;
  align-items: center;
  padding-bottom: 72px;
  margin-bottom: 64px;
  border-bottom: 1px solid rgba(244,251,248,.08);
}
.pw-footer-signoff-kicker {
  display: inline-block;
  font-family: 'Manrope', sans-serif;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(79,209,165,.65);
  margin-bottom: 14px;
}
.pw-footer-signoff-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  line-height: 1.1;
  letter-spacing: -.028em;
  color: #FFFFFF;
  margin: 0;
}
.pw-footer-signoff-title em {
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: #4FD1A5;
}
.pw-footer-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 22px;
  border-radius: 999px;
  background: rgba(79,209,165,.08);
  border: 1px solid rgba(79,209,165,.22);
  color: #F4FBF8;
  font-family: 'Manrope', sans-serif;
  font-size: .98rem;
  font-weight: 600;
  letter-spacing: -.005em;
  text-decoration: none;
  justify-self: end;
  transition: background .25s ease, border-color .25s ease, transform .25s ease;
}
.pw-footer-cta:hover {
  background: rgba(79,209,165,.14);
  border-color: rgba(79,209,165,.4);
  color: #FFFFFF;
  transform: translateY(-2px);
}
.pw-footer-cta i:first-child { color: #4FD1A5; font-size: 1.1rem; }
.pw-footer-cta-arrow { opacity: .7; font-size: .9rem; transition: transform .25s ease; }
.pw-footer-cta:hover .pw-footer-cta-arrow { transform: translate(2px, -2px); }

/* Brand + 3 link columns */
.pw-footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 2fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 64px;
}

.pw-footer-brand .pw-brand-dark { display: inline-flex; }
.pw-footer-brand .pw-logo-img-dark { height: 44px; }
.pw-footer-desc {
  font-family: 'Manrope', sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(244,251,248,.65);
  margin: 22px 0 28px;
  max-width: 380px;
}
.pw-footer-desc strong { color: #FFFFFF; font-weight: 600; }

.pw-footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.pw-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.pw-footer-contact i {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(79,209,165,.08);
  color: #4FD1A5;
  font-size: 1rem;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  border: 1px solid rgba(79,209,165,.12);
}
.pw-footer-contact > li > div { display: flex; flex-direction: column; min-width: 0; }
.pw-footer-c-label {
  font-family: 'Manrope', sans-serif;
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(244,251,248,.4);
  margin-bottom: 4px;
}
.pw-footer-contact a,
.pw-footer-c-value {
  font-family: 'Manrope', sans-serif;
  font-size: .95rem;
  color: rgba(244,251,248,.85);
  text-decoration: none;
  line-height: 1.5;
  transition: color .2s ease;
  letter-spacing: -.005em;
}
.pw-footer-contact a:hover { color: #4FD1A5; }

.pw-footer-links-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.pw-footer-col h6 {
  font-family: 'Manrope', sans-serif;
  color: #FFFFFF;
  font-weight: 600;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin: 0 0 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(244,251,248,.08);
}
.pw-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.pw-footer-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Manrope', sans-serif;
  color: rgba(244,251,248,.62);
  text-decoration: none;
  font-size: .94rem;
  letter-spacing: -.005em;
  transition: color .25s ease, transform .25s ease;
}
.pw-footer-links a::before {
  content: "";
  width: 0;
  height: 1px;
  background: #4FD1A5;
  transition: width .25s ease;
}
.pw-footer-links a:hover {
  color: #4FD1A5;
  transform: translateX(4px);
}
.pw-footer-links a:hover::before { width: 10px; }

/* Bottom bar */
.pw-footer-bottom {
  border-top: 1px solid rgba(244,251,248,.08);
  padding-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-family: 'Manrope', sans-serif;
  font-size: .82rem;
  color: rgba(244,251,248,.5);
  letter-spacing: -.005em;
}
.pw-footer-bottom-left {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}
.pw-footer-divider {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(244,251,248,.25);
}

.pw-socials {
  display: flex;
  gap: 8px;
}
.pw-socials a {
  width: 38px; height: 38px;
  border-radius: 12px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  display: grid;
  place-items: center;
  color: rgba(244,251,248,.75);
  text-decoration: none;
  font-size: .98rem;
  transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}
.pw-socials a:hover {
  background: rgba(79,209,165,.12);
  border-color: rgba(79,209,165,.32);
  color: #4FD1A5;
  transform: translateY(-2px);
}

/* Big ghost wordmark sign-off — bottom decoration */
.pw-footer-wordmark {
  position: relative;
  margin-top: 48px;
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  font-size: clamp(5rem, 18vw, 18rem);
  line-height: .85;
  letter-spacing: -.05em;
  text-align: center;
  color: rgba(79,209,165,.06);
  user-select: none;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
  white-space: nowrap;
}

@media (max-width: 991.98px) {
  .pw-footer { padding: 72px 0 28px; }
  .pw-footer-signoff {
    grid-template-columns: 1fr;
    gap: 28px;
    padding-bottom: 56px;
    margin-bottom: 48px;
  }
  .pw-footer-cta { justify-self: start; }
  .pw-footer-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    margin-bottom: 48px;
  }
  .pw-footer-links-wrap {
    grid-template-columns: repeat(3, 1fr);
    gap: 36px 20px;
  }
}
@media (max-width: 575.98px) {
  .pw-footer { padding: 56px 0 24px; }
  .pw-footer-signoff { padding-bottom: 44px; margin-bottom: 40px; }
  .pw-footer-links-wrap {
    grid-template-columns: 1fr 1fr;
    gap: 32px 16px;
  }
  .pw-footer-col:last-child { grid-column: span 2; }
  .pw-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .pw-footer-wordmark { margin-top: 32px; }
}

/* ============================================================
   Responsive tweaks
   ============================================================ */
@media (max-width: 991.98px) {
  .pw-nav-cta { margin-top: 14px; }
  .pw-business { padding: 32px; }
  .pw-quote { font-size: 1.15rem; }
  .pw-ceo-card { padding: 40px 22px 24px; }
  .pw-ceo-badge { position: static; margin: 0 auto 12px; }
}
@media (max-width: 575.98px) {
  .pw-tile { height: 180px; }
  .pw-tile-emoji { font-size: 2.4rem; }
  .pw-display { font-size: 2.4rem; }
}

/* ============================================================
   MOTION SYSTEM — universal scroll-reveal + stagger
   ============================================================ */

/* Section reveal: a tagged .pw-reveal fades up when it enters view.
   NOTE: opacity:0 only applies BEFORE .is-revealed is added — JS does that
   when the IntersectionObserver fires. If JS fails, content stays visible
   because we don't set opacity:0 on bare .pw-section. */
.pw-reveal {
  transition:
    opacity .9s cubic-bezier(.2,.7,.2,1),
    transform .9s cubic-bezier(.2,.7,.2,1);
  will-change: opacity, transform;
}
.pw-reveal:not(.is-revealed) {
  opacity: 0;
  transform: translateY(28px);
}

/* Per-item stagger inside a section */
.pw-reveal-child {
  transition:
    opacity .7s cubic-bezier(.2,.7,.2,1) var(--reveal-delay, 0s),
    transform .7s cubic-bezier(.2,.7,.2,1) var(--reveal-delay, 0s);
  will-change: opacity, transform;
}
.pw-reveal-child:not(.is-revealed) {
  opacity: 0;
  transform: translateY(20px);
}

/* Section headings get a slightly slower entrance — only when inside an
   unrevealed section. Default state: visible. */
.pw-section-head {
  transition: opacity .8s cubic-bezier(.2,.7,.2,1), transform .8s cubic-bezier(.2,.7,.2,1);
  transition-delay: .1s;
}
.pw-reveal:not(.is-revealed) .pw-section-head {
  opacity: 0;
  transform: translateY(16px);
}

/* Image curtain reveal — clip-path wipes images in when section enters view.
   Default: fully visible (in case JS fails). Only clipped when ancestor is
   .pw-reveal but not yet .is-revealed. */
.pw-gallery-item img,
.pw-leader-photo-frame img {
  transition: clip-path 1.1s cubic-bezier(.2,.7,.2,1) .1s, transform .8s cubic-bezier(.2,.8,.2,1);
}
.pw-reveal:not(.is-revealed) .pw-gallery-item img,
.pw-reveal:not(.is-revealed) .pw-leader-photo-frame img {
  clip-path: inset(0 0 100% 0);
}

/* Reduce motion: instant reveal, no transforms */
@media (prefers-reduced-motion: reduce) {
  .pw-reveal,
  .pw-reveal-child,
  .pw-section-head {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .pw-gallery-item img,
  .pw-leader-photo-frame img {
    clip-path: none;
    transition: none;
  }
}

/* Pause ambient animations when user prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  .pw-aurora,
  .pw-orb,
  .pw-band-track,
  .pw-marquee-track,
  .pw-dot,
  .pw-hero-card-halo,
  .pw-phone-halo,
  .pw-bento-cell i { animation: none !important; }
}

/* ============================================================
   LEGAL PAGES — Privacy + Terms
   ============================================================ */
.pw-legal {
  position: relative;
  background:
    radial-gradient(ellipse 70% 50% at 50% 0%, #ECF6EF 0%, transparent 65%),
    linear-gradient(180deg, #FBFDFB 0%, #FFFFFF 60%, #F6FAF7 100%);
}

/* Hero band at top */
.pw-legal-hero {
  position: relative;
  padding: 80px 0 56px;
  text-align: center;
  border-bottom: 1px solid rgba(11,18,32,.06);
}
.pw-legal-title {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: .98;
  letter-spacing: -.038em;
  color: var(--ink);
  margin: 14px 0 18px;
}
.pw-legal-title em {
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "opsz" 144, "SOFT" 100;
}
.pw-legal-meta {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: 'Manrope', sans-serif;
  font-size: .82rem;
  color: var(--muted);
  margin: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.pw-legal-meta strong {
  color: var(--ink-2);
  font-weight: 600;
}
.pw-legal-meta-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--brand);
  opacity: .5;
}

/* Article body */
.pw-legal-body {
  max-width: 760px;
  padding: 64px 1rem 96px;
  font-family: 'Manrope', sans-serif;
  font-size: 1.04rem;
  line-height: 1.75;
  color: var(--ink-2);
  letter-spacing: -.003em;
}
.pw-legal-body strong { color: var(--ink); font-weight: 600; }
.pw-legal-body a {
  color: var(--brand);
  text-decoration: underline;
  text-decoration-color: rgba(0,128,95,.3);
  text-underline-offset: 3px;
  transition: color .2s ease, text-decoration-color .2s ease;
}
.pw-legal-body a:hover {
  color: var(--brand-600);
  text-decoration-color: var(--brand);
}

.pw-legal-lede {
  font-size: 1.18rem;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 28px;
}

.pw-legal-note {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 18px 22px;
  margin: 32px 0 44px;
  background: rgba(245,158,11,.06);
  border: 1px solid rgba(245,158,11,.22);
  border-radius: 14px;
  font-size: .94rem;
  line-height: 1.55;
  color: var(--ink-2);
}
.pw-legal-note i {
  color: #B7791F;
  font-size: 1.15rem;
  flex-shrink: 0;
  margin-top: 1px;
}

.pw-legal-body h2 {
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 500;
  font-variation-settings: "opsz" 144, "SOFT" 30;
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  line-height: 1.15;
  letter-spacing: -.024em;
  color: var(--ink);
  margin: 48px 0 14px;
  scroll-margin-top: 96px;
}
.pw-legal-body h2:first-of-type { margin-top: 32px; }

.pw-legal-body p {
  margin: 0 0 18px;
}
.pw-legal-body ul,
.pw-legal-body ol {
  margin: 0 0 20px;
  padding-left: 24px;
}
.pw-legal-body li {
  margin-bottom: 8px;
}
.pw-legal-body ul li::marker { color: var(--brand); }
.pw-legal-body ol li::marker {
  color: var(--brand);
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-weight: 500;
}

/* Contact list at bottom */
.pw-legal-contact {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.pw-legal-contact li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #FFFFFF;
  border: 1px solid rgba(11,18,32,.06);
  border-radius: 12px;
  font-size: .95rem;
}
.pw-legal-contact li::marker { content: none; }
.pw-legal-contact i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(0,128,95,.08);
  color: var(--brand);
  flex-shrink: 0;
}
.pw-legal-contact a { color: var(--ink); text-decoration: none; }
.pw-legal-contact a:hover { color: var(--brand); }

.pw-legal-footer-note {
  margin-top: 48px;
  padding: 28px 0 0;
  border-top: 1px solid rgba(11,18,32,.08);
  text-align: center;
}
.pw-legal-footer-note p {
  font-size: .92rem;
  color: var(--muted);
  margin: 0;
}
.pw-legal-footer-note a {
  font-family: 'Fraunces', serif;
  font-style: italic;
  font-variation-settings: "opsz" 144, "SOFT" 100;
  color: var(--brand);
  font-size: 1rem;
  margin-left: 6px;
  text-decoration: none;
}
.pw-legal-footer-note a:hover { text-decoration: underline; }

@media (max-width: 575.98px) {
  .pw-legal-hero { padding: 56px 0 40px; }
  .pw-legal-body { padding: 40px 1rem 64px; font-size: .98rem; }
  .pw-legal-lede { font-size: 1.06rem; }
  .pw-legal-body h2 { font-size: 1.3rem; margin: 36px 0 12px; }
  .pw-legal-note { padding: 14px 16px; font-size: .9rem; }
}
