:root {
  --ph-navy: #071747;
  --ph-blue: #2944df;
  --ph-coral: #cf3a31;
  --ph-mint: #45b78b;
  --ph-ink: #18233b;
  --ph-muted: #657189;
  --ph-line: rgba(7, 23, 71, 0.12);
  --ph-paper: #f7f4ec;
  --ph-white: #fff;
  --ph-shadow: 0 28px 70px rgba(7, 23, 71, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.postly-home {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  color: var(--ph-ink);
  background:
    radial-gradient(circle at 88% 8%, rgba(41, 68, 223, 0.11), transparent 32rem),
    radial-gradient(circle at 7% 40%, rgba(69, 183, 139, 0.08), transparent 30rem),
    #fbfbf9;
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.postly-home button,
.postly-home input,
.postly-home textarea {
  font: inherit;
}

.postly-home a {
  color: inherit;
}

.ph-shell {
  width: min(calc(100% - 64px), 1280px);
  margin-inline: auto;
}

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

.ph-header {
  position: relative;
  z-index: 30;
  border-bottom: 1px solid rgba(7, 23, 71, 0.08);
  background: rgba(251, 251, 249, 0.88);
  backdrop-filter: blur(18px);
}

.ph-header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.ph-brand {
  display: inline-flex;
  align-items: center;
}

.ph-brand img {
  width: 112px;
  height: auto;
  display: block;
}

.ph-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  color: #4c5870;
  font-size: 0.82rem;
  font-weight: 760;
}

.ph-nav a {
  text-decoration: none;
}

.ph-nav > a:not(.ph-nav-cta):hover,
.ph-nav > a:not(.ph-nav-cta):focus-visible {
  color: var(--ph-blue);
}

.ph-nav-cta,
.ph-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border-radius: 8px;
  color: #fff !important;
  background: var(--ph-blue);
  box-shadow: 0 15px 30px rgba(41, 68, 223, 0.2);
  font-weight: 850;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.ph-nav-cta {
  min-height: 42px;
  padding: 0 17px;
}

.ph-nav-cta:hover,
.ph-nav-cta:focus-visible,
.ph-primary:hover,
.ph-primary:focus-visible {
  background: #1735d7;
  box-shadow: 0 18px 38px rgba(41, 68, 223, 0.27);
  transform: translateY(-2px);
  outline: none;
}

.ph-hero {
  min-height: min(880px, calc(100svh - 76px));
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(570px, 1.22fr);
  align-items: center;
  gap: clamp(48px, 6vw, 98px);
  padding-block: 78px;
}

.ph-hero-copy {
  position: relative;
  z-index: 4;
}

.ph-kicker,
.ph-step-number {
  margin: 0;
  color: var(--ph-blue);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ph-kicker {
  display: flex;
  align-items: center;
  gap: 9px;
}

.ph-kicker i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ph-coral);
  box-shadow: 0 0 0 5px rgba(207, 58, 49, 0.1);
}

.ph-hero h1 {
  max-width: 720px;
  margin: 18px 0 14px;
  color: var(--ph-navy);
  font-size: clamp(3.65rem, 5.15vw, 5.65rem);
  font-weight: 920;
  letter-spacing: -0.067em;
  line-height: 0.91;
}

.ph-hero h2 {
  max-width: 600px;
  margin: 0;
  color: #223152;
  font-size: clamp(1.3rem, 1.7vw, 1.75rem);
  letter-spacing: -0.035em;
  line-height: 1.08;
}

.ph-hero-lede {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--ph-muted);
  font-size: 1rem;
  font-weight: 580;
  line-height: 1.58;
}

.ph-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}

.ph-primary {
  min-height: 52px;
  padding: 0 21px;
  font-size: 0.86rem;
}

.ph-primary span {
  font-size: 1.1rem;
}

.ph-secondary {
  color: var(--ph-navy);
  font-size: 0.84rem;
  font-weight: 850;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.ph-hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin-top: 34px;
  color: #6a7488;
  font-size: 0.68rem;
  font-weight: 800;
}

.ph-hero-notes span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.ph-hero-notes span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--ph-mint);
}

.ph-demo {
  min-width: 0;
  padding: 18px;
  border: 1px solid rgba(7, 23, 71, 0.11);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 36px 90px rgba(7, 23, 71, 0.13);
  backdrop-filter: blur(20px);
}

.ph-demo-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 3px 13px;
  color: #66738a;
  font-size: 0.62rem;
  font-weight: 880;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ph-demo-topline small {
  color: #8b94a5;
  font: inherit;
}

.ph-demo-tabs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
  padding: 6px;
  border-radius: 11px;
  background: #edf0f7;
}

.ph-demo-tabs button {
  min-height: 38px;
  padding: 0 10px;
  border: 0;
  border-radius: 7px;
  color: #657087;
  background: transparent;
  font-size: 0.7rem;
  font-weight: 850;
  cursor: pointer;
  transition: color 160ms ease, background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.ph-demo-tabs button:hover,
.ph-demo-tabs button:focus-visible {
  color: var(--ph-blue);
  outline: none;
}

.ph-demo-tabs button.is-active {
  color: var(--ph-navy);
  background: #fff;
  box-shadow: 0 7px 20px rgba(7, 23, 71, 0.1);
}

.ph-demo.is-ready .ph-demo-tabs button.is-active {
  animation: ph-tab-cue 900ms ease 420ms 1 backwards;
}

@keyframes ph-tab-cue {
  0%, 100% { scale: 1; box-shadow: 0 7px 20px rgba(7, 23, 71, 0.1); }
  48% { scale: 1.05; box-shadow: 0 0 0 5px rgba(41, 68, 223, 0.13), 0 9px 26px rgba(7, 23, 71, 0.15); }
}

.ph-demo-stage {
  position: relative;
  min-height: 500px;
  margin-top: 16px;
  overflow: hidden;
  border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(233, 237, 251, 0.9)),
    #f0f2f8;
}

.ph-demo-data {
  position: absolute;
  z-index: 3;
  width: 76%;
  top: 26px;
  left: 18px;
  overflow: hidden;
  border: 1px solid rgba(7, 23, 71, 0.12);
  border-radius: 11px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 24px 54px rgba(7, 23, 71, 0.16);
  transition: opacity 140ms ease, transform 140ms ease;
}

.ph-data-heading {
  min-height: 47px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 14px;
  border-bottom: 1px solid #e8eaf0;
  color: #2a3651;
  font-size: 0.65rem;
  font-weight: 850;
}

.ph-data-heading > span,
.ph-data-heading > strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ph-data-heading i {
  width: 8px;
  height: 8px;
  border-radius: 3px;
  background: var(--ph-blue);
}

.ph-data-heading strong {
  color: #43846b;
  white-space: nowrap;
}

.ph-data-heading strong b {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ph-mint);
  box-shadow: 0 0 0 4px rgba(69, 183, 139, 0.11);
}

.ph-demo-data table,
.ph-clean-card table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.ph-demo-data th,
.ph-demo-data td,
.ph-clean-card th,
.ph-clean-card td {
  padding: 10px 13px;
  border-bottom: 1px solid #eceef3;
  overflow: hidden;
  color: #59657b;
  font-size: 0.58rem;
  text-align: left;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ph-demo-data th,
.ph-clean-card th {
  color: #8a92a2;
  background: #fafafb;
  font-size: 0.48rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ph-demo-data th:first-child,
.ph-demo-data td:first-child {
  width: 29%;
}

.ph-demo-data th:nth-child(2),
.ph-demo-data td:nth-child(2) {
  width: 36%;
}

.ph-demo-data tr.is-active td {
  color: #1739c5;
  background: #edf1ff;
  font-weight: 850;
}

.ph-demo-data tr.is-active td:first-child {
  box-shadow: inset 3px 0 0 var(--ph-coral);
}

.ph-data-footer {
  min-height: 37px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 13px;
  color: #738096;
  background: #fafafb;
  font-size: 0.47rem;
  font-weight: 760;
}

.ph-data-footer span::before,
.ph-clean-card footer span::before {
  content: "\2713";
  margin-right: 4px;
  color: var(--ph-mint);
  font-weight: 950;
}

.ph-demo-postcard {
  position: absolute;
  z-index: 2;
  width: 83%;
  aspect-ratio: 1.5 / 1;
  right: 17px;
  bottom: 24px;
  display: grid;
  grid-template-columns: 28% minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(7, 23, 71, 0.16);
  border-radius: 5px;
  color: var(--ph-navy);
  background: var(--ph-paper);
  box-shadow: var(--ph-shadow);
  transition: opacity 140ms ease, transform 140ms ease;
}

.ph-demo-postcard::after,
.ph-mail-front::after,
.ph-mail-back::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 6px;
  background: var(--ph-coral);
}

.ph-demo-brand {
  grid-row: 1 / span 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 24px 16px 18px;
  color: #fff;
  background: var(--ph-navy);
}

.ph-demo-brand > span {
  font-size: 0.48rem;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.ph-demo-brand > strong {
  margin-top: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1rem, 1.65vw, 1.42rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.ph-demo-brand > small {
  max-width: 110px;
  margin-top: auto;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.45);
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.44rem;
  font-weight: 750;
  line-height: 1.35;
}

.ph-demo-message {
  align-self: center;
  padding: 27px 28px 12px;
}

.ph-demo-message > p {
  margin: 0 0 10px;
  color: #6b7587;
  font-size: 0.47rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ph-demo-message h3 {
  max-width: 370px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.35rem, 2.15vw, 2rem);
  letter-spacing: -0.035em;
  line-height: 0.98;
}

.ph-demo-message h3 span {
  color: var(--ph-coral);
}

.ph-demo-message h3 b {
  font-weight: inherit;
}

.ph-demo-message > div {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 22px;
}

.ph-demo-message > div span {
  min-height: 27px;
  display: flex;
  align-items: center;
  padding-inline: 9px;
  border-left: 1px solid rgba(7, 23, 71, 0.17);
  color: #4e5a70;
  font-size: 0.42rem;
  font-weight: 760;
}

.ph-demo-message > div span:first-child {
  padding-left: 0;
  border-left: 0;
}

.ph-demo-postcard > footer {
  min-height: 39px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 25px;
  padding-bottom: 5px;
  border-top: 1px solid rgba(7, 23, 71, 0.16);
  color: #687287;
  font-size: 0.47rem;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ph-demo-postcard > footer strong {
  color: var(--ph-navy);
}

.ph-demo-badge {
  position: absolute;
  z-index: 5;
  right: 5px;
  bottom: 6px;
  min-height: 39px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid rgba(7, 23, 71, 0.1);
  border-radius: 999px;
  color: #526078;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 30px rgba(7, 23, 71, 0.13);
  font-size: 0.59rem;
  font-weight: 820;
}

.ph-demo-badge i {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--ph-mint);
  font-style: normal;
}

.ph-demo.is-switching .ph-demo-data,
.ph-demo.is-switching .ph-demo-postcard {
  opacity: 0.52;
  transform: translateY(4px);
}

.ph-section-nav {
  border-block: 1px solid rgba(7, 23, 71, 0.09);
  background: rgba(255, 255, 255, 0.9);
}

.ph-section-nav .ph-shell {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.ph-section-nav a {
  min-width: 0;
  min-height: 92px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  grid-template-rows: auto auto;
  column-gap: 13px;
  align-content: center;
  padding: 0 24px;
  color: var(--ph-navy);
  text-decoration: none;
  transition: color 160ms ease, background 160ms ease;
}

.ph-section-nav a + a {
  border-left: 1px solid rgba(7, 23, 71, 0.09);
}

.ph-section-nav a:hover,
.ph-section-nav a:focus-visible {
  color: var(--ph-blue);
  background: #f7f8fc;
}

.ph-section-nav span {
  grid-row: 1 / span 2;
  align-self: center;
  color: var(--ph-blue);
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.ph-section-nav strong {
  overflow: hidden;
  font-size: 0.76rem;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ph-section-nav small {
  overflow: hidden;
  margin-top: 2px;
  color: var(--ph-muted);
  font-size: 0.58rem;
  font-weight: 680;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ph-zigzag {
  overflow: hidden;
}

.ph-step {
  height: 760px;
  display: grid;
  grid-template-columns: minmax(340px, 0.78fr) minmax(560px, 1.22fr);
  gap: clamp(58px, 8vw, 118px);
  align-items: center;
  padding-block: 80px;
  scroll-margin-top: 20px;
}

.ph-step + .ph-step {
  border-top: 1px solid rgba(7, 23, 71, 0.08);
}

.ph-step-reverse .ph-step-copy {
  order: 2;
}

.ph-step-reverse .ph-step-visual {
  order: 1;
}

.ph-step-copy h2,
.ph-fit h2,
.ph-contact h2 {
  margin: 16px 0 0;
  color: var(--ph-navy);
  font-size: clamp(2.7rem, 4vw, 4.45rem);
  font-weight: 920;
  letter-spacing: -0.06em;
  line-height: 0.96;
}

.ph-step-copy > p:not(.ph-step-number) {
  margin: 24px 0 0;
  color: var(--ph-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.ph-step-copy ul {
  display: grid;
  gap: 13px;
  margin: 27px 0 0;
  padding: 0;
  list-style: none;
}

.ph-step-copy li {
  position: relative;
  padding-left: 27px;
  color: #344158;
  font-size: 0.84rem;
  font-weight: 760;
  line-height: 1.4;
}

.ph-step-copy li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  top: -2px;
  color: var(--ph-mint);
  font-size: 1rem;
  font-weight: 950;
}

.ph-step-visual {
  position: relative;
  height: 500px;
  min-width: 0;
  min-height: 0;
  border: 1px solid rgba(7, 23, 71, 0.1);
  border-radius: 22px;
  background:
    radial-gradient(circle at 80% 20%, rgba(41, 68, 223, 0.13), transparent 16rem),
    linear-gradient(145deg, #f8f9fc, #eef1f7);
  box-shadow: 0 30px 76px rgba(7, 23, 71, 0.11);
}

.ph-file-stack {
  position: absolute;
  z-index: 1;
  top: 54px;
  left: 35px;
  width: 46%;
  display: grid;
  gap: 8px;
}

.ph-file-stack span {
  min-height: 43px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 12px;
  border: 1px solid rgba(7, 23, 71, 0.1);
  border-radius: 8px;
  color: #4b5870;
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 0 8px 24px rgba(7, 23, 71, 0.08);
  font-size: 0.61rem;
  font-weight: 760;
}

.ph-file-stack span:nth-child(2) {
  transform: translateX(18px);
}

.ph-file-stack span:nth-child(3) {
  transform: translateX(38px);
}

.ph-file-stack b {
  min-width: 42px;
  min-height: 22px;
  display: grid;
  place-items: center;
  border-radius: 5px;
  color: #fff;
  background: var(--ph-blue);
  font-size: 0.48rem;
}

.ph-file-stack span:nth-child(2) b {
  background: #328b6e;
}

.ph-file-stack span:nth-child(3) b {
  background: #b84b44;
}

.ph-clean-card {
  position: absolute;
  z-index: 2;
  width: 74%;
  right: 30px;
  bottom: 48px;
  overflow: hidden;
  border: 1px solid rgba(7, 23, 71, 0.12);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 26px 65px rgba(7, 23, 71, 0.17);
}

.ph-clean-card > div {
  min-height: 53px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 15px;
  border-bottom: 1px solid #e8eaf0;
  color: #2b3852;
  font-size: 0.68rem;
}

.ph-clean-card > div span {
  color: #4d8a70;
  font-size: 0.6rem;
  font-weight: 850;
}

.ph-clean-card tr.is-active td {
  color: #1739c5;
  background: #edf1ff;
  font-weight: 850;
}

.ph-clean-card tr.is-active td:first-child {
  box-shadow: inset 3px 0 0 var(--ph-coral);
}

.ph-clean-card footer {
  min-height: 40px;
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 0 14px;
  color: #778196;
  background: #fafafb;
  font-size: 0.5rem;
  font-weight: 750;
}

.ph-target-visual {
  isolation: isolate;
  overflow: hidden;
}

.ph-target-map {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    linear-gradient(28deg, transparent 47%, rgba(145, 154, 174, 0.2) 47% 49%, transparent 49%) 0 0 / 150px 96px,
    linear-gradient(114deg, transparent 46%, rgba(145, 154, 174, 0.18) 46% 49%, transparent 49%) 0 0 / 180px 130px,
    repeating-linear-gradient(0deg, transparent 0 54px, rgba(145, 154, 174, 0.12) 54px 56px),
    repeating-linear-gradient(90deg, transparent 0 76px, rgba(145, 154, 174, 0.11) 76px 78px),
    linear-gradient(145deg, #f8f9fc, #eef1f7);
}

.ph-target-area {
  position: absolute;
  width: 270px;
  height: 270px;
  left: 55px;
  top: 92px;
  border: 2px solid rgba(41, 68, 223, 0.82);
  border-radius: 48% 52% 42% 58% / 57% 43% 57% 43%;
  background: rgba(41, 68, 223, 0.11);
  box-shadow: 0 0 0 14px rgba(41, 68, 223, 0.035);
  transform: rotate(-7deg);
}

.ph-target-map > b {
  position: absolute;
  z-index: 2;
  left: 104px;
  top: 210px;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 13px;
  border: 1px solid rgba(7, 23, 71, 0.1);
  border-radius: 999px;
  color: var(--ph-navy);
  background: #fff;
  box-shadow: 0 12px 30px rgba(7, 23, 71, 0.14);
  font-size: 0.61rem;
  font-weight: 850;
}

.ph-target-map > b i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ph-blue);
  box-shadow: 0 0 0 5px rgba(41, 68, 223, 0.12);
}

.ph-map-dot {
  position: absolute;
  z-index: 1;
  width: 9px;
  height: 9px;
  border: 2px solid #fff;
  border-radius: 50%;
  background: var(--ph-coral);
  box-shadow: 0 3px 10px rgba(7, 23, 71, 0.22);
}

.ph-map-dot-one { left: 92px; top: 148px; }
.ph-map-dot-two { left: 226px; top: 132px; }
.ph-map-dot-three { left: 174px; top: 307px; }
.ph-map-dot-four { left: 298px; top: 264px; }

.ph-target-card {
  position: absolute;
  z-index: 3;
  width: 52%;
  right: 28px;
  top: 51px;
  overflow: hidden;
  border: 1px solid rgba(7, 23, 71, 0.11);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 26px 65px rgba(7, 23, 71, 0.17);
}

.ph-target-card header {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 17px;
  border-bottom: 1px solid #e8eaf0;
}

.ph-target-card header span {
  display: grid;
  gap: 3px;
  color: #2b3852;
  font-size: 0.7rem;
  font-weight: 900;
}

.ph-target-card header small {
  color: #7d8799;
  font-size: 0.48rem;
  font-weight: 700;
}

.ph-target-card header strong {
  color: var(--ph-blue);
  font-size: 1rem;
}

.ph-target-card > div {
  min-height: 72px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 11px;
  align-items: center;
  padding: 0 16px;
  border-bottom: 1px solid #eceef3;
}

.ph-target-card > div > i {
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--ph-mint);
  font-size: 0.55rem;
  font-style: normal;
  font-weight: 900;
}

.ph-target-card > div span {
  display: grid;
  gap: 3px;
  color: #344158;
  font-size: 0.62rem;
  font-weight: 850;
}

.ph-target-card > div small {
  color: #8992a3;
  font-size: 0.46rem;
  font-weight: 650;
}

.ph-target-card > div b {
  color: #667188;
  font-size: 0.58rem;
}

.ph-target-card footer {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 16px;
  color: #4e5a70;
  background: #f8faf9;
  font-size: 0.52rem;
  font-weight: 800;
}

.ph-target-card footer span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.ph-target-card footer i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--ph-mint);
  box-shadow: 0 0 0 5px rgba(65, 177, 140, 0.12);
}

.ph-target-card footer strong {
  color: #31745e;
}

.ph-rules-visual {
  display: grid;
  grid-template-columns: minmax(210px, 0.76fr) 38px minmax(270px, 1fr);
  gap: 12px;
  align-items: center;
  padding: 38px;
}

.ph-rule-card {
  overflow: hidden;
  border: 1px solid rgba(7, 23, 71, 0.11);
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 20px 48px rgba(7, 23, 71, 0.12);
}

.ph-rule-card > p {
  min-height: 48px;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0 14px;
  border-bottom: 1px solid #e8eaf0;
  color: #2c3952;
  font-size: 0.66rem;
  font-weight: 900;
}

.ph-rule-card > div {
  display: grid;
  gap: 6px;
  padding: 15px 14px;
  border-bottom: 1px solid #eef0f4;
}

.ph-rule-card > div span {
  color: var(--ph-blue);
  font-size: 0.47rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ph-rule-card > div strong {
  color: #324058;
  font-size: 0.7rem;
}

.ph-rule-card > div b {
  color: #7b8495;
  font-size: 0.55rem;
}

.ph-flow-arrow {
  color: var(--ph-blue);
  font-size: 2rem;
  font-weight: 400;
  text-align: center;
}

.ph-version-stack {
  position: relative;
  min-height: 330px;
}

.ph-version-stack article {
  position: absolute;
  width: 94%;
  aspect-ratio: 1.5 / 1;
  right: 0;
  display: grid;
  align-content: center;
  gap: 13px;
  padding: 27px 25px;
  overflow: hidden;
  border: 1px solid rgba(7, 23, 71, 0.12);
  border-radius: 6px;
  background: var(--ph-paper);
  box-shadow: 0 22px 50px rgba(7, 23, 71, 0.14);
}

.ph-version-stack article:first-child {
  z-index: 2;
  top: 18px;
}

.ph-version-stack article:last-child {
  z-index: 1;
  top: 70px;
  right: 18px;
  opacity: 0.72;
  transform: rotate(2deg);
}

.ph-version-stack article::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: var(--ph-coral);
}

.ph-version-stack small {
  color: #6e788b;
  font-size: 0.46rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.ph-version-stack h3 {
  margin: 0;
  color: var(--ph-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.25rem, 2vw, 1.8rem);
  letter-spacing: -0.035em;
  line-height: 1;
}

.ph-version-stack h3 span {
  color: var(--ph-coral);
}

.ph-version-stack footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 13px;
  border-top: 1px solid rgba(7, 23, 71, 0.15);
  color: var(--ph-navy);
  font-size: 0.52rem;
  font-weight: 900;
  text-transform: uppercase;
}

.ph-version-stack footer b {
  color: #7b8493;
  font-weight: 750;
}

.ph-mail-visual {
  min-height: 500px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-content: center;
  padding: 34px;
}

.ph-mail-visual figure {
  min-width: 0;
  display: grid;
  gap: 9px;
  margin: 0;
}

.ph-mail-visual figcaption {
  color: #657189;
  font-size: 0.55rem;
  font-weight: 800;
}

.ph-mail-visual figcaption span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  margin-right: 6px;
  padding: 0 8px;
  border-radius: 999px;
  color: #fff;
  background: var(--ph-blue);
  font-size: 0.47rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.ph-mail-front,
.ph-mail-back {
  position: relative;
  aspect-ratio: 1.5 / 1;
  overflow: hidden;
  border: 1px solid rgba(7, 23, 71, 0.13);
  border-radius: 5px;
  background: var(--ph-paper);
  box-shadow: 0 20px 46px rgba(7, 23, 71, 0.14);
}

.ph-mail-front {
  display: grid;
  grid-template-columns: 31% minmax(0, 1fr);
  grid-template-rows: minmax(0, 1fr) auto;
}

.ph-mail-front > div {
  grid-row: 1 / span 2;
  display: flex;
  flex-direction: column;
  padding: 19px 12px 14px;
  color: #fff;
  background: var(--ph-navy);
}

.ph-mail-front > div small {
  font-size: 0.36rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ph-mail-front > div strong {
  margin-top: 6px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.ph-mail-front > div span {
  margin-top: auto;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.36rem;
  font-weight: 750;
}

.ph-mail-front section {
  align-self: center;
  padding: 18px 16px 8px;
}

.ph-mail-front section p {
  margin: 0 0 7px;
  color: #6b7588;
  font-size: 0.35rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ph-mail-front section h3 {
  margin: 0;
  color: var(--ph-navy);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(0.95rem, 1.4vw, 1.3rem);
  letter-spacing: -0.03em;
  line-height: 1;
}

.ph-mail-front section h3 span {
  color: var(--ph-coral);
}

.ph-mail-front > footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 13px;
  padding-bottom: 5px;
  border-top: 1px solid rgba(7, 23, 71, 0.14);
  color: #778094;
  font-size: 0.34rem;
  font-weight: 850;
  text-transform: uppercase;
}

.ph-mail-front > footer b {
  color: var(--ph-navy);
}

.ph-mail-back {
  background: #fff;
}

.ph-mail-contact {
  position: absolute;
  width: 34%;
  inset: 0 auto 0 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 19px 12px;
  color: #fff;
  background: var(--ph-navy);
}

.ph-mail-contact strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.88rem;
  text-transform: uppercase;
}

.ph-mail-contact span:first-of-type {
  margin-top: auto;
}

.ph-mail-contact span {
  color: rgba(255, 255, 255, 0.73);
  font-size: 0.31rem;
  font-weight: 720;
}

.ph-mail-indicia {
  position: absolute;
  width: 31%;
  top: 14px;
  right: 13px;
  display: grid;
  gap: 2px;
  padding: 7px;
  border: 1px solid var(--ph-navy);
  color: var(--ph-navy);
  text-align: center;
  text-transform: uppercase;
}

.ph-mail-indicia small,
.ph-mail-indicia span {
  font-size: 0.27rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.ph-mail-indicia strong {
  font-size: 0.42rem;
  letter-spacing: 0.12em;
}

.ph-mail-back address {
  position: absolute;
  width: 48%;
  top: 52%;
  right: 15px;
  display: grid;
  justify-items: end;
  gap: 3px;
  color: var(--ph-navy);
  font-style: normal;
  text-align: right;
  text-transform: uppercase;
}

.ph-mail-back address strong {
  font-size: 0.66rem;
}

.ph-mail-back address span {
  font-size: 0.42rem;
  font-weight: 750;
}

.ph-mail-barcode {
  position: absolute;
  width: 58px;
  height: 21px;
  right: 14px;
  bottom: 17px;
  background: repeating-linear-gradient(90deg, var(--ph-navy) 0 2px, transparent 2px 4px, var(--ph-navy) 4px 5px, transparent 5px 7px);
}

.ph-mail-visual > p {
  grid-column: 1 / -1;
  margin: 2px 0 0;
  color: #929aa9;
  font-size: 0.53rem;
  font-weight: 700;
  text-align: right;
}

.ph-fit {
  padding-block: 110px;
  color: #fff;
  background:
    radial-gradient(circle at 80% 10%, rgba(81, 109, 255, 0.32), transparent 28rem),
    var(--ph-navy);
}

.ph-fit .ph-kicker {
  color: #aebcff;
}

.ph-fit h2 {
  max-width: 1040px;
  color: #fff;
}

.ph-fit-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 48px;
}

.ph-fit-list span {
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 0 21px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.8rem;
  font-weight: 780;
}

.ph-fit-list span::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 12px;
  border-radius: 50%;
  background: var(--ph-mint);
}

.ph-contact {
  padding-block: 110px;
  background: #f1f3f8;
}

.ph-contact-grid {
  display: grid;
  grid-template-columns: minmax(330px, 0.75fr) minmax(520px, 1.25fr);
  gap: clamp(54px, 8vw, 118px);
  align-items: start;
}

.ph-contact-copy > p:not(.ph-step-number) {
  margin: 22px 0 0;
  color: var(--ph-muted);
  font-size: 0.96rem;
  line-height: 1.6;
}

.ph-contact-copy > a {
  display: inline-block;
  margin-top: 28px;
  color: var(--ph-navy);
  font-size: 0.92rem;
  font-weight: 850;
  text-underline-offset: 5px;
}

.ph-contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 15px;
  padding: 28px;
  border: 1px solid rgba(7, 23, 71, 0.1);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 24px 60px rgba(7, 23, 71, 0.1);
}

.ph-contact-form label {
  display: grid;
  gap: 7px;
}

.ph-contact-form label > span {
  color: #4d5b72;
  font-size: 0.66rem;
  font-weight: 820;
}

.ph-contact-form input,
.ph-contact-form textarea {
  width: 100%;
  border: 1px solid #d7dbe5;
  border-radius: 8px;
  color: var(--ph-ink);
  background: #fbfbfc;
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.ph-contact-form input {
  min-height: 48px;
  padding: 0 13px;
}

.ph-contact-form textarea {
  min-height: 120px;
  padding: 12px 13px;
  resize: vertical;
}

.ph-contact-form input:focus,
.ph-contact-form textarea:focus {
  border-color: var(--ph-blue);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(41, 68, 223, 0.1);
}

.ph-contact-form input::placeholder,
.ph-contact-form textarea::placeholder {
  color: #9aa2af;
}

.ph-form-wide,
.ph-contact-form button {
  grid-column: 1 / -1;
}

.ph-contact-form button {
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 17px;
  border: 0;
  border-radius: 8px;
  color: #fff;
  background: var(--ph-blue);
  box-shadow: 0 13px 28px rgba(41, 68, 223, 0.2);
  font-size: 0.75rem;
  font-weight: 870;
  cursor: pointer;
}

.ph-contact-form button:hover,
.ph-contact-form button:focus-visible {
  background: #1735d7;
  outline: none;
}

.ph-field-trap {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.ph-footer {
  color: rgba(255, 255, 255, 0.68);
  background: #050f31;
}

.ph-footer .ph-shell {
  min-height: 82px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  font-size: 0.68rem;
  font-weight: 680;
}

.ph-footer p {
  margin: 0;
}

.ph-footer nav {
  display: flex;
  justify-content: center;
  gap: 22px;
}

.ph-footer a {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.ph-footer a:hover,
.ph-footer a:focus-visible {
  text-decoration: underline;
  text-underline-offset: 4px;
}

@media (max-width: 1120px) {
  .ph-hero {
    grid-template-columns: minmax(0, 0.8fr) minmax(500px, 1.2fr);
    gap: 42px;
  }

  .ph-hero h1 {
    font-size: clamp(3.35rem, 5.6vw, 4.8rem);
  }

  .ph-step {
    grid-template-columns: minmax(300px, 0.8fr) minmax(490px, 1.2fr);
    gap: 52px;
  }

  .ph-rules-visual {
    padding: 26px;
  }

  .ph-mail-visual {
    padding: 25px;
  }
}

@media (max-width: 920px) {
  .ph-hero {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
    padding-block: 66px 80px;
  }

  .ph-hero-copy {
    max-width: 760px;
  }

  .ph-hero h1 {
    max-width: 780px;
    font-size: clamp(3.7rem, 8vw, 5.4rem);
  }

  .ph-demo {
    width: min(760px, 100%);
    margin-inline: auto;
  }

  .ph-section-nav a {
    min-height: 82px;
    padding-inline: 15px;
  }

  .ph-step,
  .ph-contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .ph-step {
    height: auto;
    min-height: 0;
    gap: 48px;
    padding-block: 84px;
  }

  .ph-step-copy {
    max-width: 720px;
  }

  .ph-step-reverse .ph-step-copy,
  .ph-step-reverse .ph-step-visual {
    order: initial;
  }

  .ph-step-visual {
    height: auto;
    min-height: 520px;
  }

  .ph-contact-copy {
    max-width: 700px;
  }
}

@media (max-width: 680px) {
  .ph-shell {
    width: min(calc(100% - 30px), 1280px);
  }

  .ph-header-inner {
    min-height: 64px;
  }

  .ph-brand img {
    width: 98px;
  }

  .ph-nav {
    gap: 0;
  }

  .ph-nav > a:not(.ph-nav-cta) {
    display: none;
  }

  .ph-nav-cta {
    min-height: 38px;
    padding-inline: 13px;
    font-size: 0.68rem;
  }

  .ph-hero {
    gap: 42px;
    padding-block: 48px 58px;
  }

  .ph-hero h1 {
    margin-top: 16px;
    font-size: clamp(3rem, 14vw, 4.2rem);
    line-height: 0.93;
  }

  .ph-hero h2 {
    font-size: 1.2rem;
  }

  .ph-hero-lede {
    font-size: 0.9rem;
  }

  .ph-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
  }

  .ph-primary {
    justify-content: space-between;
  }

  .ph-secondary {
    align-self: flex-start;
  }

  .ph-hero-notes {
    gap: 9px 15px;
  }

  .ph-demo {
    padding: 10px;
    border-radius: 15px;
  }

  .ph-demo-topline {
    padding: 4px 2px 10px;
  }

  .ph-demo-tabs {
    gap: 4px;
    padding: 4px;
  }

  .ph-demo-tabs button {
    min-height: 36px;
    padding-inline: 4px;
    font-size: 0.57rem;
  }

  .ph-demo-stage {
    min-height: 430px;
    margin-top: 10px;
  }

  .ph-demo-data {
    width: calc(100% - 18px);
    top: 12px;
    left: 9px;
  }

  .ph-data-heading {
    min-height: 41px;
    padding-inline: 9px;
    font-size: 0.57rem;
  }

  .ph-demo-data th,
  .ph-demo-data td {
    padding: 7px 6px;
    font-size: 0.48rem;
  }

  .ph-demo-data th {
    font-size: 0.4rem;
  }

  .ph-data-footer {
    min-height: 32px;
    gap: 8px;
    padding-inline: 8px;
    font-size: 0.39rem;
  }

  .ph-demo-postcard {
    width: calc(100% - 18px);
    right: 9px;
    bottom: 18px;
  }

  .ph-demo-brand {
    padding: 17px 9px 13px;
  }

  .ph-demo-brand > span {
    font-size: 0.34rem;
  }

  .ph-demo-brand > strong {
    font-size: clamp(0.75rem, 4.5vw, 1rem);
  }

  .ph-demo-brand > small {
    font-size: 0.31rem;
  }

  .ph-demo-message {
    padding: 19px 14px 7px;
  }

  .ph-demo-message > p {
    margin-bottom: 6px;
    font-size: 0.32rem;
  }

  .ph-demo-message h3 {
    font-size: clamp(1rem, 5.5vw, 1.42rem);
  }

  .ph-demo-message > div {
    margin-top: 14px;
  }

  .ph-demo-message > div span {
    min-height: 20px;
    padding-inline: 5px;
    font-size: 0.29rem;
  }

  .ph-demo-postcard > footer {
    min-height: 29px;
    margin-inline: 13px;
    font-size: 0.31rem;
  }

  .ph-demo-badge {
    min-height: 34px;
    right: 0;
    bottom: 3px;
    font-size: 0.49rem;
  }

  .ph-demo-badge i {
    width: 19px;
    height: 19px;
  }

  .ph-section-nav .ph-shell {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ph-section-nav a {
    min-height: 70px;
    padding-inline: 12px;
  }

  .ph-section-nav a:nth-child(3) {
    border-left: 0;
  }

  .ph-section-nav a:nth-child(n + 3) {
    border-top: 1px solid rgba(7, 23, 71, 0.09);
  }

  .ph-section-nav strong {
    font-size: 0.7rem;
  }

  .ph-section-nav small {
    font-size: 0.53rem;
  }

  .ph-step {
    gap: 36px;
    padding-block: 70px;
  }

  .ph-step-copy h2,
  .ph-fit h2,
  .ph-contact h2 {
    font-size: clamp(2.45rem, 12vw, 3.5rem);
  }

  .ph-step-copy > p:not(.ph-step-number) {
    margin-top: 20px;
    font-size: 0.91rem;
  }

  .ph-step-visual {
    min-height: 430px;
    border-radius: 16px;
  }

  .ph-file-stack {
    width: 72%;
    top: 27px;
    left: 17px;
  }

  .ph-file-stack span {
    min-height: 38px;
  }

  .ph-clean-card {
    width: calc(100% - 28px);
    right: 14px;
    bottom: 28px;
  }

  .ph-clean-card th,
  .ph-clean-card td {
    padding: 8px 7px;
    font-size: 0.47rem;
  }

  .ph-clean-card th {
    font-size: 0.4rem;
  }

  .ph-target-area {
    width: 220px;
    height: 220px;
    left: -28px;
    top: 105px;
  }

  .ph-target-map > b {
    left: 29px;
    top: 205px;
  }

  .ph-map-dot-one { left: 25px; top: 155px; }
  .ph-map-dot-two { left: 124px; top: 142px; }
  .ph-map-dot-three { left: 73px; top: 289px; }
  .ph-map-dot-four { left: 162px; top: 247px; }

  .ph-target-card {
    width: calc(100% - 88px);
    right: 15px;
    top: 48px;
  }

  .ph-rules-visual {
    min-height: 600px;
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
    padding: 18px;
  }

  .ph-flow-arrow {
    transform: rotate(90deg);
  }

  .ph-version-stack {
    min-height: 260px;
  }

  .ph-version-stack article {
    width: 94%;
    padding: 22px 19px;
  }

  .ph-mail-visual {
    min-height: 0;
    grid-template-columns: minmax(0, 1fr);
    padding: 18px;
  }

  .ph-mail-front section h3 {
    font-size: clamp(1.05rem, 5.5vw, 1.45rem);
  }

  .ph-mail-visual > p {
    grid-column: auto;
  }

  .ph-fit,
  .ph-contact {
    padding-block: 76px;
  }

  .ph-fit-list {
    grid-template-columns: minmax(0, 1fr);
    margin-top: 34px;
  }

  .ph-fit-list span {
    min-height: 57px;
  }

  .ph-contact-grid {
    gap: 38px;
  }

  .ph-contact-form {
    grid-template-columns: minmax(0, 1fr);
    padding: 18px;
  }

  .ph-contact-form label,
  .ph-form-wide,
  .ph-contact-form button {
    grid-column: 1;
  }

  .ph-footer .ph-shell {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    padding-block: 24px;
  }

  .ph-footer nav {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .ph-nav-cta,
  .ph-primary,
  .ph-demo-tabs button,
  .ph-demo-data,
  .ph-demo-postcard,
  .ph-contact-form input,
  .ph-contact-form textarea {
    transition: none;
  }

  .ph-demo.is-ready .ph-demo-tabs button.is-active {
    animation: none;
  }
}
