:root {
  --pw-sub-ink: #171918;
  --pw-sub-ink-soft: #5f625f;
  --pw-sub-cream: #f7f4ed;
  --pw-sub-cream-deep: #eee9df;
  --pw-sub-paper: #fffdf9;
  --pw-sub-line: rgba(23, 25, 24, .13);
  --pw-sub-sage: #657d73;
  --pw-sub-sage-light: #b8d6ca;
  --pw-sub-coral: #d4776b;
  --pw-sub-serif: 'EB Garamond', Georgia, 'Times New Roman', serif;
  --pw-sub-sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--pw-sub-cream);
  color: var(--pw-sub-ink);
  font-family: var(--pw-sub-sans);
  line-height: 1.5;
}

body, button, a { -webkit-font-smoothing: antialiased; }

.pw-subpage, .pw-subpage *, .pw-subpage *::before, .pw-subpage *::after { box-sizing: border-box; }
.pw-subpage { overflow: clip; background: var(--pw-sub-cream); }
.pw-subpage img { display: block; max-width: 100%; }
.pw-subpage a { color: inherit; }
.pw-subpage .pw-wrap { width: min(1280px, calc(100% - 56px)); margin-inline: auto; }

.pw-subpage .nav {
  position: sticky;
  z-index: 80;
  top: 0;
  border-bottom: 1px solid rgba(23, 25, 24, .08);
  background: rgba(247, 244, 237, .88);
  backdrop-filter: blur(20px) saturate(120%);
  -webkit-backdrop-filter: blur(20px) saturate(120%);
  transition: background .25s ease, box-shadow .25s ease;
}

.pw-subpage .nav.pw-nav-scrolled {
  background: rgba(247, 244, 237, .97);
  box-shadow: 0 12px 35px rgba(23, 25, 24, .06);
}

.pw-subpage .pw-nav-inner {
  display: flex;
  width: min(1280px, calc(100% - 56px));
  min-height: 70px;
  align-items: center;
  gap: 28px;
  margin-inline: auto;
}

.pw-subpage .pw-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--pw-sub-ink);
  font: 600 23px/1 var(--pw-sub-serif);
  letter-spacing: -.55px;
  text-decoration: none;
}

.pw-subpage .pw-brand img { width: 31px; height: 31px; border-radius: 50%; }
.pw-subpage .pw-nav-links { display: flex; align-items: center; gap: 27px; margin-left: auto; }
.pw-subpage .pw-nav-links a { color: rgba(23, 25, 24, .7); font-size: 13px; font-weight: 610; text-decoration: none; }
.pw-subpage .pw-nav-links a:hover { color: var(--pw-sub-ink); }
.pw-subpage .pw-nav-actions { display: flex; align-items: center; gap: 10px; }

.pw-subpage .pw-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 0 21px;
  font-size: 14px;
  font-weight: 690;
  letter-spacing: -.15px;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, box-shadow .2s ease;
}

.pw-subpage .pw-button:hover { transform: translateY(-1px); }
.pw-subpage .pw-button--dark { background: var(--pw-sub-ink); color: #fff; box-shadow: 0 10px 28px rgba(23, 25, 24, .14); }
.pw-subpage .pw-button--dark:hover { background: #2a2d2b; box-shadow: 0 14px 34px rgba(23, 25, 24, .19); }
.pw-subpage .pw-button--light { border-color: rgba(255, 255, 255, .55); background: rgba(255, 255, 255, .78); color: var(--pw-sub-ink); backdrop-filter: blur(12px); }
.pw-subpage .pw-button--line { border-color: var(--pw-sub-line); background: rgba(255, 255, 255, .16); color: var(--pw-sub-ink); }

.pw-subpage .pw-kicker {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-bottom: 24px;
  color: var(--pw-sub-sage);
  font-size: 10px;
  font-weight: 780;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.pw-subpage .pw-kicker::before { width: 26px; height: 1px; background: currentColor; content: ''; }
.pw-subpage .pw-display { margin: 0; font-family: var(--pw-sub-serif); font-weight: 600; letter-spacing: -2.3px; line-height: .98; }

.pw-subpage .gh-hero {
  position: relative;
  min-height: max(760px, calc(100svh - 70px));
  isolation: isolate;
  overflow: hidden;
}

.pw-subpage .gh-hero__media, .pw-subpage .gh-story__media, .pw-subpage .gh-final__media { position: absolute; z-index: -3; inset: 0; }
.pw-subpage .gh-hero__media img, .pw-subpage .gh-story__media img, .pw-subpage .gh-final__media img { width: 100%; height: 100%; object-fit: cover; }
.pw-subpage .gh-hero__media img { object-position: center center; }

.pw-subpage .gh-hero::before {
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247, 244, 237, .99) 0%, rgba(247, 244, 237, .94) 35%, rgba(247, 244, 237, .55) 58%, rgba(247, 244, 237, .04) 83%),
    linear-gradient(0deg, rgba(23, 25, 24, .18), transparent 35%);
  content: '';
}

.pw-subpage .gh-hero__inner {
  display: grid;
  min-height: max(760px, calc(100svh - 70px));
  grid-template-columns: minmax(0, 1.08fr) minmax(350px, .82fr);
  align-items: center;
  gap: 55px;
  padding-block: 64px;
}

.pw-subpage .gh-hero__copy { position: relative; z-index: 2; max-width: 680px; }
.pw-subpage .gh-hero h1 { max-width: 650px; font-size: clamp(58px, 6vw, 86px); }
.pw-subpage .gh-hero h1 em { color: var(--pw-sub-sage); font-weight: 500; }
.pw-subpage .gh-hero__lead { max-width: 610px; margin: 26px 0 31px; color: rgba(23, 25, 24, .68); font-size: 17px; line-height: 1.7; }
.pw-subpage .gh-hero__actions { display: flex; flex-wrap: wrap; gap: 11px; }
.pw-subpage .gh-hero__note { display: flex; flex-wrap: wrap; gap: 8px 18px; margin-top: 22px; color: rgba(23, 25, 24, .55); font-size: 12px; font-weight: 580; }
.pw-subpage .gh-hero__note span { display: inline-flex; align-items: center; gap: 7px; }
.pw-subpage .gh-hero__note i { width: 5px; height: 5px; border-radius: 50%; background: var(--pw-sub-sage); }

.pw-subpage .gh-hero__ui { position: relative; min-height: 590px; }
.pw-subpage .gh-product-frame {
  position: absolute;
  right: 12px;
  bottom: 18px;
  width: 392px;
  height: 560px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 38px;
  background: rgba(255, 255, 255, .21);
  box-shadow: 0 42px 90px rgba(20, 23, 21, .28), inset 0 1px rgba(255, 255, 255, .62);
  padding: 12px;
  transform: rotate(.65deg);
  backdrop-filter: blur(15px) saturate(118%);
  -webkit-backdrop-filter: blur(15px) saturate(118%);
}

.pw-subpage .gh-product-frame__screen {
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .3);
  border-radius: 28px;
  background: rgba(20, 25, 22, .55);
  color: #fff;
  padding: 25px;
  text-shadow: 0 1px 9px rgba(0, 0, 0, .18);
}

.pw-subpage .gh-appbar { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 10px; margin-bottom: 18px; }
.pw-subpage .gh-appmark { display: grid; width: 29px; height: 29px; place-items: center; border: 1px solid rgba(255, 255, 255, .38); border-radius: 50%; background: rgba(255, 255, 255, .12); font: 600 16px/1 var(--pw-sub-serif); }
.pw-subpage .gh-appbar strong { overflow: hidden; font-size: 14px; letter-spacing: -.2px; text-overflow: ellipsis; white-space: nowrap; }
.pw-subpage .gh-live { display: flex; align-items: center; gap: 6px; color: rgba(255, 255, 255, .74); font-size: 9px; font-weight: 700; }
.pw-subpage .gh-live i { width: 6px; height: 6px; border-radius: 50%; background: #9ed0bd; box-shadow: 0 0 0 4px rgba(158, 208, 189, .13); }
.pw-subpage .gh-micro { color: rgba(255, 255, 255, .58); font-size: 8px; font-weight: 720; letter-spacing: .65px; text-transform: uppercase; }
.pw-subpage .gh-welcome { margin-bottom: 12px; border: 1px solid rgba(255, 255, 255, .25); border-radius: 20px; background: rgba(13, 17, 15, .16); padding: 17px; }
.pw-subpage .gh-welcome h3 { margin: 7px 0 8px; font: 600 24px/1 var(--pw-sub-serif); letter-spacing: -.5px; }
.pw-subpage .gh-welcome p { margin: 0; color: rgba(255, 255, 255, .72); font-size: 10.5px; line-height: 1.5; }
.pw-subpage .gh-modules { display: grid; gap: 7px; }
.pw-subpage .gh-module { display: grid; min-height: 49px; grid-template-columns: 29px 1fr auto; align-items: center; gap: 10px; border-bottom: 1px solid rgba(255, 255, 255, .14); padding: 1px 2px 8px; }
.pw-subpage .gh-module > span { display: grid; width: 28px; height: 28px; place-items: center; border: 1px solid rgba(255, 255, 255, .2); border-radius: 9px; background: rgba(255, 255, 255, .08); font-size: 12px; }
.pw-subpage .gh-module strong, .pw-subpage .gh-module small { display: block; }
.pw-subpage .gh-module strong { margin-bottom: 3px; font-size: 10.5px; }
.pw-subpage .gh-module small { overflow: hidden; max-width: 220px; color: rgba(255, 255, 255, .5); font-size: 8.5px; text-overflow: ellipsis; white-space: nowrap; }
.pw-subpage .gh-module b { color: rgba(255, 255, 255, .55); font-size: 17px; font-weight: 400; }
.pw-subpage .gh-theme { display: flex; align-items: center; justify-content: space-between; padding: 14px 2px 11px; }
.pw-subpage .gh-swatches { display: flex; gap: 8px; }
.pw-subpage .gh-swatches i { width: 15px; height: 15px; border: 4px solid rgba(255, 255, 255, .27); border-radius: 50%; background: #6fa796; }
.pw-subpage .gh-swatches i:nth-child(2) { background: #a75278; }
.pw-subpage .gh-swatches i:nth-child(3) { background: #7a9670; box-shadow: 0 0 0 2px #fff; }
.pw-subpage .gh-swatches i:nth-child(4) { background: #c2a66e; }
.pw-subpage .gh-share { display: flex; align-items: center; justify-content: space-between; border-radius: 14px; background: #fff; color: var(--pw-sub-ink); padding: 11px 13px; font-size: 10.5px; font-weight: 740; text-shadow: none; }
.pw-subpage .gh-ui-caption { position: absolute; right: 18px; bottom: -16px; color: rgba(255, 255, 255, .85); font-size: 10px; font-weight: 650; letter-spacing: .5px; text-transform: uppercase; }

.pw-subpage .gh-proof { position: relative; z-index: 4; border-bottom: 1px solid var(--pw-sub-line); background: var(--pw-sub-paper); }
.pw-subpage .gh-proof__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.pw-subpage .gh-proof__item { min-height: 124px; border-right: 1px solid var(--pw-sub-line); padding: 27px 25px; }
.pw-subpage .gh-proof__item:first-child { border-left: 1px solid var(--pw-sub-line); }
.pw-subpage .gh-proof__item strong { display: block; margin-bottom: 5px; font: 600 29px/1 var(--pw-sub-serif); letter-spacing: -.8px; }
.pw-subpage .gh-proof__item span { color: rgba(23, 25, 24, .55); font-size: 12px; }

.pw-subpage .gh-intro { padding-block: 118px 96px; }
.pw-subpage .gh-intro__grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: 90px; align-items: start; }
.pw-subpage .gh-intro h2 { max-width: 820px; font-size: clamp(48px, 5.4vw, 75px); }
.pw-subpage .gh-intro__lead { max-width: 690px; margin: 28px 0 0; color: rgba(23, 25, 24, .62); font-size: 17px; line-height: 1.75; }

.pw-subpage .gh-ledger { display: grid; grid-template-columns: repeat(2, 1fr); border-top: 1px solid var(--pw-sub-line); }
.pw-subpage .gh-ledger__item { display: grid; min-height: 210px; grid-template-columns: 56px 1fr; gap: 22px; border-bottom: 1px solid var(--pw-sub-line); padding: 36px 38px 36px 0; }
.pw-subpage .gh-ledger__item:nth-child(odd) { border-right: 1px solid var(--pw-sub-line); }
.pw-subpage .gh-ledger__item:nth-child(even) { padding-left: 38px; }
.pw-subpage .gh-ledger__index { color: var(--pw-sub-sage); font: 600 13px/1 var(--pw-sub-serif); }
.pw-subpage .gh-ledger h3 { margin: 0 0 10px; font: 600 27px/1.05 var(--pw-sub-serif); letter-spacing: -.65px; }
.pw-subpage .gh-ledger p { max-width: 440px; margin: 0; color: rgba(23, 25, 24, .58); font-size: 14px; line-height: 1.65; }

.pw-subpage .gh-scroll-story { position: relative; height: 170svh; min-height: 1260px; margin-top: 112px; }
.pw-subpage .phone-scroll-story__sticky { position: sticky; top: 70px; height: calc(100svh - 70px); min-height: 720px; isolation: isolate; overflow: hidden; }
.pw-subpage .gh-story__media img { object-position: center center; transform: translateY(var(--story-media-y, 0)); }
.pw-subpage .gh-scroll-story .phone-scroll-story__sticky::after { position: absolute; z-index: -2; inset: 0; background: linear-gradient(90deg, rgba(13, 16, 15, .94) 0%, rgba(13, 16, 15, .78) 42%, rgba(13, 16, 15, .13) 74%, rgba(13, 16, 15, .28) 100%); content: ''; }
.pw-subpage .gh-story__inner { display: grid; height: 100%; grid-template-columns: 1fr .82fr; align-items: center; gap: 70px; }
.pw-subpage .gh-story__copy { max-width: 560px; color: #fff; }
.pw-subpage .gh-story__copy .pw-kicker { color: var(--pw-sub-sage-light); }
.pw-subpage .gh-story__copy h2 { font-size: clamp(51px, 5.2vw, 75px); }
.pw-subpage .gh-story__copy p { max-width: 490px; margin: 26px 0 0; color: rgba(255, 255, 255, .68); font-size: 16px; line-height: 1.75; }
.pw-subpage .gh-seat-shell { position: relative; justify-self: end; width: 390px; height: 585px; border: 1px solid rgba(255, 255, 255, .74); border-radius: 40px; background: rgba(255, 255, 255, .24); box-shadow: 0 40px 100px rgba(0, 0, 0, .3); padding: 12px; transform: translateY(var(--phone-shell-y, 14px)) rotate(var(--phone-shell-rotate, 1deg)); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
.pw-subpage .gh-seat-screen { height: 100%; overflow: hidden; border-radius: 29px; background: rgba(252, 250, 245, .93); color: var(--pw-sub-ink); }
.pw-subpage .gh-seat-appbar { display: grid; height: 64px; grid-template-columns: auto 1fr auto; align-items: center; gap: 10px; border-bottom: 1px solid rgba(23, 25, 24, .09); padding: 0 20px; }
.pw-subpage .gh-seat-appbar span:first-child { font-size: 24px; }
.pw-subpage .gh-seat-appbar strong { text-align: center; font-size: 13px; }
.pw-subpage .gh-seat-appbar b { color: var(--pw-sub-sage); font-size: 9px; text-transform: uppercase; }
.pw-subpage .gh-seat-content { padding: 24px; transform: translateY(var(--timeline-ui-y, 0)); will-change: transform; }
.pw-subpage .gh-seat-content h3 { margin: 0 0 6px; font: 600 30px/1 var(--pw-sub-serif); letter-spacing: -.8px; }
.pw-subpage .gh-seat-content > p { margin: 0 0 22px; color: rgba(23, 25, 24, .55); font-size: 11px; }
.pw-subpage .gh-search { display: flex; align-items: center; gap: 9px; border: 1px solid rgba(23, 25, 24, .11); border-radius: 13px; background: #fff; padding: 12px 14px; color: rgba(23, 25, 24, .5); font-size: 11px; }
.pw-subpage .gh-match { display: grid; grid-template-columns: 38px 1fr auto; align-items: center; gap: 11px; margin-top: 12px; border: 1px solid rgba(101, 125, 115, .24); border-radius: 15px; background: rgba(101, 125, 115, .08); padding: 13px; }
.pw-subpage .gh-avatar { display: grid; width: 38px; height: 38px; place-items: center; border-radius: 50%; background: var(--pw-sub-sage); color: #fff; font-size: 10px; font-weight: 750; }
.pw-subpage .gh-match strong, .pw-subpage .gh-match small { display: block; }
.pw-subpage .gh-match strong { font-size: 12px; }
.pw-subpage .gh-match small { margin-top: 2px; color: rgba(23, 25, 24, .5); font-size: 9px; }
.pw-subpage .gh-match b { font-size: 17px; font-weight: 400; }
.pw-subpage .gh-table-result { margin-top: 14px; border-radius: 19px; background: var(--pw-sub-ink); color: #fff; padding: 20px; }
.pw-subpage .gh-table-result span { color: rgba(255, 255, 255, .55); font-size: 8px; font-weight: 700; letter-spacing: .9px; text-transform: uppercase; }
.pw-subpage .gh-table-result h4 { margin: 8px 0 5px; font: 600 29px/1 var(--pw-sub-serif); }
.pw-subpage .gh-table-result p { margin: 0; color: rgba(255, 255, 255, .62); font-size: 10px; }
.pw-subpage .gh-day-card { margin-top: 16px; border-top: 1px solid rgba(23, 25, 24, .1); padding-top: 17px; }
.pw-subpage .gh-day-card > span { color: var(--pw-sub-sage); font-size: 8px; font-weight: 700; letter-spacing: .8px; text-transform: uppercase; }
.pw-subpage .gh-day-event { display: grid; grid-template-columns: 42px 8px 1fr; gap: 8px; align-items: center; padding: 12px 0; border-bottom: 1px solid rgba(23, 25, 24, .08); }
.pw-subpage .gh-day-event time { font-size: 9px; font-weight: 700; }
.pw-subpage .gh-day-event i { width: 7px; height: 7px; border-radius: 50%; background: var(--pw-sub-sage); box-shadow: 0 0 0 4px rgba(101, 125, 115, .1); }
.pw-subpage .gh-day-event strong, .pw-subpage .gh-day-event small { display: block; }
.pw-subpage .gh-day-event strong { font-size: 10px; }
.pw-subpage .gh-day-event small { margin-top: 2px; color: rgba(23, 25, 24, .47); font-size: 8px; }

.pw-subpage .gh-process { padding-block: 125px 112px; }
.pw-subpage .gh-process__head { display: grid; grid-template-columns: .75fr 1.25fr; gap: 80px; align-items: end; margin-bottom: 67px; }
.pw-subpage .gh-process h2 { max-width: 780px; font-size: clamp(48px, 5vw, 70px); }
.pw-subpage .gh-flow { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--pw-sub-line); }
.pw-subpage .gh-flow__step { position: relative; min-height: 245px; border-right: 1px solid var(--pw-sub-line); padding: 31px 29px 30px 0; }
.pw-subpage .gh-flow__step + .gh-flow__step { padding-left: 29px; }
.pw-subpage .gh-flow__step:last-child { border-right: 0; }
.pw-subpage .gh-flow__step::before { position: absolute; top: -5px; left: 0; width: 9px; height: 9px; border-radius: 50%; background: var(--pw-sub-sage); box-shadow: 0 0 0 6px var(--pw-sub-cream); content: ''; }
.pw-subpage .gh-flow__step + .gh-flow__step::before { left: 29px; }
.pw-subpage .gh-flow__step span { color: rgba(23, 25, 24, .38); font: 600 12px/1 var(--pw-sub-serif); }
.pw-subpage .gh-flow__step h3 { margin: 31px 0 11px; font: 600 26px/1.05 var(--pw-sub-serif); letter-spacing: -.6px; }
.pw-subpage .gh-flow__step p { margin: 0; color: rgba(23, 25, 24, .55); font-size: 13px; line-height: 1.65; }

.pw-subpage .gh-connected { background: #111513; color: #fff; padding-block: 122px; }
.pw-subpage .gh-connected__grid { display: grid; grid-template-columns: 1fr .92fr; align-items: center; gap: 95px; }
.pw-subpage .gh-connected .pw-kicker { color: var(--pw-sub-sage-light); }
.pw-subpage .gh-connected h2 { max-width: 660px; font-size: clamp(50px, 5vw, 72px); }
.pw-subpage .gh-connected__copy p { max-width: 545px; margin: 26px 0 0; color: rgba(255, 255, 255, .6); font-size: 16px; line-height: 1.75; }
.pw-subpage .gh-sync-board { border: 1px solid rgba(255, 255, 255, .17); border-radius: 32px; background: rgba(255, 255, 255, .065); box-shadow: 0 38px 90px rgba(0, 0, 0, .28); padding: 16px; backdrop-filter: blur(16px); }
.pw-subpage .gh-sync-row { display: grid; min-height: 88px; grid-template-columns: 42px 1fr auto; align-items: center; gap: 14px; border-bottom: 1px solid rgba(255, 255, 255, .1); padding: 0 17px; }
.pw-subpage .gh-sync-row:last-child { border: 0; }
.pw-subpage .gh-sync-icon { display: grid; width: 40px; height: 40px; place-items: center; border: 1px solid rgba(255, 255, 255, .13); border-radius: 13px; background: rgba(255, 255, 255, .07); font-size: 16px; }
.pw-subpage .gh-sync-row strong, .pw-subpage .gh-sync-row small { display: block; }
.pw-subpage .gh-sync-row strong { font-size: 13px; }
.pw-subpage .gh-sync-row small { margin-top: 4px; color: rgba(255, 255, 255, .47); font-size: 10px; }
.pw-subpage .gh-sync-row b { display: flex; align-items: center; gap: 6px; color: #a7d2c1; font-size: 9px; text-transform: uppercase; }
.pw-subpage .gh-sync-row b::before { width: 6px; height: 6px; border-radius: 50%; background: #91c4b0; content: ''; }

.pw-subpage .gh-proof-quote { padding-block: 124px 112px; }
.pw-subpage .gh-quote { display: grid; grid-template-columns: 1.4fr .6fr; gap: 85px; align-items: end; border-top: 1px solid var(--pw-sub-line); border-bottom: 1px solid var(--pw-sub-line); padding-block: 57px; }
.pw-subpage .gh-quote blockquote { margin: 0; font: italic 500 clamp(35px, 4vw, 55px)/1.08 var(--pw-sub-serif); letter-spacing: -1.4px; }
.pw-subpage .gh-quote cite { display: block; color: rgba(23, 25, 24, .55); font-size: 12px; font-style: normal; line-height: 1.6; }
.pw-subpage .gh-next { display: grid; grid-template-columns: 1fr 1fr; margin-top: 74px; border-top: 1px solid var(--pw-sub-line); }
.pw-subpage .gh-next a { display: grid; min-height: 180px; grid-template-columns: 1fr auto; align-items: end; gap: 30px; border-bottom: 1px solid var(--pw-sub-line); padding: 30px 0; text-decoration: none; }
.pw-subpage .gh-next a:first-child { border-right: 1px solid var(--pw-sub-line); padding-right: 38px; }
.pw-subpage .gh-next a:last-child { padding-left: 38px; }
.pw-subpage .gh-next small { display: block; margin-bottom: 12px; color: var(--pw-sub-sage); font-size: 9px; font-weight: 750; letter-spacing: 1.2px; text-transform: uppercase; }
.pw-subpage .gh-next h3 { margin: 0; font: 600 30px/1.05 var(--pw-sub-serif); letter-spacing: -.7px; }
.pw-subpage .gh-next b { font-size: 24px; font-weight: 400; transition: transform .2s ease; }
.pw-subpage .gh-next a:hover b { transform: translateX(4px); }

.pw-subpage .gh-final { position: relative; min-height: 690px; isolation: isolate; overflow: hidden; }
.pw-subpage .gh-final__media img { object-position: center center; }
.pw-subpage .gh-final::after { position: absolute; z-index: -2; inset: 0; background: linear-gradient(90deg, rgba(247, 244, 237, .97) 0%, rgba(247, 244, 237, .86) 42%, rgba(247, 244, 237, .13) 74%), linear-gradient(0deg, rgba(23, 25, 24, .16), transparent 50%); content: ''; }
.pw-subpage .gh-final__inner { display: flex; min-height: 690px; align-items: center; }
.pw-subpage .gh-final__copy { max-width: 650px; }
.pw-subpage .gh-final h2 { font-size: clamp(54px, 5.5vw, 78px); }
.pw-subpage .gh-final p { max-width: 550px; margin: 25px 0 31px; color: rgba(23, 25, 24, .62); font-size: 16px; line-height: 1.7; }

.pw-subpage .pw-footer { border-top: 1px solid var(--pw-sub-line); background: var(--pw-sub-cream); padding: 74px 0 39px; }
.pw-subpage .pw-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1.25fr 1fr; gap: 50px; margin-bottom: 55px; }
.pw-subpage .pw-footer h4 { margin: 0 0 17px; color: rgba(23, 25, 24, .45); font-size: 9px; font-weight: 760; letter-spacing: 1.3px; text-transform: uppercase; }
.pw-subpage .pw-footer a:not(.pw-brand) { display: block; padding: 4px 0; color: rgba(23, 25, 24, .62); font-size: 13px; text-decoration: none; }
.pw-subpage .pw-footer a:hover { color: var(--pw-sub-ink); }
.pw-subpage .pw-footer__tag { max-width: 270px; margin: 16px 0 0; color: rgba(23, 25, 24, .55); font-size: 13px; line-height: 1.6; }
.pw-subpage .pw-footer__bottom { display: flex; justify-content: space-between; gap: 20px; border-top: 1px solid var(--pw-sub-line); padding-top: 27px; color: rgba(23, 25, 24, .45); font-size: 11px; }

@media (prefers-reduced-motion: no-preference) {
  html.pw-motion .pw-subpage [data-reveal] { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s cubic-bezier(.2, .7, .2, 1); }
  html.pw-motion .pw-subpage [data-reveal].pw-revealed { opacity: 1; transform: translateY(0); }
  html.pw-motion .pw-subpage [data-reveal-delay='1'] { transition-delay: .08s; }
  html.pw-motion .pw-subpage [data-reveal-delay='2'] { transition-delay: .16s; }
}

@media (max-width: 1020px) {
  .pw-subpage .gh-hero__inner { grid-template-columns: 1fr .68fr; gap: 20px; }
  .pw-subpage .gh-product-frame { right: -24px; width: 354px; height: 535px; }
  .pw-subpage .gh-story__inner { grid-template-columns: 1fr .72fr; gap: 30px; }
  .pw-subpage .gh-seat-shell { right: -15px; width: 355px; }
  .pw-subpage .gh-connected__grid { gap: 45px; }
}

@media (max-width: 860px) {
  .pw-subpage .pw-nav-links { display: none; }
  .pw-subpage .pw-nav-actions { margin-left: auto; }
  .pw-subpage .gh-hero { min-height: 1110px; }
  .pw-subpage .gh-hero::before { background: linear-gradient(180deg, rgba(247, 244, 237, .99) 0%, rgba(247, 244, 237, .93) 42%, rgba(247, 244, 237, .28) 70%, rgba(23, 25, 24, .15) 100%); }
  .pw-subpage .gh-hero__media img { object-position: 65% center; }
  .pw-subpage .gh-hero__inner { min-height: 1110px; grid-template-columns: 1fr; align-content: space-between; gap: 15px; padding-block: 58px 48px; }
  .pw-subpage .gh-hero__copy { max-width: 700px; }
  .pw-subpage .gh-hero__ui { min-height: 585px; }
  .pw-subpage .gh-product-frame { right: 0; bottom: 16px; }
  .pw-subpage .gh-proof__grid { grid-template-columns: repeat(2, 1fr); }
  .pw-subpage .gh-proof__item:nth-child(3) { border-left: 1px solid var(--pw-sub-line); }
  .pw-subpage .gh-proof__item:nth-child(-n+2) { border-bottom: 1px solid var(--pw-sub-line); }
  .pw-subpage .gh-intro__grid, .pw-subpage .gh-process__head, .pw-subpage .gh-connected__grid, .pw-subpage .gh-quote { grid-template-columns: 1fr; gap: 35px; }
  .pw-subpage .gh-intro { padding-block: 90px 70px; }
  .pw-subpage .gh-scroll-story { height: auto; min-height: 1120px; margin-top: 85px; }
  .pw-subpage .phone-scroll-story__sticky { position: relative; top: 0; height: auto; min-height: 1120px; }
  .pw-subpage .gh-scroll-story .phone-scroll-story__sticky::after { background: linear-gradient(180deg, rgba(13, 16, 15, .93) 0%, rgba(13, 16, 15, .76) 42%, rgba(13, 16, 15, .17) 72%, rgba(13, 16, 15, .35) 100%); }
  .pw-subpage .gh-story__inner { min-height: 1120px; grid-template-columns: 1fr; align-content: space-between; gap: 35px; padding-block: 70px 45px; }
  .pw-subpage .gh-seat-shell { right: 0; justify-self: end; }
  .pw-subpage .gh-flow { grid-template-columns: repeat(2, 1fr); }
  .pw-subpage .gh-flow__step:nth-child(2) { border-right: 0; }
  .pw-subpage .gh-flow__step:nth-child(-n+2) { border-bottom: 1px solid var(--pw-sub-line); }
  .pw-subpage .gh-sync-board { max-width: 600px; }
  .pw-subpage .gh-quote { align-items: start; }
}

@media (max-width: 620px) {
  .pw-subpage .pw-wrap, .pw-subpage .pw-nav-inner { width: min(100% - 40px, 1280px); }
  .pw-subpage .pw-nav-inner { min-height: 64px; }
  .pw-subpage .pw-brand { font-size: 21px; }
  .pw-subpage .pw-brand img { width: 29px; height: 29px; }
  .pw-subpage .pw-nav-actions .pw-button--line { display: none; }
  .pw-subpage .pw-nav-actions .pw-button { min-height: 42px; padding-inline: 15px; font-size: 12px; }
  .pw-subpage .gh-hero { min-height: 1050px; }
  .pw-subpage .gh-hero__inner { min-height: 1050px; padding-top: 48px; }
  .pw-subpage .gh-hero h1 { font-size: 51px; letter-spacing: -1.8px; }
  .pw-subpage .gh-hero__lead { font-size: 15px; }
  .pw-subpage .gh-hero__actions { flex-direction: column; align-items: stretch; }
  .pw-subpage .gh-hero__ui { min-height: 530px; }
  .pw-subpage .gh-product-frame { right: 0; width: min(335px, 90vw); height: 500px; border-radius: 32px; }
  .pw-subpage .gh-product-frame__screen { border-radius: 23px; padding: 20px; }
  .pw-subpage .gh-module small { max-width: 180px; }
  .pw-subpage .gh-proof__item { min-height: 105px; padding: 23px 18px; }
  .pw-subpage .gh-proof__item strong { font-size: 24px; }
  .pw-subpage .gh-intro h2, .pw-subpage .gh-story__copy h2, .pw-subpage .gh-process h2, .pw-subpage .gh-connected h2, .pw-subpage .gh-final h2 { font-size: 46px; letter-spacing: -1.8px; }
  .pw-subpage .gh-ledger { grid-template-columns: 1fr; }
  .pw-subpage .gh-ledger__item { min-height: 185px; border-right: 0 !important; padding: 30px 0 !important; }
  .pw-subpage .gh-scroll-story, .pw-subpage .phone-scroll-story__sticky, .pw-subpage .gh-story__inner { min-height: 1030px; }
  .pw-subpage .gh-story__inner { padding-top: 55px; }
  .pw-subpage .gh-seat-shell { width: min(335px, 90vw); height: 540px; border-radius: 33px; }
  .pw-subpage .gh-seat-screen { border-radius: 23px; }
  .pw-subpage .gh-seat-content { padding: 20px; }
  .pw-subpage .gh-process { padding-block: 90px 80px; }
  .pw-subpage .gh-flow { grid-template-columns: 1fr; }
  .pw-subpage .gh-flow__step { min-height: 205px; border-right: 0; border-bottom: 1px solid var(--pw-sub-line) !important; padding: 28px 0 !important; }
  .pw-subpage .gh-flow__step::before { left: 0 !important; }
  .pw-subpage .gh-connected { padding-block: 90px; }
  .pw-subpage .gh-sync-row { padding-inline: 10px; }
  .pw-subpage .gh-proof-quote { padding-block: 88px 80px; }
  .pw-subpage .gh-quote blockquote { font-size: 38px; }
  .pw-subpage .gh-next { grid-template-columns: 1fr; }
  .pw-subpage .gh-next a { min-height: 150px; border-right: 0 !important; padding: 27px 0 !important; }
  .pw-subpage .gh-final, .pw-subpage .gh-final__inner { min-height: 650px; }
  .pw-subpage .gh-final::after { background: linear-gradient(180deg, rgba(247, 244, 237, .97) 0%, rgba(247, 244, 237, .85) 58%, rgba(247, 244, 237, .16) 100%); }
  .pw-subpage .gh-final__inner { align-items: flex-start; padding-top: 75px; }
  .pw-subpage .pw-footer__grid { grid-template-columns: 1fr 1fr; gap: 38px 25px; }
  .pw-subpage .pw-footer__grid > div:first-child { grid-column: 1 / -1; }
  .pw-subpage .pw-footer__bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .pw-subpage *, .pw-subpage *::before, .pw-subpage *::after { scroll-behavior: auto !important; transition-duration: .001ms !important; animation-duration: .001ms !important; }
}

/* Seating chart premium page ------------------------------------------------ */
.pw-subpage .sc-hero::before {
  background:
    linear-gradient(270deg, rgba(247, 244, 237, .99) 0%, rgba(247, 244, 237, .94) 34%, rgba(247, 244, 237, .58) 58%, rgba(247, 244, 237, .05) 84%),
    linear-gradient(0deg, rgba(23, 25, 24, .17), transparent 38%);
}

.pw-subpage .sc-hero .gh-hero__media img { object-position: center center; }
.pw-subpage .sc-hero .gh-hero__inner { grid-template-areas: 'ui copy'; grid-template-columns: minmax(390px, .86fr) minmax(0, 1.14fr); }
.pw-subpage .sc-hero .gh-hero__copy { grid-area: copy; justify-self: end; max-width: 675px; }
.pw-subpage .sc-hero .gh-hero__ui { grid-area: ui; width: 100%; }

.pw-subpage .sc-layout-frame {
  position: absolute;
  bottom: 18px;
  left: 5px;
  width: 425px;
  height: 570px;
  border: 1px solid rgba(255, 255, 255, .86);
  border-radius: 39px;
  background: rgba(255, 255, 255, .28);
  box-shadow: 0 42px 95px rgba(20, 23, 21, .27), inset 0 1px rgba(255, 255, 255, .75);
  padding: 12px;
  transform: rotate(-.65deg);
  backdrop-filter: blur(17px) saturate(120%);
  -webkit-backdrop-filter: blur(17px) saturate(120%);
}

.pw-subpage .sc-layout-screen {
  height: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 29px;
  background: rgba(253, 251, 247, .9);
  color: var(--pw-sub-ink);
  padding: 23px;
}

.pw-subpage .sc-appbar { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 10px; margin-bottom: 16px; }
.pw-subpage .sc-appbar > span:first-child { font-size: 24px; line-height: 1; }
.pw-subpage .sc-appbar strong { overflow: hidden; text-align: center; font-size: 13px; text-overflow: ellipsis; white-space: nowrap; }
.pw-subpage .sc-appbar__status { display: flex; align-items: center; gap: 6px; color: var(--pw-sub-sage); font-size: 8px; font-weight: 750; text-transform: uppercase; }
.pw-subpage .sc-appbar__status i { width: 6px; height: 6px; border-radius: 50%; background: #78aa96; box-shadow: 0 0 0 4px rgba(120, 170, 150, .11); }
.pw-subpage .sc-layout-meta { display: flex; justify-content: space-between; margin-bottom: 11px; color: rgba(23, 25, 24, .48); font-size: 8px; font-weight: 700; letter-spacing: .7px; text-transform: uppercase; }
.pw-subpage .sc-table-card { border: 1px solid rgba(23, 25, 24, .1); border-radius: 21px; background: rgba(255, 255, 255, .75); padding: 15px 13px; box-shadow: 0 15px 30px rgba(23, 25, 24, .055); }
.pw-subpage .sc-table-heading { display: flex; align-items: end; justify-content: space-between; margin-bottom: 12px; }
.pw-subpage .sc-table-heading span, .pw-subpage .sc-table-heading strong { display: block; }
.pw-subpage .sc-table-heading span { margin-bottom: 2px; color: rgba(23, 25, 24, .42); font-size: 7px; font-weight: 720; letter-spacing: .8px; text-transform: uppercase; }
.pw-subpage .sc-table-heading strong { font: 600 19px/1 var(--pw-sub-serif); letter-spacing: -.4px; }
.pw-subpage .sc-table-heading b { color: var(--pw-sub-sage); font-size: 8px; }
.pw-subpage .sc-seat-line { display: flex; justify-content: center; gap: 9px; }
.pw-subpage .sc-seat-line i { display: grid; width: 27px; height: 27px; place-items: center; border: 1px solid rgba(101, 125, 115, .22); border-radius: 50%; background: rgba(101, 125, 115, .1); color: var(--pw-sub-sage); font-size: 7px; font-style: normal; font-weight: 760; }
.pw-subpage .sc-table-shape { display: grid; height: 78px; place-items: center; margin: 8px 13px; border: 1px solid rgba(23, 25, 24, .16); border-radius: 9px; background: linear-gradient(135deg, rgba(240, 232, 219, .86), rgba(255, 255, 255, .9)); color: rgba(23, 25, 24, .55); font-size: 8px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; }
.pw-subpage .sc-tabs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 3px; margin: 12px 0 9px; border-radius: 11px; background: rgba(23, 25, 24, .045); padding: 3px; }
.pw-subpage .sc-tabs span { border-radius: 8px; padding: 7px 4px; color: rgba(23, 25, 24, .45); font-size: 8px; font-weight: 700; text-align: center; }
.pw-subpage .sc-tabs .is-active { background: #fff; color: var(--pw-sub-ink); box-shadow: 0 3px 12px rgba(23, 25, 24, .07); }
.pw-subpage .sc-guest { display: grid; min-height: 47px; grid-template-columns: 31px 1fr auto; align-items: center; gap: 9px; border-bottom: 1px solid rgba(23, 25, 24, .075); }
.pw-subpage .sc-guest > b { display: grid; width: 29px; height: 29px; place-items: center; border-radius: 50%; background: var(--pw-sub-ink); color: #fff; font-size: 7px; }
.pw-subpage .sc-guest strong, .pw-subpage .sc-guest small { display: block; }
.pw-subpage .sc-guest strong { font-size: 9px; }
.pw-subpage .sc-guest small { margin-top: 2px; color: rgba(23, 25, 24, .43); font-size: 7px; }
.pw-subpage .sc-guest > span { color: rgba(23, 25, 24, .45); font-size: 14px; }
.pw-subpage .sc-hero .gh-ui-caption { right: auto; left: 14px; }

.pw-subpage .sc-scroll-story .gh-story__media img { object-position: center center; }
.pw-subpage .sc-scroll-story .phone-scroll-story__sticky::after { background: linear-gradient(90deg, rgba(13, 16, 15, .94) 0%, rgba(13, 16, 15, .76) 43%, rgba(13, 16, 15, .11) 73%, rgba(13, 16, 15, .24) 100%); }
.pw-subpage .sc-drag-shell { position: relative; justify-self: end; width: 410px; height: 590px; border: 1px solid rgba(255, 255, 255, .78); border-radius: 40px; background: rgba(255, 255, 255, .25); box-shadow: 0 42px 105px rgba(0, 0, 0, .31); padding: 12px; transform: translateY(var(--phone-shell-y, 14px)) rotate(var(--phone-shell-rotate, 1deg)); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
.pw-subpage .sc-drag-screen { height: 100%; overflow: hidden; border-radius: 29px; background: rgba(252, 250, 245, .94); color: var(--pw-sub-ink); }
.pw-subpage .sc-drag-appbar { display: grid; height: 62px; grid-template-columns: auto 1fr auto; align-items: center; gap: 10px; border-bottom: 1px solid rgba(23, 25, 24, .09); padding: 0 19px; }
.pw-subpage .sc-drag-appbar > span { font-size: 23px; }
.pw-subpage .sc-drag-appbar strong { text-align: center; font-size: 13px; }
.pw-subpage .sc-drag-appbar b { color: var(--pw-sub-sage); font-size: 9px; }
.pw-subpage .sc-drag-content { padding: 22px; transform: translateY(var(--timeline-ui-y, 0)); will-change: transform; }
.pw-subpage .sc-drag-head { display: flex; align-items: end; justify-content: space-between; margin-bottom: 15px; }
.pw-subpage .sc-drag-head h3 { margin: 0; font: 600 28px/1 var(--pw-sub-serif); letter-spacing: -.7px; }
.pw-subpage .sc-drag-head span { color: rgba(23, 25, 24, .45); font-size: 8px; font-weight: 700; text-transform: uppercase; }
.pw-subpage .sc-unseated { display: grid; gap: 7px; }
.pw-subpage .sc-unseated-row { display: grid; grid-template-columns: 34px 1fr auto; align-items: center; gap: 10px; border: 1px solid rgba(23, 25, 24, .085); border-radius: 13px; background: #fff; padding: 9px 11px; }
.pw-subpage .sc-unseated-row > b { display: grid; width: 32px; height: 32px; place-items: center; border-radius: 50%; background: rgba(212, 119, 107, .11); color: #a65d55; font-size: 8px; }
.pw-subpage .sc-unseated-row strong, .pw-subpage .sc-unseated-row small { display: block; }
.pw-subpage .sc-unseated-row strong { font-size: 10px; }
.pw-subpage .sc-unseated-row small { margin-top: 2px; color: rgba(23, 25, 24, .44); font-size: 8px; }
.pw-subpage .sc-unseated-row > span { color: rgba(23, 25, 24, .35); font-size: 15px; }
.pw-subpage .sc-drop-zone { margin-top: 14px; border: 1px solid rgba(101, 125, 115, .2); border-radius: 19px; background: rgba(101, 125, 115, .075); padding: 16px; }
.pw-subpage .sc-drop-zone__head { display: flex; align-items: center; justify-content: space-between; }
.pw-subpage .sc-drop-zone__head strong { font: 600 19px/1 var(--pw-sub-serif); }
.pw-subpage .sc-drop-zone__head span { color: var(--pw-sub-sage); font-size: 8px; font-weight: 720; text-transform: uppercase; }
.pw-subpage .sc-round-table { position: relative; width: 158px; height: 158px; margin: 28px auto 18px; border: 1px solid rgba(23, 25, 24, .13); border-radius: 50%; background: linear-gradient(145deg, rgba(239, 229, 211, .95), rgba(255, 255, 255, .85)); box-shadow: inset 0 0 0 8px rgba(255, 255, 255, .35); }
.pw-subpage .sc-round-table::after { position: absolute; inset: 0; display: grid; place-items: center; color: rgba(23, 25, 24, .44); content: 'Round 4'; font: 600 16px/1 var(--pw-sub-serif); }
.pw-subpage .sc-round-table i { position: absolute; display: grid; width: 28px; height: 28px; place-items: center; border: 3px solid rgba(252, 250, 245, .95); border-radius: 50%; background: var(--pw-sub-sage); color: #fff; font-size: 7px; font-style: normal; font-weight: 750; box-shadow: 0 5px 12px rgba(23, 25, 24, .12); }
.pw-subpage .sc-round-table i:nth-child(1) { top: -14px; left: 65px; }
.pw-subpage .sc-round-table i:nth-child(2) { top: 28px; right: -12px; }
.pw-subpage .sc-round-table i:nth-child(3) { right: 4px; bottom: 4px; }
.pw-subpage .sc-round-table i:nth-child(4) { bottom: -14px; left: 65px; background: var(--pw-sub-coral); }
.pw-subpage .sc-round-table i:nth-child(5) { bottom: 4px; left: 4px; }
.pw-subpage .sc-round-table i:nth-child(6) { top: 28px; left: -12px; }
.pw-subpage .sc-drop-note { color: rgba(23, 25, 24, .47); font-size: 8px; text-align: center; }

@media (max-width: 1020px) {
  .pw-subpage .sc-layout-frame { left: -22px; width: 390px; }
  .pw-subpage .sc-drag-shell { right: -10px; width: 375px; }
}

@media (max-width: 860px) {
  .pw-subpage .sc-hero::before { background: linear-gradient(180deg, rgba(247, 244, 237, .99) 0%, rgba(247, 244, 237, .93) 42%, rgba(247, 244, 237, .25) 70%, rgba(23, 25, 24, .18) 100%); }
  .pw-subpage .sc-hero .gh-hero__media img { object-position: 47% center; }
  .pw-subpage .sc-hero .gh-hero__inner { grid-template-areas: 'copy' 'ui'; grid-template-columns: 1fr; }
  .pw-subpage .sc-hero .gh-hero__copy { justify-self: start; }
  .pw-subpage .sc-layout-frame { right: 0; left: auto; }
  .pw-subpage .sc-hero .gh-ui-caption { right: 10px; left: auto; }
  .pw-subpage .sc-scroll-story .phone-scroll-story__sticky::after { background: linear-gradient(180deg, rgba(13, 16, 15, .93) 0%, rgba(13, 16, 15, .76) 42%, rgba(13, 16, 15, .14) 73%, rgba(13, 16, 15, .34) 100%); }
  .pw-subpage .sc-drag-shell { right: 0; justify-self: end; }
}

@media (max-width: 620px) {
  .pw-subpage .sc-layout-frame { width: min(340px, 91vw); height: 515px; border-radius: 33px; }
  .pw-subpage .sc-layout-screen { border-radius: 23px; padding: 19px; }
  .pw-subpage .sc-table-shape { height: 65px; }
  .pw-subpage .sc-seat-line { gap: 7px; }
  .pw-subpage .sc-seat-line i { width: 25px; height: 25px; }
  .pw-subpage .sc-drag-shell { width: min(340px, 91vw); height: 550px; border-radius: 34px; }
  .pw-subpage .sc-drag-screen { border-radius: 24px; }
  .pw-subpage .sc-drag-content { padding: 19px; }
}

/* Budget calculator premium page ------------------------------------------ */
.pw-subpage .bc-hero::before {
  background:
    linear-gradient(90deg, rgba(247, 244, 237, .98) 0%, rgba(247, 244, 237, .91) 38%, rgba(247, 244, 237, .43) 69%, rgba(247, 244, 237, .11) 100%),
    linear-gradient(0deg, rgba(23, 25, 24, .17), transparent 42%);
}

.pw-subpage .bc-hero .gh-hero__media img { object-position: center center; }
.pw-subpage .bc-hero .gh-hero__inner { grid-template-columns: 1.04fr .96fr; }
.pw-subpage .bc-hero .gh-hero__copy { max-width: 660px; }
.pw-subpage .bc-hero .gh-hero__lead { max-width: 580px; }

.pw-subpage .bc-calculator {
  position: absolute;
  right: 0;
  bottom: 22px;
  width: 475px;
  border: 1px solid rgba(255, 255, 255, .87);
  border-radius: 38px;
  background: rgba(255, 255, 255, .3);
  box-shadow: 0 42px 95px rgba(20, 23, 21, .25), inset 0 1px rgba(255, 255, 255, .8);
  padding: 12px;
  transform: rotate(.45deg);
  backdrop-filter: blur(18px) saturate(124%);
  -webkit-backdrop-filter: blur(18px) saturate(124%);
}

.pw-subpage .bc-calculator__screen {
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 28px;
  background: rgba(253, 251, 247, .94);
  padding: 25px;
}

.pw-subpage .bc-calc-head { display: flex; align-items: start; justify-content: space-between; gap: 20px; margin-bottom: 18px; }
.pw-subpage .bc-calc-head small, .pw-subpage .bc-calc-head strong { display: block; }
.pw-subpage .bc-calc-head small { margin-bottom: 4px; color: var(--pw-sub-sage); font-size: 8px; font-weight: 760; letter-spacing: .9px; text-transform: uppercase; }
.pw-subpage .bc-calc-head strong { font: 600 24px/1 var(--pw-sub-serif); letter-spacing: -.55px; }
.pw-subpage .bc-calc-live { display: flex; align-items: center; gap: 6px; margin-top: 4px; color: var(--pw-sub-sage); font-size: 8px; font-weight: 740; text-transform: uppercase; }
.pw-subpage .bc-calc-live i { width: 6px; height: 6px; border-radius: 50%; background: #79aa96; box-shadow: 0 0 0 4px rgba(121, 170, 150, .1); }
.pw-subpage .bc-field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pw-subpage .bc-field { display: flex; flex-direction: column; gap: 6px; }
.pw-subpage .bc-field label { color: rgba(23, 25, 24, .48); font-size: 7px; font-weight: 760; letter-spacing: .7px; text-transform: uppercase; }
.pw-subpage .bc-field input, .pw-subpage .bc-field select { width: 100%; height: 42px; border: 1px solid rgba(23, 25, 24, .11); border-radius: 11px; outline: 0; background: #fff; color: var(--pw-sub-ink); padding: 0 11px; font: 650 10px/1 var(--pw-sub-sans); }
.pw-subpage .bc-field input:focus, .pw-subpage .bc-field select:focus { border-color: rgba(101, 125, 115, .46); box-shadow: 0 0 0 3px rgba(101, 125, 115, .09); }
.pw-subpage .bc-range-box { margin-top: 14px; border: 1px solid rgba(101, 125, 115, .2); border-radius: 20px; background: rgba(101, 125, 115, .075); padding: 17px; }
.pw-subpage .bc-range-label { color: var(--pw-sub-sage); font-size: 7px; font-weight: 780; letter-spacing: .9px; text-transform: uppercase; }
.pw-subpage .bc-range-total { margin: 6px 0 5px; font: 600 31px/1 var(--pw-sub-serif); letter-spacing: -1px; }
.pw-subpage .bc-range-sub { color: rgba(23, 25, 24, .52); font-size: 8px; line-height: 1.45; }
.pw-subpage .bc-mini-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 6px; margin-top: 12px; }
.pw-subpage .bc-mini { border-top: 1px solid rgba(101, 125, 115, .16); padding-top: 9px; }
.pw-subpage .bc-mini strong, .pw-subpage .bc-mini span { display: block; }
.pw-subpage .bc-mini strong { font-size: 10px; }
.pw-subpage .bc-mini span { margin-top: 2px; color: rgba(23, 25, 24, .43); font-size: 6.5px; line-height: 1.25; }

.pw-subpage .bc-breakdown { padding-block: 118px 35px; }
.pw-subpage .bc-breakdown__head { display: grid; grid-template-columns: .7fr 1.3fr; gap: 80px; align-items: start; margin-bottom: 66px; }
.pw-subpage .bc-breakdown h2 { max-width: 850px; font-size: clamp(49px, 5.4vw, 74px); }
.pw-subpage .bc-breakdown__lead { max-width: 650px; margin: 27px 0 0; color: rgba(23, 25, 24, .6); font-size: 16px; line-height: 1.75; }
.pw-subpage .bc-allocation { display: grid; grid-template-columns: 1.2fr .8fr; gap: 70px; border-top: 1px solid var(--pw-sub-line); padding-top: 42px; }
.pw-subpage .bc-rows { display: grid; gap: 19px; }
.pw-subpage .bc-row-head { display: flex; justify-content: space-between; gap: 18px; font-size: 12px; font-weight: 700; }
.pw-subpage .bc-row small { display: block; margin-top: 3px; color: rgba(23, 25, 24, .45); font-size: 9px; }
.pw-subpage .bc-bar { height: 4px; margin-top: 8px; overflow: hidden; border-radius: 99px; background: rgba(23, 25, 24, .07); }
.pw-subpage .bc-bar span { display: block; height: 100%; border-radius: inherit; background: linear-gradient(90deg, var(--pw-sub-sage), #b8d6ca); }
.pw-subpage .bc-principles { border-left: 1px solid var(--pw-sub-line); padding-left: 44px; }
.pw-subpage .bc-principles > h3 { margin: 0 0 24px; font: 600 32px/1.05 var(--pw-sub-serif); letter-spacing: -.8px; }
.pw-subpage .bc-principle { display: grid; grid-template-columns: 28px 1fr; gap: 14px; border-top: 1px solid var(--pw-sub-line); padding: 20px 0; }
.pw-subpage .bc-principle span { color: var(--pw-sub-sage); font: 600 10px/1 var(--pw-sub-serif); }
.pw-subpage .bc-principle strong { display: block; margin-bottom: 5px; font-size: 12px; }
.pw-subpage .bc-principle p { margin: 0; color: rgba(23, 25, 24, .52); font-size: 11px; line-height: 1.6; }

.pw-subpage .bc-scroll-story .gh-story__media img { object-position: center center; }
.pw-subpage .bc-budget-shell { position: relative; justify-self: end; width: 405px; height: 590px; border: 1px solid rgba(255, 255, 255, .75); border-radius: 40px; background: rgba(255, 255, 255, .24); box-shadow: 0 42px 105px rgba(0, 0, 0, .31); padding: 12px; transform: translateY(var(--phone-shell-y, 14px)) rotate(var(--phone-shell-rotate, 1deg)); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
.pw-subpage .bc-budget-screen { height: 100%; overflow: hidden; border-radius: 29px; background: rgba(252, 250, 245, .95); color: var(--pw-sub-ink); }
.pw-subpage .bc-budget-appbar { display: grid; height: 62px; grid-template-columns: auto 1fr auto; align-items: center; gap: 10px; border-bottom: 1px solid rgba(23, 25, 24, .09); padding: 0 19px; }
.pw-subpage .bc-budget-appbar > span { font-size: 23px; }
.pw-subpage .bc-budget-appbar strong { text-align: center; font-size: 13px; }
.pw-subpage .bc-budget-appbar b { color: var(--pw-sub-sage); font-size: 9px; }
.pw-subpage .bc-budget-content { padding: 21px; transform: translateY(var(--timeline-ui-y, 0)); will-change: transform; }
.pw-subpage .bc-budget-total { border-radius: 21px; background: var(--pw-sub-ink); color: #fff; padding: 19px; }
.pw-subpage .bc-budget-total > span { color: rgba(255, 255, 255, .5); font-size: 7px; font-weight: 720; letter-spacing: .8px; text-transform: uppercase; }
.pw-subpage .bc-budget-total h3 { margin: 7px 0 13px; font: 600 31px/1 var(--pw-sub-serif); }
.pw-subpage .bc-progress { height: 5px; overflow: hidden; border-radius: 99px; background: rgba(255, 255, 255, .14); }
.pw-subpage .bc-progress i { display: block; width: 63%; height: 100%; border-radius: inherit; background: #a8cdbd; }
.pw-subpage .bc-budget-meta { display: flex; justify-content: space-between; margin-top: 8px; color: rgba(255, 255, 255, .55); font-size: 7px; }
.pw-subpage .bc-expense-head { display: flex; align-items: end; justify-content: space-between; margin: 20px 0 8px; }
.pw-subpage .bc-expense-head h4 { margin: 0; font: 600 20px/1 var(--pw-sub-serif); }
.pw-subpage .bc-expense-head span { color: var(--pw-sub-sage); font-size: 8px; font-weight: 730; }
.pw-subpage .bc-expense-row { display: grid; min-height: 58px; grid-template-columns: 35px 1fr auto; align-items: center; gap: 11px; border-bottom: 1px solid rgba(23, 25, 24, .08); }
.pw-subpage .bc-expense-icon { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 11px; background: rgba(101, 125, 115, .1); color: var(--pw-sub-sage); font-size: 13px; }
.pw-subpage .bc-expense-row strong, .pw-subpage .bc-expense-row small { display: block; }
.pw-subpage .bc-expense-row strong { font-size: 10px; }
.pw-subpage .bc-expense-row small { margin-top: 3px; color: rgba(23, 25, 24, .43); font-size: 8px; }
.pw-subpage .bc-expense-row > b { font-size: 10px; }

/* Guest list premium page -------------------------------------------------- */
.pw-subpage .gl-hero::before {
  background:
    linear-gradient(90deg, rgba(247, 244, 237, .99) 0%, rgba(247, 244, 237, .93) 39%, rgba(247, 244, 237, .48) 67%, rgba(247, 244, 237, .08) 100%),
    linear-gradient(0deg, rgba(23, 25, 24, .15), transparent 42%);
}
.pw-subpage .gl-hero .gh-hero__media img { object-position: center center; }
.pw-subpage .gl-hero .gh-hero__inner { grid-template-columns: 1.02fr .98fr; }
.pw-subpage .gl-hero .gh-hero__copy { max-width: 670px; }

.pw-subpage .gl-list-frame { position: absolute; right: 0; bottom: 20px; width: 455px; height: 570px; border: 1px solid rgba(255, 255, 255, .86); border-radius: 39px; background: rgba(255, 255, 255, .28); box-shadow: 0 42px 95px rgba(20, 23, 21, .27), inset 0 1px rgba(255, 255, 255, .75); padding: 12px; transform: rotate(.55deg); backdrop-filter: blur(17px) saturate(120%); -webkit-backdrop-filter: blur(17px) saturate(120%); }
.pw-subpage .gl-list-screen { height: 100%; overflow: hidden; border: 1px solid rgba(255, 255, 255, .7); border-radius: 29px; background: rgba(253, 251, 247, .93); color: var(--pw-sub-ink); padding: 22px; }
.pw-subpage .gl-appbar { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 10px; margin-bottom: 15px; }
.pw-subpage .gl-appbar > span { font-size: 23px; }
.pw-subpage .gl-appbar strong { text-align: center; font-size: 13px; }
.pw-subpage .gl-appbar b { color: var(--pw-sub-sage); font-size: 9px; }
.pw-subpage .gl-stat-strip { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid rgba(23, 25, 24, .09); border-radius: 16px; background: rgba(255, 255, 255, .7); }
.pw-subpage .gl-stat { border-right: 1px solid rgba(23, 25, 24, .08); padding: 12px 8px; text-align: center; }
.pw-subpage .gl-stat:last-child { border: 0; }
.pw-subpage .gl-stat strong, .pw-subpage .gl-stat span { display: block; }
.pw-subpage .gl-stat strong { font: 600 18px/1 var(--pw-sub-serif); }
.pw-subpage .gl-stat span { margin-top: 4px; color: rgba(23, 25, 24, .43); font-size: 6.5px; text-transform: uppercase; }
.pw-subpage .gl-filter-row { display: flex; gap: 5px; margin: 12px 0 5px; }
.pw-subpage .gl-filter-row span { border: 1px solid rgba(23, 25, 24, .09); border-radius: 99px; background: rgba(255, 255, 255, .7); padding: 6px 9px; color: rgba(23, 25, 24, .48); font-size: 7px; font-weight: 700; }
.pw-subpage .gl-filter-row .is-active { border-color: rgba(101, 125, 115, .22); background: rgba(101, 125, 115, .1); color: var(--pw-sub-sage); }
.pw-subpage .gl-person { display: grid; min-height: 64px; grid-template-columns: 36px 1fr auto; align-items: center; gap: 10px; border-bottom: 1px solid rgba(23, 25, 24, .075); }
.pw-subpage .gl-person > i { display: grid; width: 35px; height: 35px; place-items: center; border-radius: 50%; background: rgba(212, 119, 107, .11); color: #a85f57; font-size: 8px; font-style: normal; font-weight: 760; }
.pw-subpage .gl-person strong, .pw-subpage .gl-person small { display: block; }
.pw-subpage .gl-person strong { font-size: 10px; }
.pw-subpage .gl-person small { margin-top: 3px; color: rgba(23, 25, 24, .43); font-size: 7.5px; }
.pw-subpage .gl-status { border-radius: 99px; padding: 5px 7px; background: rgba(101, 125, 115, .1); color: var(--pw-sub-sage); font-size: 6.5px; font-weight: 760; text-transform: uppercase; }
.pw-subpage .gl-status--wait { background: rgba(201, 144, 45, .1); color: #a97825; }
.pw-subpage .gl-add-row { display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 13px; border: 1px dashed rgba(23, 25, 24, .16); border-radius: 12px; padding: 10px; color: var(--pw-sub-sage); font-size: 8px; font-weight: 730; }

.pw-subpage .gl-scroll-story .gh-story__media img { object-position: center center; }
.pw-subpage .gl-scroll-story .phone-scroll-story__sticky::after { background: linear-gradient(270deg, rgba(13, 16, 15, .94) 0%, rgba(13, 16, 15, .77) 42%, rgba(13, 16, 15, .12) 74%, rgba(13, 16, 15, .24) 100%); }
.pw-subpage .gl-scroll-story .gh-story__inner { grid-template-areas: 'ui copy'; grid-template-columns: .82fr 1fr; }
.pw-subpage .gl-scroll-story .gh-story__copy { grid-area: copy; justify-self: end; }
.pw-subpage .gl-rsvp-shell { position: relative; justify-self: end; width: 405px; height: 590px; border: 1px solid rgba(255, 255, 255, .75); border-radius: 40px; background: rgba(255, 255, 255, .24); box-shadow: 0 42px 105px rgba(0, 0, 0, .31); padding: 12px; transform: translateY(var(--phone-shell-y, 14px)) rotate(var(--phone-shell-rotate, 1deg)); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
.pw-subpage .gl-scroll-story .gl-rsvp-shell { grid-area: ui; justify-self: start; }
.pw-subpage .gl-rsvp-screen { height: 100%; overflow: hidden; border-radius: 29px; background: rgba(252, 250, 245, .95); color: var(--pw-sub-ink); }
.pw-subpage .gl-rsvp-appbar { display: grid; height: 62px; grid-template-columns: auto 1fr auto; align-items: center; gap: 10px; border-bottom: 1px solid rgba(23, 25, 24, .09); padding: 0 19px; }
.pw-subpage .gl-rsvp-appbar > span { font-size: 23px; }
.pw-subpage .gl-rsvp-appbar strong { text-align: center; font-size: 13px; }
.pw-subpage .gl-rsvp-appbar b { color: var(--pw-sub-sage); font-size: 9px; }
.pw-subpage .gl-rsvp-content { padding: 22px; transform: translateY(var(--timeline-ui-y, 0)); will-change: transform; }
.pw-subpage .gl-response-card { border: 1px solid rgba(101, 125, 115, .2); border-radius: 20px; background: rgba(101, 125, 115, .075); padding: 17px; }
.pw-subpage .gl-response-card > small { color: var(--pw-sub-sage); font-size: 7px; font-weight: 750; letter-spacing: .8px; text-transform: uppercase; }
.pw-subpage .gl-response-card h3 { margin: 7px 0 4px; font: 600 25px/1 var(--pw-sub-serif); letter-spacing: -.55px; }
.pw-subpage .gl-response-card p { margin: 0; color: rgba(23, 25, 24, .5); font-size: 8px; }
.pw-subpage .gl-response-details { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin-top: 13px; }
.pw-subpage .gl-response-details div { border: 1px solid rgba(23, 25, 24, .08); border-radius: 12px; background: rgba(255, 255, 255, .8); padding: 10px; }
.pw-subpage .gl-response-details span, .pw-subpage .gl-response-details strong { display: block; }
.pw-subpage .gl-response-details span { color: rgba(23, 25, 24, .43); font-size: 6.5px; text-transform: uppercase; }
.pw-subpage .gl-response-details strong { margin-top: 4px; font-size: 9px; }
.pw-subpage .gl-activity-head { display: flex; align-items: end; justify-content: space-between; margin: 21px 0 8px; }
.pw-subpage .gl-activity-head h4 { margin: 0; font: 600 20px/1 var(--pw-sub-serif); }
.pw-subpage .gl-activity-head span { color: var(--pw-sub-sage); font-size: 8px; font-weight: 720; }
.pw-subpage .gl-activity-row { display: grid; min-height: 60px; grid-template-columns: 35px 1fr auto; align-items: center; gap: 11px; border-bottom: 1px solid rgba(23, 25, 24, .08); }
.pw-subpage .gl-activity-row > i { display: grid; width: 34px; height: 34px; place-items: center; border-radius: 11px; background: rgba(101, 125, 115, .1); color: var(--pw-sub-sage); font-size: 13px; font-style: normal; }
.pw-subpage .gl-activity-row strong, .pw-subpage .gl-activity-row small { display: block; }
.pw-subpage .gl-activity-row strong { font-size: 10px; }
.pw-subpage .gl-activity-row small { margin-top: 3px; color: rgba(23, 25, 24, .43); font-size: 8px; }
.pw-subpage .gl-activity-row > b { color: var(--pw-sub-sage); font-size: 8px; }

@media (max-width: 1020px) {
  .pw-subpage .bc-calculator { right: -20px; width: 435px; }
  .pw-subpage .bc-budget-shell, .pw-subpage .gl-rsvp-shell { width: 375px; }
  .pw-subpage .gl-list-frame { right: -22px; width: 420px; }
}

@media (max-width: 860px) {
  .pw-subpage .bc-hero::before, .pw-subpage .gl-hero::before { background: linear-gradient(180deg, rgba(247, 244, 237, .99) 0%, rgba(247, 244, 237, .93) 42%, rgba(247, 244, 237, .28) 70%, rgba(23, 25, 24, .16) 100%); }
  .pw-subpage .bc-hero .gh-hero__inner, .pw-subpage .gl-hero .gh-hero__inner { grid-template-columns: 1fr; }
  .pw-subpage .bc-calculator, .pw-subpage .gl-list-frame { right: 0; }
  .pw-subpage .bc-breakdown__head, .pw-subpage .bc-allocation { grid-template-columns: 1fr; gap: 38px; }
  .pw-subpage .bc-principles { border-top: 1px solid var(--pw-sub-line); border-left: 0; padding: 37px 0 0; }
  .pw-subpage .bc-budget-shell, .pw-subpage .gl-rsvp-shell { justify-self: end; }
  .pw-subpage .gl-scroll-story .phone-scroll-story__sticky::after { background: linear-gradient(180deg, rgba(13, 16, 15, .93) 0%, rgba(13, 16, 15, .77) 42%, rgba(13, 16, 15, .16) 73%, rgba(13, 16, 15, .34) 100%); }
  .pw-subpage .gl-scroll-story .gh-story__inner { grid-template-areas: 'copy' 'ui'; grid-template-columns: 1fr; }
  .pw-subpage .gl-scroll-story .gh-story__copy { justify-self: start; }
  .pw-subpage .gl-scroll-story .gl-rsvp-shell { justify-self: end; }
}

@media (max-width: 620px) {
  .pw-subpage .bc-calculator { width: min(350px, 92vw); border-radius: 33px; }
  .pw-subpage .bc-calculator__screen { border-radius: 23px; padding: 18px; }
  .pw-subpage .bc-field-grid { gap: 8px; }
  .pw-subpage .bc-range-total { font-size: 27px; }
  .pw-subpage .bc-breakdown { padding-top: 90px; }
  .pw-subpage .bc-budget-shell, .pw-subpage .gl-rsvp-shell { width: min(340px, 91vw); height: 550px; border-radius: 34px; }
  .pw-subpage .bc-budget-screen, .pw-subpage .gl-rsvp-screen { border-radius: 24px; }
  .pw-subpage .gl-list-frame { width: min(350px, 92vw); height: 525px; border-radius: 33px; }
  .pw-subpage .gl-list-screen { border-radius: 23px; padding: 18px; }
  .pw-subpage .gl-person { min-height: 58px; }
}

/* Wedding RSVP premium page ----------------------------------------------- */
.pw-subpage .rv-hero::before {
  background:
    linear-gradient(90deg, rgba(247, 244, 237, .99) 0%, rgba(247, 244, 237, .92) 39%, rgba(247, 244, 237, .42) 68%, rgba(247, 244, 237, .08) 100%),
    linear-gradient(0deg, rgba(23, 25, 24, .17), transparent 42%);
}
.pw-subpage .rv-hero .gh-hero__media img { object-position: center 44%; }
.pw-subpage .rv-hero .gh-hero__inner { grid-template-columns: 1.05fr .95fr; }
.pw-subpage .rv-hero .gh-hero__copy { max-width: 665px; }

.pw-subpage .rv-board-frame {
  position: absolute;
  right: 0;
  bottom: 18px;
  width: 458px;
  height: 455px;
  border: 1px solid rgba(255, 255, 255, .86);
  border-radius: 38px;
  background: rgba(255, 255, 255, .28);
  box-shadow: 0 42px 95px rgba(20, 23, 21, .27), inset 0 1px rgba(255, 255, 255, .75);
  padding: 12px;
  transform: rotate(.55deg);
  backdrop-filter: blur(17px) saturate(120%);
  -webkit-backdrop-filter: blur(17px) saturate(120%);
}
.pw-subpage .rv-board-screen { height: 100%; overflow: hidden; border: 1px solid rgba(255, 255, 255, .72); border-radius: 28px; background: rgba(253, 251, 247, .94); color: var(--pw-sub-ink); padding: 20px; }
.pw-subpage .rv-appbar { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 10px; margin-bottom: 13px; }
.pw-subpage .rv-appbar > span { font-size: 22px; }
.pw-subpage .rv-appbar strong { text-align: center; font-size: 12px; }
.pw-subpage .rv-appbar b { color: var(--pw-sub-sage); font-size: 8px; }
.pw-subpage .rv-summary { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid rgba(23, 25, 24, .09); border-radius: 15px; background: rgba(255, 255, 255, .72); }
.pw-subpage .rv-summary > div { border-right: 1px solid rgba(23, 25, 24, .08); padding: 10px 6px; text-align: center; }
.pw-subpage .rv-summary > div:last-child { border: 0; }
.pw-subpage .rv-summary strong, .pw-subpage .rv-summary span { display: block; }
.pw-subpage .rv-summary strong { font: 600 17px/1 var(--pw-sub-serif); }
.pw-subpage .rv-summary span { margin-top: 3px; color: rgba(23, 25, 24, .42); font-size: 6px; letter-spacing: .35px; text-transform: uppercase; }
.pw-subpage .rv-board-title { display: flex; align-items: end; justify-content: space-between; margin: 14px 0 4px; }
.pw-subpage .rv-board-title h3 { margin: 0; font: 600 20px/1 var(--pw-sub-serif); letter-spacing: -.45px; }
.pw-subpage .rv-board-title span { color: var(--pw-sub-sage); font-size: 7px; font-weight: 730; text-transform: uppercase; }
.pw-subpage .rv-guest-row { display: grid; min-height: 58px; grid-template-columns: 33px 1fr auto; align-items: center; gap: 9px; border-bottom: 1px solid rgba(23, 25, 24, .075); }
.pw-subpage .rv-guest-row > i { display: grid; width: 32px; height: 32px; place-items: center; border-radius: 50%; background: rgba(212, 119, 107, .11); color: #a85f57; font-size: 7px; font-style: normal; font-weight: 760; }
.pw-subpage .rv-guest-row strong, .pw-subpage .rv-guest-row small { display: block; }
.pw-subpage .rv-guest-row strong { font-size: 9px; }
.pw-subpage .rv-guest-row small { margin-top: 2px; color: rgba(23, 25, 24, .43); font-size: 7px; }
.pw-subpage .rv-pill { border-radius: 99px; background: rgba(101, 125, 115, .1); color: var(--pw-sub-sage); padding: 5px 7px; font-size: 6px; font-weight: 760; text-transform: uppercase; }
.pw-subpage .rv-pill--wait { background: rgba(201, 144, 45, .1); color: #a97825; }
.pw-subpage .rv-pill--no { background: rgba(166, 86, 75, .09); color: #9c5a51; }

.pw-subpage .rv-scroll-story .gh-story__media img { object-position: center center; }
.pw-subpage .rv-scroll-story .phone-scroll-story__sticky::after { background: linear-gradient(90deg, rgba(13, 16, 15, .94) 0%, rgba(13, 16, 15, .76) 43%, rgba(13, 16, 15, .08) 72%, rgba(13, 16, 15, .2) 100%); }
.pw-subpage .rv-scroll-story .gh-story__inner { grid-template-columns: .92fr 1.08fr; grid-template-rows: auto 1fr; align-items: stretch; gap: 18px 70px; padding-block: 58px 38px; }
.pw-subpage .rv-scroll-story .gh-story__copy { grid-column: 1; grid-row: 1; align-self: start; }
.pw-subpage .rv-scroll-story .gh-story__copy h2 { font-size: clamp(48px, 4.6vw, 67px); }
.pw-subpage .rv-response-shell { position: relative; width: 420px; align-self: end; grid-column: 1; grid-row: 2; border: 1px solid rgba(255, 255, 255, .76); border-radius: 32px; background: rgba(255, 255, 255, .24); box-shadow: 0 35px 90px rgba(0, 0, 0, .3); padding: 10px; transform: translateY(var(--phone-shell-y, 7px)) rotate(var(--phone-shell-rotate, -.4deg)); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); }
.pw-subpage .rv-response-screen { overflow: hidden; border-radius: 23px; background: rgba(252, 250, 245, .96); color: var(--pw-sub-ink); padding: 18px; transform: translateY(var(--timeline-ui-y, 0)); will-change: transform; }
.pw-subpage .rv-response-head { display: flex; align-items: center; justify-content: space-between; gap: 15px; border-bottom: 1px solid rgba(23, 25, 24, .09); padding-bottom: 12px; }
.pw-subpage .rv-response-head span { color: var(--pw-sub-sage); font-size: 7px; font-weight: 750; letter-spacing: .65px; text-transform: uppercase; }
.pw-subpage .rv-response-head strong { font-size: 10px; }
.pw-subpage .rv-response-person { display: grid; grid-template-columns: 38px 1fr auto; align-items: center; gap: 10px; padding: 13px 0; }
.pw-subpage .rv-response-person > i { display: grid; width: 37px; height: 37px; place-items: center; border-radius: 50%; background: var(--pw-sub-sage); color: #fff; font-size: 8px; font-style: normal; font-weight: 760; }
.pw-subpage .rv-response-person strong, .pw-subpage .rv-response-person small { display: block; }
.pw-subpage .rv-response-person strong { font-size: 10px; }
.pw-subpage .rv-response-person small { margin-top: 2px; color: rgba(23, 25, 24, .43); font-size: 7px; }
.pw-subpage .rv-response-person > b { color: var(--pw-sub-sage); font-size: 8px; }
.pw-subpage .rv-choice { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; }
.pw-subpage .rv-choice span { border: 1px solid rgba(23, 25, 24, .1); border-radius: 11px; background: #fff; padding: 9px; color: rgba(23, 25, 24, .5); font-size: 8px; font-weight: 700; text-align: center; }
.pw-subpage .rv-choice .is-selected { border-color: rgba(101, 125, 115, .26); background: rgba(101, 125, 115, .1); color: var(--pw-sub-sage); }
.pw-subpage .rv-detail-line { display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(23, 25, 24, .075); padding: 11px 2px; font-size: 8px; }
.pw-subpage .rv-detail-line span { color: rgba(23, 25, 24, .5); }
.pw-subpage .rv-submit { margin-top: 11px; border-radius: 11px; background: var(--pw-sub-ink); color: #fff; padding: 11px; font-size: 8px; font-weight: 740; text-align: center; }

@media (max-width: 1020px) {
  .pw-subpage .rv-board-frame { right: -22px; width: 420px; }
  .pw-subpage .rv-scroll-story .gh-story__inner { grid-template-columns: 1fr .8fr; gap: 18px 35px; }
  .pw-subpage .rv-response-shell { width: 390px; }
}

@media (max-width: 860px) {
  .pw-subpage .rv-hero::before { background: linear-gradient(180deg, rgba(247, 244, 237, .99) 0%, rgba(247, 244, 237, .93) 42%, rgba(247, 244, 237, .27) 70%, rgba(23, 25, 24, .17) 100%); }
  .pw-subpage .rv-hero .gh-hero__media img { object-position: 54% center; }
  .pw-subpage .rv-hero .gh-hero__inner { grid-template-columns: 1fr; }
  .pw-subpage .rv-board-frame { right: 0; }
  .pw-subpage .rv-scroll-story .phone-scroll-story__sticky::after { background: linear-gradient(180deg, rgba(13, 16, 15, .94) 0%, rgba(13, 16, 15, .77) 44%, rgba(13, 16, 15, .12) 73%, rgba(13, 16, 15, .34) 100%); }
  .pw-subpage .rv-scroll-story .gh-story__inner { grid-template-columns: 1fr; grid-template-rows: auto 1fr; gap: 32px; padding-block: 67px 44px; }
  .pw-subpage .rv-scroll-story .gh-story__copy, .pw-subpage .rv-response-shell { grid-column: 1; }
  .pw-subpage .rv-response-shell { justify-self: end; }
}

@media (max-width: 620px) {
  .pw-subpage .rv-board-frame { width: min(350px, 92vw); height: 440px; border-radius: 33px; }
  .pw-subpage .rv-board-screen { border-radius: 23px; padding: 17px; }
  .pw-subpage .rv-response-shell { width: min(350px, 92vw); border-radius: 29px; }
  .pw-subpage .rv-response-screen { border-radius: 21px; padding: 16px; }
}
