:root {
  --brand: #02387b;
  --brand-2: #0b5fbf;
  --brand-3: #4da3ff;
  --accent: #f4ce57;
  --ink: #000;
  --ink-soft: #141414;
  --text: #454545;
  --muted: #595959;
  --line: #d8e2f0;
  --line-soft: #d9d9d9;
  --surface: #f5f7fc;
  --surface-blue: #e8eff8;
  --footer: #060d1a;
  --footer-text: #8b9ab0;
  --dark-1: #040d1a;
  --dark-2: #082a52;
  --dark-3: #0a3568;
  --radius-lg: 24px;
  --radius-md: 18px;
  --shadow-soft: 0 24px 80px rgba(6, 13, 26, 0.14);
  --shadow-lift: 0 18px 38px rgba(2, 56, 123, 0.18);
  --motion-fast: 300ms;
  --motion-base: 700ms;
  --motion-hero: 800ms;
  --motion-phone: 1000ms;
  --ease-standard: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  margin: 0;
  background: #fff;
  color: var(--ink);
  font-family: "Plus Jakarta Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
}

body.admin-bar .site-nav {
  top: 56px;
}

@media (max-width: 782px) {
  body.admin-bar .site-nav {
    top: 70px;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

p,
h1,
h2,
h3,
figure,
blockquote {
  margin: 0;
}

button,
summary {
  font: inherit;
}

.container {
  width: min(1200px, calc(100% - 48px));
  margin-inline: auto;
}

:focus-visible {
  outline: 3px solid rgba(77, 163, 255, 0.55);
  outline-offset: 4px;
}

.pp-reveal {
  --lift-y: 0px;
  --motion-x: 0px;
  --motion-y: 60px;
  --motion-scale: 1;
  --motion-duration: var(--motion-base);
}

.pp-motion-ready .pp-reveal {
  opacity: 0;
  translate: var(--motion-x) var(--motion-y);
  scale: var(--motion-scale);
  transition:
    opacity var(--motion-duration) var(--ease-standard),
    translate var(--motion-duration) var(--ease-standard),
    scale var(--motion-duration) var(--ease-standard);
  transition-delay: var(--motion-delay, 0ms);
  will-change: opacity, translate, scale;
}

.pp-motion-ready .pp-reveal.is-visible {
  opacity: 1;
  translate: 0 var(--lift-y, 0px);
  scale: 1;
}

.pp-reveal[data-motion="left"] {
  --motion-x: -60px;
  --motion-y: 0px;
}

.pp-reveal[data-motion="right"] {
  --motion-x: 60px;
  --motion-y: 0px;
}

.pp-reveal[data-motion="scale"] {
  --motion-y: 0px;
  --motion-scale: 0.9;
}

.pp-reveal[data-motion="nav"] {
  --motion-y: -100px;
  --motion-duration: 600ms;
}

.pp-reveal[data-motion="phone"] {
  --motion-y: 80px;
  --motion-duration: var(--motion-phone);
}

.section-dark {
  position: relative;
  overflow: hidden;
  background: linear-gradient(158deg, var(--dark-1) 0%, var(--dark-2) 50%, var(--dark-3) 100%);
  color: #fff;
}

.noise-field {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.75;
  overflow: hidden;
}

.star-dot {
  position: absolute;
  left: var(--star-left);
  top: var(--star-top);
  width: var(--star-size);
  height: var(--star-size);
  border-radius: 50%;
  background: var(--brand-3);
  opacity: var(--star-opacity);
  animation: pp-star-drift var(--star-duration) ease-in-out infinite;
  animation-delay: var(--star-delay);
}

.site-nav {
  position: fixed;
  z-index: 50;
  top: 24px;
  left: 50%;
  width: min(1280px, calc(100% - 48px));
  min-height: 65px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 72px;
  background: rgba(255, 255, 255, 0.62);
  -webkit-backdrop-filter: blur(9px);
  backdrop-filter: blur(9px);
  box-shadow: none;
}

.pp-motion-ready .site-nav.pp-reveal {
  transition:
    opacity var(--motion-duration) var(--ease-out),
    translate var(--motion-duration) var(--ease-out),
    scale var(--motion-duration) var(--ease-out),
    background-color var(--motion-fast) var(--ease-standard),
    border-color var(--motion-fast) var(--ease-standard),
    box-shadow var(--motion-fast) var(--ease-standard),
    min-height var(--motion-fast) var(--ease-standard),
    padding var(--motion-fast) var(--ease-standard),
    -webkit-backdrop-filter var(--motion-fast) var(--ease-standard),
    backdrop-filter var(--motion-fast) var(--ease-standard);
  transition-delay: var(--motion-delay, 0ms);
}

.site-nav.is-scrolled,
.site-nav.is-open {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.85);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 42px rgba(4, 13, 26, 0.14);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ink-soft);
}

.brand-mark {
  width: 39px;
  height: 36px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  color: #262626;
  font-size: 16px;
  font-weight: 500;
}

.nav-links a.is-active {
  color: #000;
  font-weight: 600;
}

.button {
  --lift-y: 0px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 49px;
  padding: 12px 32px;
  border: 0;
  border-radius: 40px;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.25;
  white-space: nowrap;
  cursor: pointer;
  translate: 0 var(--lift-y);
  transition:
    background-color var(--motion-fast) var(--ease-standard),
    box-shadow var(--motion-base) var(--ease-standard),
    color var(--motion-fast) var(--ease-standard),
    opacity var(--motion-fast) var(--ease-standard),
    scale var(--motion-fast) var(--ease-standard),
    translate var(--motion-fast) var(--ease-standard);
}

.button-primary {
  background: linear-gradient(161deg, var(--brand) 0%, var(--brand-2) 100%);
  box-shadow: 0 10px 24px rgba(2, 56, 123, 0.14);
}

.button-primary:hover,
.button-primary:focus-visible {
  box-shadow: var(--shadow-lift);
}

.site-nav .button {
  justify-self: end;
}

.nav-menu-toggle {
  display: none;
}

.nav-links a,
.footer-links a,
.single-widget-list a,
.single-category-list a {
  transition: color var(--motion-fast) var(--ease-standard);
}

.hero {
  min-height: 1007px;
  padding-top: 153px;
}

.pardner-pal-home .hero {
  min-height: auto;
  padding: 153px 224px 482px;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pardner-pal-home .hero-content.container {
  width: 100%;
  max-width: 992px;
}

.hero h1 {
  max-width: 766px;
  color: #fff;
  font-size: 64px;
  font-weight: 800;
  line-height: 1.26;
}

.hero h1 em,
.split-copy h2 em {
  color: var(--accent);
  font-style: italic;
}

.hero-lede {
  max-width: 671px;
  margin-top: 24px;
  color: #fff;
  font-size: 20px;
  line-height: 1.4;
}

.hero-note {
  max-width: 671px;
  margin-top: 8px;
  color: #d9d9d9;
  font-size: 16px;
}

.store-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
}

.store-row-left {
  justify-content: flex-start;
}

.store-row-center {
  margin-top: 64px;
}

.store-button {
  --lift-y: 0px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: 170px;
  height: 56px;
  padding: 0 24px;
  border-radius: var(--radius-md);
  cursor: pointer;
  translate: 0 var(--lift-y);
  transition:
    background-color var(--motion-fast) var(--ease-standard),
    border-color var(--motion-fast) var(--ease-standard),
    box-shadow var(--motion-base) var(--ease-standard),
    opacity var(--motion-fast) var(--ease-standard),
    scale var(--motion-fast) var(--ease-standard),
    translate var(--motion-fast) var(--ease-standard);
}

.store-button img {
  width: 26px;
  height: 26px;
  object-fit: contain;
  transition: scale var(--motion-fast) var(--ease-standard);
}

.store-button span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
  white-space: nowrap;
}

.store-button small {
  color: #d9d9d9;
  font-size: 10px;
  font-weight: 400;
}

.store-button strong {
  color: #fff;
  font-size: 14px;
  font-weight: 600;
}

.store-button-glass {
  border: 0.8px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.12);
}

.store-button-glass:hover,
.store-button-glass:focus-visible {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.18);
}

.store-button-blue {
  background: var(--brand);
}

.store-button-blue:hover,
.store-button-blue:focus-visible {
  background: var(--brand-2);
  box-shadow: var(--shadow-lift);
}

.store-button-outline {
  border: 1px solid var(--brand);
  background: #fff;
}

.store-button-outline:hover,
.store-button-outline:focus-visible {
  background: var(--surface-blue);
  box-shadow: 0 14px 28px rgba(2, 56, 123, 0.12);
}

.store-button-outline img {
  filter: brightness(0) saturate(100%) invert(17%) sepia(78%) saturate(1683%) hue-rotate(191deg) brightness(87%) contrast(104%);
}

.store-button-outline small,
.store-button-outline strong {
  color: var(--brand);
}

.hero-phone {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: 0;
  width: 604px;
  max-width: calc(100vw - 48px);
  transform: translateX(-50%);
  transition: translate var(--motion-phone) var(--ease-out);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 540px;
  align-items: center;
  gap: 80px;
  padding: 83px 120px;
  background: #fff;
}

.split-copy {
  max-width: 580px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 8px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 4px 12px;
  border-radius: 40px;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  text-transform: uppercase;
}

.badge-blue {
  color: #fff;
  background: linear-gradient(171deg, var(--brand) 0%, var(--brand-2) 100%);
}

.badge-yellow {
  color: var(--brand);
  background: var(--accent);
  text-transform: none;
}

.badge-light {
  color: var(--brand);
  background: var(--surface-blue);
}

.split-copy h2,
.section-heading h2,
.problem-panel h2 {
  color: var(--ink);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.08;
}

.split-copy h2 em {
  color: var(--brand);
}

.split-copy > p {
  margin-top: 24px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.split-copy .button {
  margin-top: 28px;
}

.small-muted {
  color: #8c8c8c !important;
  font-size: 14px !important;
  line-height: 1.5 !important;
}

.phone-stage {
  position: relative;
  width: 540px;
  height: 600px;
}

.phone-bg {
  position: absolute;
  left: 0;
  top: 60px;
  width: 540px;
  height: 540px;
  border-radius: 40px;
  background: var(--surface);
}

.phone-bg-white {
  background: #fff;
}

.phone-device {
  position: absolute;
  top: 0;
  left: 85px;
  width: 369px;
  height: 600px;
  transition: translate var(--motion-base) var(--ease-standard);
}

.phone-frame {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.phone-screen {
  position: absolute;
  z-index: 2;
  top: 15px;
  left: 17px;
  width: 335px;
  height: 585px;
  object-fit: contain;
}

.problem-section {
  position: relative;
  min-height: 804px;
  overflow: hidden;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 100px 55px 100px 120px;
  background: #111;
}

.problem-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%),
    url("../img/problem-bg.png") center / cover no-repeat;
}

.problem-panel {
  position: relative;
  z-index: 1;
  width: min(735px, 100%);
  padding: 40px;
  border-radius: 40px;
  background: rgba(216, 226, 240, 0.6);
  backdrop-filter: blur(8px);
}

.problem-panel h2 {
  margin-top: 16px;
}

.problem-panel p {
  max-width: 533px;
  margin-top: 16px;
  color: #1f1f1f;
  line-height: 1.5;
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 40px;
}

.mini-card {
  --lift-y: 0px;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 74px;
  padding: 13px;
  border: 0.8px solid var(--line);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.35);
  color: var(--ink-soft);
  font-weight: 600;
  translate: 0 var(--lift-y);
  transition:
    background-color var(--motion-base) var(--ease-standard),
    border-color var(--motion-base) var(--ease-standard),
    box-shadow var(--motion-base) var(--ease-standard),
    translate var(--motion-base) var(--ease-standard);
}

.icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: var(--surface-blue);
  color: var(--brand);
  transition:
    background-color var(--motion-fast) var(--ease-standard),
    color var(--motion-fast) var(--ease-standard);
}

.mini-card .icon-box {
  width: 48px;
  height: 48px;
}

.icon-box svg,
.download-badge svg,
.social-links svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.social-links svg {
  width: 16px;
  height: 16px;
}

.section-pad {
  padding: 120px;
  background: #fff;
}

.section-anchor {
  position: relative;
  top: -112px;
  display: block;
  width: 0;
  height: 0;
  overflow: hidden;
}

.section-heading {
  max-width: 912px;
  margin: 0 auto 64px;
  text-align: center;
}

.section-heading h2 {
  margin-top: 16px;
}

.section-heading p {
  max-width: 580px;
  margin: 16px auto 0;
  color: var(--muted);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.feature-card,
.step-card,
.testimonial-grid figure {
  --lift-y: 0px;
  border: 0.8px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  translate: 0 var(--lift-y);
  transition:
    background-color var(--motion-base) var(--ease-standard),
    border-color var(--motion-base) var(--ease-standard),
    box-shadow var(--motion-base) var(--ease-standard),
    translate var(--motion-base) var(--ease-standard);
}

.feature-card {
  min-height: 180px;
  padding: 24px;
}

.feature-card h3,
.step-card h3 {
  margin-top: 12px;
  color: var(--ink-soft);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}

.feature-card p,
.step-card p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.57;
}

.feature-panel {
  grid-template-columns: 540px minmax(0, 580px);
  gap: 64px;
  justify-content: center;
  padding: 120px;
}

.feature-panel .phone-stage,
.feature-panel .split-copy {
  justify-self: center;
}

.feature-panel-tinted,
.preview-section,
.trust-section {
  background: var(--surface);
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  color: var(--text);
  font-size: 14px;
}

.check-list li {
  position: relative;
  padding-left: 30px;
  line-height: 1.55;
}

.check-list li::before,
.cta-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 2px;
  width: 18px;
  height: 18px;
  border: 1.6px solid var(--brand-2);
  border-radius: 50%;
}

.check-list li::after,
.cta-points li::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 5px;
  width: 5px;
  height: 9px;
  border-right: 1.6px solid var(--brand-2);
  border-bottom: 1.6px solid var(--brand-2);
  transform: rotate(45deg);
}

.steps-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 40px;
}

.steps-grid::before {
  content: "";
  position: absolute;
  left: 11%;
  right: 11%;
  top: 32px;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #b3cce8 12%, #b3cce8 88%, transparent 100%);
}

.step-card {
  position: relative;
  z-index: 1;
  min-height: 240px;
  padding: 24px;
  background: #fff;
}

.step-card img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.stats-media {
  --lift-y: 0px;
  position: relative;
  width: min(940px, 100%);
  height: 360px;
  margin-inline: auto;
  overflow: hidden;
  border: 0.8px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--brand);
  translate: 0 var(--lift-y);
  transition:
    box-shadow var(--motion-base) var(--ease-standard),
    translate var(--motion-base) var(--ease-standard);
}

.stats-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: scale var(--motion-base) var(--ease-standard);
}

.stats-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 56, 123, 0.15), rgba(2, 56, 123, 0.75));
}

.stats-overlay {
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: 0 86px 48px;
  text-align: center;
  color: #fff;
}

.stats-overlay strong {
  display: block;
  font-size: 40px;
  font-variant-numeric: tabular-nums;
  line-height: 1.5;
}

.stats-overlay span {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.testimonial-grid figure {
  padding: 25px;
  background: #fff;
  border-color: #8c8c8c;
}

.stars {
  color: #f5b51d;
  font-size: 18px;
  line-height: 1;
  letter-spacing: 0;
}

.testimonial-grid blockquote {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.57;
}

.testimonial-grid figcaption {
  margin-top: 12px;
  color: var(--ink-soft);
  font-weight: 600;
}

.cta-section {
  min-height: 594px;
  display: grid;
  place-items: center;
  padding: 96px 24px;
  text-align: center;
}

.cta-content {
  position: relative;
  z-index: 1;
  width: min(768px, 100%);
}

.download-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 24px;
  padding: 4px 16px;
  border: 0.8px solid rgba(77, 163, 255, 0.25);
  border-radius: 24px;
  background: rgba(77, 163, 255, 0.12);
  color: var(--brand-3);
  font-size: 12px;
  font-weight: 500;
}

.download-badge svg {
  width: 14px;
  height: 14px;
}

.cta-content h2 {
  max-width: 586px;
  margin: 24px auto 0;
  color: #fff;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.2;
}

.cta-content p {
  margin-top: 32px;
  color: #d9d9d9;
}

.cta-points {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
  color: #bfbfbf;
  font-size: 14px;
}

.cta-points li {
  position: relative;
  padding-left: 24px;
}

.cta-points li::before {
  width: 16px;
  height: 16px;
  border-color: var(--brand-3);
}

.cta-points li::after {
  left: 8px;
  top: 10px;
  transform: translate(-50%, -50%) rotate(45deg);
  border-color: var(--brand-3);
}

.faq-section {
  text-align: center;
}

.faq-list {
  width: min(720px, 100%);
  margin: 0 auto 44px;
  text-align: left;
}

.faq-item {
  border-bottom: 1px solid var(--line-soft);
}

.faq-item summary {
  --lift-y: 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 0 24px;
  color: var(--ink-soft);
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  translate: 0 var(--lift-y);
  transition:
    color var(--motion-fast) var(--ease-standard),
    translate var(--motion-fast) var(--ease-standard);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary span {
  position: relative;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.faq-item summary span::before,
.faq-item summary span::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 8px;
  width: 10px;
  height: 1.5px;
  border-radius: 2px;
  background: #000;
}

.faq-item summary span::after {
  transform: rotate(90deg);
  transition: transform var(--motion-fast) var(--ease-standard);
}

.faq-item[open] summary span::after {
  transform: rotate(0deg);
}

.faq-item p {
  padding: 0 24px 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.site-footer {
  padding: 64px 120px 24px;
  background: var(--footer);
  color: #fff;
}

.footer-main {
  display: grid;
  grid-template-columns: 440px minmax(0, 1fr);
  gap: 80px;
}

.footer-brand {
  max-width: 440px;
  padding-right: 120px;
}

.brand-footer {
  color: #fff;
}

.footer-brand p {
  margin-top: 20px;
  color: var(--footer-text);
  font-size: 14px;
  line-height: 1.25;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-links a,
.social-links .social-icon {
  --lift-y: 0px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--footer-text);
  translate: 0 var(--lift-y);
  transition:
    background-color var(--motion-fast) var(--ease-standard),
    color var(--motion-fast) var(--ease-standard),
    opacity var(--motion-fast) var(--ease-standard),
    scale var(--motion-fast) var(--ease-standard),
    translate var(--motion-fast) var(--ease-standard);
}

.social-links .social-icon {
  opacity: 0.72;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
}

.footer-links h2 {
  margin: 0 0 20px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
}

.footer-links a,
.footer-links span {
  display: block;
  margin-top: 16px;
  color: var(--footer-text);
  font-size: 14px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 41px;
  margin-top: 80px;
  padding-top: 1px;
  border-top: 0.8px solid rgba(255, 255, 255, 0.08);
  color: var(--footer-text);
  font-size: 12px;
}

.app-modal {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: none;
  place-items: center;
  padding: 32px;
  background: rgba(1, 8, 18, 0.84);
  color: var(--ink);
}

.app-modal.is-visible {
  display: grid;
  animation: pp-modal-fade-in 200ms var(--ease-standard);
}

body.app-modal-open {
  overflow: hidden;
}

.app-modal-card {
  position: relative;
  width: min(800px, calc(100vw - 48px));
  min-height: 711px;
  padding: 54px 80px 48px;
  border-radius: 64px;
  background: #fff;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.28);
  text-align: center;
}

.app-modal.is-visible .app-modal-card {
  animation: pp-modal-card-enter 200ms var(--ease-standard);
}

.app-modal-close {
  --lift-y: 0px;
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #0f172a;
  cursor: pointer;
  translate: 0 var(--lift-y);
  transition:
    background-color var(--motion-fast) var(--ease-standard),
    color var(--motion-fast) var(--ease-standard),
    opacity var(--motion-fast) var(--ease-standard),
    scale var(--motion-fast) var(--ease-standard),
    translate var(--motion-fast) var(--ease-standard);
}

.app-modal-close span {
  position: absolute;
  top: 19px;
  left: 9px;
  width: 22px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.app-modal-close span:first-child {
  transform: rotate(45deg);
}

.app-modal-close span:last-child {
  transform: rotate(-45deg);
}

.app-modal-card h2 {
  color: #000;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.18;
}

.app-modal-card p {
  max-width: 520px;
  margin: 26px auto 0;
  color: #606060;
  font-size: 15px;
  line-height: 1.45;
}

.app-modal-qr {
  width: 360px;
  height: 360px;
  margin: 38px auto 0;
  border-radius: 20px;
  object-fit: cover;
}

.app-modal-store-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}

.app-modal-store-row .store-button {
  width: 170px;
  height: 56px;
  padding: 0 24px;
  border-radius: 14px;
}

.about-hero {
  min-height: 572px;
  padding-top: 153px;
}

.about-hero-content h1 {
  max-width: 766px;
  font-size: 56px;
  line-height: 1.1;
  letter-spacing: 0;
}

.about-hero-content .hero-lede {
  margin-top: 24px;
}

.about-split {
  display: grid;
  grid-template-columns: minmax(0, 560px) minmax(0, 560px);
  align-items: center;
  justify-content: center;
  gap: 80px;
  padding: 120px;
  background: #fff;
}

.about-copy h2 {
  max-width: 520px;
  margin-top: 24px;
  color: var(--ink);
  font-size: 48px;
  font-weight: 700;
  line-height: 1.08;
}

.about-copy > p {
  max-width: 520px;
  margin-top: 24px;
  color: var(--muted);
  line-height: 1.6;
}

.quote-box {
  --lift-y: 0px;
  max-width: 640px;
  margin-top: 32px;
  padding: 24px 24px 24px 28px;
  border-left: 4px solid var(--brand);
  border-radius: 0 12px 12px 0;
  background: var(--surface);
  translate: 0 var(--lift-y);
  transition:
    box-shadow var(--motion-base) var(--ease-standard),
    translate var(--motion-base) var(--ease-standard);
}

.quote-box p {
  color: var(--text);
  font-size: 15px;
  font-style: italic;
  line-height: 1.6;
}

.quote-box cite {
  display: block;
  margin-top: 12px;
  color: var(--brand);
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
}

.quote-box-centered {
  margin: 64px auto 0;
  background: #fff;
}

.quote-box-muted {
  background: var(--surface);
}

.about-image-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.about-image-card img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  transition: scale var(--motion-base) var(--ease-standard);
}

.story-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 50%, rgba(2, 56, 123, 0.15));
}

.story-comparison {
  --lift-y: 0px;
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: grid;
  grid-template-columns: 1fr 24px 1fr;
  align-items: center;
  gap: 16px;
  min-height: 80px;
  padding: 20px;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
  translate: 0 var(--lift-y);
  transition:
    box-shadow var(--motion-base) var(--ease-standard),
    translate var(--motion-base) var(--ease-standard);
}

.story-comparison span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
}

.story-comparison strong {
  display: block;
  color: var(--brand);
  font-size: 12px;
  text-transform: uppercase;
}

.story-arrow {
  color: var(--brand);
}

.story-arrow svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.about-mission {
  background: var(--surface);
}

.mission-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 240px));
  justify-content: center;
  gap: 24px;
}

.mission-card-grid article,
.value-grid article {
  --lift-y: 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 162px;
  padding: 25px;
  border: 0.8px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  text-align: center;
  translate: 0 var(--lift-y);
  transition:
    background-color var(--motion-base) var(--ease-standard),
    border-color var(--motion-base) var(--ease-standard),
    box-shadow var(--motion-base) var(--ease-standard),
    translate var(--motion-base) var(--ease-standard);
}

.mission-card-grid .icon-box {
  width: 56px;
  height: 56px;
  border-radius: 16px;
}

.mission-card-grid h3,
.value-grid h3 {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 16px;
  font-weight: 600;
}

.value-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 20px;
}

.value-grid article:nth-child(-n + 3) {
  grid-column: span 2;
}

.value-grid article:nth-child(n + 4) {
  grid-column: span 3;
}

.value-grid article {
  background: var(--surface);
}

.value-grid p {
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.57;
}

.about-impact {
  background: var(--surface);
  gap: 64px;
}

.impact-image {
  border: 0.8px solid rgba(255, 255, 255, 0.1);
}

.impact-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 32px;
}

.impact-stats strong {
  display: block;
  color: var(--ink-soft);
  font-size: 32px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  line-height: 1.2;
}

.impact-stats span {
  display: block;
  margin-top: 4px;
  color: rgba(89, 89, 89, 0.75);
  font-size: 14px;
}

.about-impact .button {
  margin-top: 32px;
}

.about-cta .cta-content h2 {
  max-width: 650px;
}

.blog-hero {
  min-height: 360px;
  padding-top: 142px;
  padding-bottom: 64px;
}

.blog-hero-content h1 {
  max-width: 766px;
  font-size: 48px;
  line-height: 1.18;
}

.blog-hero-content .hero-lede {
  max-width: 736px;
  margin-top: 16px;
}

.blog-section {
  padding: 120px 80px;
  background: #fff;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 72px 16px;
  width: min(1280px, 100%);
  margin: 0 auto;
}

.blog-card {
  min-width: 0;
}

.blog-card-link {
  --lift-y: 0px;
  display: block;
  translate: 0 var(--lift-y);
  transition:
    box-shadow var(--motion-base) var(--ease-standard),
    translate var(--motion-base) var(--ease-standard);
}

.blog-card img {
  width: 100%;
  aspect-ratio: 416 / 250;
  object-fit: cover;
  transition: scale var(--motion-base) var(--ease-standard);
}

.blog-card-body {
  padding-top: 24px;
}

.blog-card h2 {
  color: var(--ink-soft);
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}

.blog-card time {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 82px;
  color: var(--ink-soft);
  font-size: 16px;
  font-weight: 500;
}

.blog-pagination a,
.blog-pagination span,
.blog-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

.blog-pagination a {
  --lift-y: 0px;
  translate: 0 var(--lift-y);
}

.blog-pagination a,
.blog-pagination .page-numbers {
  border: 1px solid transparent;
  transition:
    background-color var(--motion-fast) var(--ease-standard),
    border-color var(--motion-fast) var(--ease-standard),
    color var(--motion-fast) var(--ease-standard),
    scale var(--motion-fast) var(--ease-standard),
    translate var(--motion-fast) var(--ease-standard);
}

.blog-pagination a:hover,
.blog-pagination a:focus-visible,
.blog-pagination a.page-numbers:hover,
.blog-pagination a.page-numbers:focus-visible {
  border-color: var(--brand-2);
  color: var(--brand-2);
}

.blog-pagination a.is-active,
.blog-pagination .current {
  background: linear-gradient(161deg, var(--brand) 0%, var(--brand-2) 100%);
  color: #fff;
}

.blog-pagination .pagination-arrow,
.blog-pagination .prev,
.blog-pagination .next {
  border-color: var(--line);
  color: var(--brand);
  font-size: 30px;
  line-height: 1;
}

.blog-empty {
  grid-column: 1 / -1;
  color: var(--muted);
  text-align: center;
}

.blog-cta .cta-content h2 {
  max-width: 640px;
}

.subpage-hero {
  min-height: 360px;
  padding-top: 153px;
  padding-bottom: 64px;
}

.subpage-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.subpage-hero-content h1 {
  max-width: 766px;
  color: #fff;
  font-size: 56px;
  font-weight: 700;
  line-height: 1.1;
}

.subpage-hero-content p {
  max-width: 671px;
  margin-top: 24px;
  color: #fff;
  font-size: 20px;
  line-height: 1.4;
}

.faq-page-section {
  display: grid;
  place-items: start center;
  min-height: 514px;
  padding: 120px 24px;
  background: #fff;
}

.faq-page-list {
  margin-bottom: 0;
}

.faq-page-list .faq-item summary {
  padding-inline: 24px;
}

.contact-page-section {
  display: grid;
  place-items: center;
  padding: 120px 24px;
  background: #fff;
}

.contact-card {
  --lift-y: 0px;
  display: grid;
  gap: 12px;
  width: min(800px, 100%);
  padding: 40px;
  border: 0;
  border-radius: 48px;
  background: var(--surface);
  translate: 0 var(--lift-y);
  transition:
    box-shadow var(--motion-base) var(--ease-standard),
    translate var(--motion-base) var(--ease-standard);
}

.contact-card h2 {
  margin: 0 0 12px;
  color: var(--ink-soft);
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.contact-card label {
  display: grid;
  align-content: center;
  min-height: 64px;
  padding: 0 24px;
  border-bottom: 1px solid var(--line-soft);
  color: var(--ink-soft);
  font-size: 16px;
  font-weight: 500;
}

.contact-card .contact-message-field {
  min-height: 220px;
  align-content: start;
  padding-top: 12px;
}

.contact-card input,
.contact-card textarea {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink-soft);
  font: inherit;
  resize: vertical;
}

.contact-card input {
  height: 24px;
}

.contact-card textarea {
  min-height: 160px;
  margin-top: 8px;
}

.contact-card button {
  --lift-y: 0px;
  min-height: 49px;
  margin-top: 12px;
  border: 0;
  border-radius: 40px;
  background: linear-gradient(176deg, var(--brand) 0%, var(--brand-2) 100%);
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  cursor: pointer;
  translate: 0 var(--lift-y);
  transition:
    box-shadow var(--motion-base) var(--ease-standard),
    opacity var(--motion-fast) var(--ease-standard),
    scale var(--motion-fast) var(--ease-standard),
    translate var(--motion-fast) var(--ease-standard);
}

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

.single-hero {
  position: relative;
  min-height: 548px;
  overflow: hidden;
  color: #fff;
  background: #1d263a;
}

.single-hero::before,
.single-hero::after {
  content: "";
  position: absolute;
  inset: 0;
}

.single-hero::before {
  background-image: var(--single-hero-image);
  background-position: center;
  background-size: cover;
}

.single-hero::after {
  background: rgba(29, 38, 58, 0.7);
}

.single-hero-content {
  position: relative;
  z-index: 2;
  width: min(1168px, calc(100% - 48px));
  margin: 0 auto;
  padding-top: 326px;
}

.single-hero h1 {
  max-width: 770px;
  margin-top: 16px;
  color: #fff;
  font-size: 42px;
  font-weight: 600;
  line-height: 1.2;
}

.single-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  font-size: 15px;
  line-height: 1.8;
}

.single-meta a,
.single-meta span,
.single-meta time {
  position: relative;
  padding-left: 22px;
}

.single-meta a::before,
.single-meta span::before,
.single-meta time::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 12px;
  height: 12px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  transform: translateY(-50%);
}

.single-meta-light {
  color: rgba(255, 255, 255, 0.8);
}

.single-post-section {
  background: #f9fafb;
}

.single-post-layout {
  display: grid;
  grid-template-columns: minmax(0, 742px) 350px;
  gap: 108px;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding: 80px 0 128px;
}

.single-post-main {
  min-width: 0;
}

.single-post-body {
  color: rgba(29, 38, 58, 0.8);
  font-size: 17px;
  line-height: 1.76;
}

.single-post-body > * + * {
  margin-top: 20px;
}

.single-post-body h2,
.single-post-body h3 {
  margin-top: 45px;
  color: #1d263a;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.43;
}

.single-post-body p {
  max-width: 742px;
}

.legal-page-section {
  padding: 96px 24px 120px;
  background: #fff;
}

.legal-page-content {
  width: min(860px, 100%);
  margin: 0 auto;
  color: rgba(29, 38, 58, 0.82);
  font-size: 16px;
  line-height: 1.75;
}

.legal-page-content h2 {
  margin-top: 40px;
  color: var(--ink-soft);
  font-size: 28px;
  line-height: 1.2;
}

.legal-page-content h2:first-child {
  margin-top: 0;
}

.legal-page-content p,
.legal-page-content ul {
  margin-top: 16px;
}

.legal-page-content ul {
  display: grid;
  gap: 10px;
  padding-left: 22px;
}

.single-post-body blockquote {
  position: relative;
  margin: 31px 0;
  padding: 36px 38px 36px 70px;
  border-radius: 0 25px 25px;
  background: linear-gradient(91deg, var(--brand) 0%, rgba(2, 56, 123, 0.65) 100%);
  color: #fff;
}

.single-post-body blockquote::before {
  content: "\201C";
  position: absolute;
  left: 34px;
  top: 20px;
  color: rgba(255, 255, 255, 0.35);
  font-size: 72px;
  font-weight: 700;
  line-height: 1;
}

.single-post-body blockquote p {
  color: inherit;
  font-size: 21px;
  line-height: 1.52;
}

.single-post-body ul,
.single-post-body ol {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding-left: 22px;
}

.single-post-body li::marker {
  color: var(--brand-2);
}

.single-post-body img {
  width: 100%;
  height: auto;
}

.single-inline-feature {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 36px;
  align-items: start;
  margin-top: 45px;
}

.single-inline-feature img {
  aspect-ratio: 1;
  object-fit: cover;
}

.single-inline-feature figcaption {
  display: grid;
  gap: 16px;
  color: rgba(29, 38, 58, 0.8);
  font-size: 17px;
  line-height: 1.76;
}

.single-inline-feature strong {
  color: #1d263a;
  font-size: 21px;
  line-height: 1.43;
}

.single-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  align-items: center;
  margin-top: 72px;
  color: #1d263a;
}

.single-tags strong {
  font-size: 17px;
  font-weight: 600;
}

.single-tags div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.single-tags span {
  display: inline-flex;
  min-height: 45px;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  border: 1px solid rgba(29, 38, 58, 0.13);
  color: #1d263a;
  font-size: 15px;
  font-weight: 600;
}

.single-post-nav {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  margin-top: 80px;
  padding-top: 36px;
  border-top: 1px solid rgba(29, 38, 58, 0.13);
}

.single-post-nav-item {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  min-width: 0;
  color: #1d263a;
}

.single-post-nav-item-next {
  grid-template-columns: minmax(0, 1fr) 58px;
  text-align: right;
}

.single-nav-arrow {
  --lift-y: 0px;
  display: inline-flex;
  width: 58px;
  height: 65px;
  align-items: center;
  justify-content: center;
  background: var(--brand);
  color: #fff;
  font-size: 36px;
  line-height: 1;
  translate: 0 var(--lift-y);
  transition:
    background-color var(--motion-fast) var(--ease-standard),
    box-shadow var(--motion-base) var(--ease-standard),
    translate var(--motion-fast) var(--ease-standard);
}

.single-post-nav small,
.single-post-nav strong {
  display: block;
}

.single-post-nav small {
  color: rgba(29, 38, 58, 0.8);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.8;
}

.single-post-nav strong {
  margin-top: 4px;
  overflow: hidden;
  color: #1d263a;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.43;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.single-sidebar {
  display: grid;
  gap: 32px;
  align-content: start;
}

.single-widget {
  --lift-y: 0px;
  padding: 30px;
  border-radius: 10px;
  background: #fff;
  translate: 0 var(--lift-y);
  transition:
    box-shadow var(--motion-base) var(--ease-standard),
    translate var(--motion-base) var(--ease-standard);
}

.single-widget h2 {
  margin: 0 0 28px;
  color: #1d263a;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.43;
}

.single-search {
  position: relative;
}

.single-search input {
  width: 100%;
  height: 58px;
  padding: 0 18px;
  border: 0;
  background: #f9fafb;
  color: #1d263a;
  font: inherit;
  font-size: 14px;
}

.single-search button {
  --lift-y: 0px;
  position: absolute;
  right: 8px;
  top: 8px;
  height: 42px;
  padding: 0 14px;
  border: 0;
  border-radius: 21px;
  background: var(--brand);
  color: #fff;
  font-size: 12px;
  cursor: pointer;
  translate: 0 var(--lift-y);
  transition:
    background-color var(--motion-fast) var(--ease-standard),
    box-shadow var(--motion-base) var(--ease-standard),
    opacity var(--motion-fast) var(--ease-standard),
    scale var(--motion-fast) var(--ease-standard),
    translate var(--motion-fast) var(--ease-standard);
}

.single-widget-list,
.single-category-list {
  display: grid;
}

.single-widget-list a,
.single-category-list a {
  display: grid;
  gap: 8px;
  padding: 0 0 18px;
  border-bottom: 1px solid rgba(29, 38, 58, 0.13);
  color: #1d263a;
}

.single-widget-list a + a,
.single-category-list a + a {
  padding-top: 18px;
}

.single-widget-list a:last-child,
.single-category-list a:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.single-widget-list strong {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.55;
}

.single-widget-list time {
  color: rgba(29, 38, 58, 0.8);
  font-size: 13px;
}

.single-category-list a {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.73;
}

@media (hover: hover) {
  .pp-motion-ready .pp-reveal.is-visible:hover,
  .pp-motion-ready .pp-reveal.is-visible:focus-visible,
  .pp-motion-ready .pp-reveal.is-visible:focus-within {
    transition-delay: 0ms;
  }

  .button:hover,
  .button:focus-visible,
  .store-button:hover,
  .store-button:focus-visible,
  .contact-card button:hover,
  .contact-card button:focus-visible,
  .single-search button:hover,
  .single-search button:focus-visible {
    opacity: 0.9;
  }

  .store-button:hover,
  .store-button:focus-visible {
    opacity: 0.8;
  }

  .blog-pagination a:hover,
  .blog-pagination a:focus-visible,
  .social-links a:hover,
  .social-links a:focus-visible {
    opacity: 0.9;
  }

  .button:active,
  .store-button:active,
  .contact-card button:active,
  .single-search button:active,
  .app-modal-close:active,
  .nav-menu-toggle:active,
  .blog-pagination a:active,
  .social-links a:active {
    opacity: 0.72;
  }

  .feature-card:hover,
  .step-card:hover,
  .testimonial-grid figure:hover,
  .mission-card-grid article:hover,
  .value-grid article:hover {
    --lift-y: -6px;
    border-color: rgba(11, 95, 191, 0.28);
    box-shadow: var(--shadow-soft);
  }

  .mini-card:hover,
  .mini-card:focus-within {
    --lift-y: -6px;
    border-color: rgba(11, 95, 191, 0.32);
    background: #fff;
    box-shadow: var(--shadow-soft);
  }

  .stats-media:hover,
  .quote-box:hover,
  .story-comparison:hover,
  .contact-card:hover,
  .single-widget:hover,
  .blog-card-link:hover,
  .blog-card-link:focus-visible {
    --lift-y: -4px;
    box-shadow: var(--shadow-soft);
  }

  .blog-card-link:hover img,
  .blog-card-link:focus-visible img,
  .about-image-card:hover img,
  .stats-media:hover img {
    scale: 1.035;
  }

  .nav-links a:hover,
  .nav-links a:focus-visible,
  .single-widget-list a:hover,
  .single-widget-list a:focus-visible,
  .single-category-list a:hover,
  .single-category-list a:focus-visible {
    color: var(--brand-2);
  }

  .feature-card:hover .icon-box,
  .step-card:hover .icon-box,
  .mini-card:hover .icon-box,
  .mission-card-grid article:hover .icon-box,
  .value-grid article:hover .icon-box {
    background: var(--brand);
    color: #fff;
  }

  .footer-links a:hover,
  .footer-links a:focus-visible,
  .social-links a:hover,
  .social-links a:focus-visible {
    color: #fff;
  }

  .social-links a:hover,
  .social-links a:focus-visible {
    background: rgba(77, 163, 255, 0.18);
  }

  .faq-item summary:hover,
  .faq-item summary:focus-visible {
    color: var(--brand-2);
  }

  .single-post-nav-item:hover .single-nav-arrow,
  .single-post-nav-item:focus-visible .single-nav-arrow,
  .single-post-nav-item:focus-within .single-nav-arrow {
    background: var(--brand-2);
    box-shadow: 0 12px 24px rgba(2, 56, 123, 0.18);
  }

  .app-modal-close:hover,
  .app-modal-close:focus-visible,
  .nav-menu-toggle:hover,
  .nav-menu-toggle:focus-visible {
    background: var(--surface-blue);
  }

  .contact-card button:hover,
  .contact-card button:focus-visible,
  .single-search button:hover,
  .single-search button:focus-visible {
    box-shadow: var(--shadow-lift);
  }
}

@keyframes pp-star-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  25% {
    transform: translate3d(var(--star-x1), var(--star-y1), 0);
  }

  50% {
    transform: translate3d(var(--star-x2), var(--star-y2), 0);
  }

  75% {
    transform: translate3d(var(--star-x3), var(--star-y3), 0);
  }
}

@keyframes pp-modal-fade-in {
  from {
    opacity: 0;
  }
}

@keyframes pp-modal-card-enter {
  from {
    opacity: 0;
    transform: translate3d(0, 24px, 0) scale(0.96);
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-delay: 0ms !important;
    transition-duration: 1ms !important;
  }

  .pp-motion-ready .pp-reveal {
    opacity: 1;
    translate: 0 var(--lift-y, 0px);
    scale: 1;
    transition: none;
  }

  .star-dot {
    animation: none;
  }
}

@media (max-width: 1180px) {
  .site-nav {
    width: calc(100% - 32px);
    gap: 18px;
  }

  .split-section,
  .feature-panel {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 88px 48px;
  }

  .split-copy {
    max-width: 720px;
    text-align: center;
  }

  .split-copy .store-row-left,
  .store-row-left {
    justify-content: center;
  }

  .check-list {
    width: min(560px, 100%);
    margin-inline: auto;
    text-align: left;
  }

  .problem-section {
    padding: 88px 48px;
    justify-content: center;
  }

  .section-pad {
    padding: 88px 48px;
  }

  .steps-grid,
  .card-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .steps-grid::before {
    display: none;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    max-width: 520px;
    padding-right: 0;
  }

  .about-split {
    grid-template-columns: 1fr;
    padding: 88px 48px;
  }

  .about-copy {
    max-width: 720px;
    text-align: center;
  }

  .about-copy h2,
  .about-copy > p {
    margin-inline: auto;
  }

  .mission-card-grid {
    grid-template-columns: repeat(2, minmax(0, 240px));
  }

  .blog-section {
    padding-inline: 48px;
  }

  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 56px 24px;
  }

  .pardner-pal-home .hero {
    padding-right: 48px;
    padding-left: 48px;
  }

  .faq-page-section,
  .contact-page-section {
    padding-block: 88px;
  }

  .single-post-layout {
    grid-template-columns: 1fr;
    gap: 56px;
    width: min(860px, calc(100% - 48px));
  }

  .single-sidebar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  body {
    font-size: 15px;
  }

  .container {
    width: calc(100% - 32px);
  }

  .site-nav {
    width: min(390px, calc(100% - 24px));
    min-height: 56px;
    grid-template-columns: 40px minmax(0, 1fr) auto;
    grid-template-rows: 40px;
    gap: 8px;
    align-items: center;
    padding: 8px;
    border-radius: 28px;
    transition: min-height var(--motion-fast) var(--ease-standard);
  }

  .site-nav.is-open {
    min-height: 188px;
    grid-template-rows: 40px auto;
    align-items: start;
    padding-bottom: 24px;
  }

  .nav-menu-toggle {
    --lift-y: 0px;
    display: inline-flex;
    position: relative;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 42px;
    background: transparent;
    color: #1d263a;
    cursor: pointer;
    translate: 0 var(--lift-y);
    transition:
      background-color var(--motion-fast) var(--ease-standard),
      scale var(--motion-fast) var(--ease-standard),
      translate var(--motion-fast) var(--ease-standard);
  }

  .nav-menu-toggle::before,
  .nav-menu-toggle::after,
  .nav-menu-toggle span {
    content: "";
    position: absolute;
    width: 20px;
    height: 2px;
    border-radius: 2px;
    background: currentColor;
    transition:
      opacity var(--motion-fast) var(--ease-standard),
      transform var(--motion-fast) var(--ease-standard);
  }

  .nav-menu-toggle::before {
    transform: translateY(-6px);
  }

  .nav-menu-toggle::after {
    transform: translateY(6px);
  }

  .nav-menu-toggle span + span {
    display: none;
  }

  .site-nav.is-open .nav-menu-toggle::before {
    transform: rotate(45deg);
  }

  .site-nav.is-open .nav-menu-toggle::after {
    transform: rotate(-45deg);
  }

  .site-nav.is-open .nav-menu-toggle span {
    opacity: 0;
  }

  .nav-links {
    grid-column: 1 / -1;
    grid-row: 2;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 8px 10px 0;
    font-size: 16px;
  }

  .site-nav.is-open .nav-links {
    display: flex;
  }

  .brand {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
    font-size: 18px;
    justify-self: center;
    overflow: hidden;
  }

  .brand-mark {
    width: 34px;
    height: 32px;
  }

  .site-nav .button {
    grid-column: 3;
    grid-row: 1;
    min-height: 36px;
    padding: 8px 14px;
    font-size: 15px;
  }

  .hero {
    min-height: 840px;
    padding-top: 132px;
  }

  .pardner-pal-home .hero {
    height: min(860px, calc(100vh - 40px));
    height: min(860px, calc(100svh - 40px));
    min-height: 802px;
    padding: 153px 16px 0;
  }

  .pardner-pal-home .hero-content.container {
    width: min(338px, 100%);
    max-width: 338px;
  }

  .hero h1,
  .split-copy h2,
  .about-copy h2,
  .section-heading h2,
  .problem-panel h2,
  .cta-content h2 {
    font-size: 38px;
    line-height: 1.15;
  }

  .pardner-pal-home .hero h1,
  .pardner-pal-home .split-copy h2,
  .pardner-pal-home .section-heading h2,
  .pardner-pal-home .problem-panel h2,
  .pardner-pal-home .cta-content h2 {
    font-size: clamp(34px, 10.8vw, 40px);
    line-height: 1.25;
  }

  .pardner-pal-home .hero h1 {
    max-width: 338px;
  }

  .hero-lede {
    font-size: 17px;
  }

  .hero-note {
    font-size: 14px;
  }

  .pardner-pal-home .hero-lede {
    max-width: 338px;
    margin-top: 16px;
    font-size: 16px;
  }

  .pardner-pal-home .hero-note {
    max-width: 338px;
    margin-top: 12px;
    font-size: 12px;
  }

  .hero-phone {
    width: 520px;
    max-width: 112vw;
  }

  .pardner-pal-home .hero-phone {
    top: auto;
    bottom: 0;
    width: 363px;
    max-width: calc(100vw - 7px);
  }

  .store-row {
    flex-direction: column;
    gap: 12px;
  }

  .pardner-pal-home .store-row {
    flex-direction: row;
    gap: 24px;
    width: min(338px, 100%);
    margin-right: auto;
    margin-left: auto;
  }

  .pardner-pal-home .hero .store-row {
    gap: 16px;
    margin-top: 24px;
  }

  .pardner-pal-home .store-button {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    height: 56px;
    padding: 0 16px;
    border-radius: 12px;
  }

  .pardner-pal-home .hero .store-button {
    height: 48px;
    padding: 0 16.8px;
  }

  .pardner-pal-home .store-button img {
    width: 26px;
    height: 26px;
  }

  .split-section,
  .feature-panel,
  .section-pad {
    padding: 72px 20px;
  }

  .pardner-pal-home .split-section,
  .pardner-pal-home .feature-panel,
  .pardner-pal-home .section-pad {
    padding: 80px 16px;
  }

  .phone-stage {
    width: min(100%, 360px);
    height: 420px;
  }

  .pardner-pal-home .invite-section .phone-stage {
    width: min(338px, 100%);
    height: 380px;
  }

  .phone-bg {
    top: 42px;
    width: 100%;
    height: 360px;
    border-radius: 28px;
  }

  .pardner-pal-home .invite-section .phone-bg {
    top: 38px;
    height: 342px;
  }

  .phone-device {
    left: 50%;
    width: 258px;
    height: 420px;
    transform: translateX(-50%);
  }

  .pardner-pal-home .invite-section .phone-device {
    width: 233px;
    height: 378px;
  }

  .phone-screen {
    top: 10px;
    left: 12px;
    width: 234px;
    height: 410px;
  }

  .pardner-pal-home .invite-section .phone-screen {
    top: 9px;
    left: 11px;
    width: 211px;
    height: 369px;
  }

  .problem-section {
    min-height: auto;
    padding: 72px 20px;
  }

  .pardner-pal-home .problem-section {
    display: block;
    padding: 80px 16px;
    background: #fff;
  }

  .pardner-pal-home .problem-media {
    display: none;
  }

  .problem-panel {
    padding: 28px;
    border-radius: 28px;
  }

  .pardner-pal-home .problem-panel {
    width: min(338px, 100%);
    margin: 0 auto;
    padding: 0;
    background: transparent;
    text-align: center;
    backdrop-filter: none;
  }

  .pardner-pal-home .problem-panel p {
    max-width: 338px;
    margin-right: auto;
    margin-left: auto;
  }

  .pain-grid,
  .card-grid,
  .steps-grid,
  .testimonial-grid,
  .footer-links,
  .stats-overlay {
    grid-template-columns: 1fr;
  }

  .mini-card {
    min-height: auto;
  }

  .pardner-pal-home .pain-grid {
    gap: 16px;
    margin-top: 40px;
  }

  .pardner-pal-home .mini-card {
    min-height: 58px;
    justify-content: center;
    padding: 8px;
    border-radius: 12px;
    background: #fff;
  }

  .pardner-pal-home .mini-card .icon-box {
    width: 40px;
    height: 40px;
  }

  .section-heading {
    margin-bottom: 44px;
  }

  .pardner-pal-home .section-heading {
    max-width: 338px;
    margin-bottom: 40px;
  }

  .section-heading p {
    max-width: 100%;
  }

  .pardner-pal-home .feature-card {
    min-height: 180px;
    padding: 24px;
  }

  .pardner-pal-home .card-grid {
    gap: 20px;
  }

  .stats-media {
    height: 430px;
    background: #eef4fb;
  }

  .stats-media img,
  .blog-card img {
    object-fit: contain;
    background: #eef4fb;
  }

  .stats-overlay {
    gap: 12px;
    padding: 0 24px 32px;
  }

  .stats-overlay strong {
    font-size: 34px;
  }

  .faq-item summary {
    min-height: 68px;
    padding-inline: 0;
    gap: 16px;
  }

  .faq-item p {
    padding-inline: 0;
  }

  .site-footer {
    padding: 56px 20px 24px;
  }

  .pardner-pal-home .cta-section {
    min-height: 535px;
    padding: 80px 16px;
  }

  .pardner-pal-home .cta-content {
    width: min(338px, 100%);
  }

  .pardner-pal-home .cta-content p {
    margin-top: 24px;
  }

  .pardner-pal-home .cta-points {
    gap: 16px;
  }

  .site-footer {
    padding: 64px 16px 24px;
  }

  .footer-main {
    gap: 48px;
  }

  .footer-brand {
    max-width: 328px;
    margin: 0 auto;
    text-align: center;
    align-items: center;
  }

  .brand-footer {
    justify-content: center;
  }

  .social-links {
    justify-content: center;
  }

  .footer-links {
    justify-items: center;
    gap: 40px;
    text-align: center;
  }

  .footer-bottom {
    align-items: center;
    flex-direction: column;
    margin-top: 80px;
    text-align: center;
  }

  .app-modal {
    padding: 16px;
  }

  .app-modal-card {
    width: min(338px, calc(100vw - 32px));
    min-height: auto;
    max-height: calc(100vh - 32px);
    max-height: calc(100svh - 32px);
    overflow: auto;
    padding: 52px 20px 28px;
    border-radius: 32px;
  }

  .app-modal-close {
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
  }

  .app-modal-close span {
    top: 17px;
    left: 8px;
    width: 20px;
  }

  .app-modal-card h2 {
    font-size: 32px;
    line-height: 1.18;
  }

  .app-modal-card p {
    margin-top: 16px;
    font-size: 13px;
  }

  .app-modal-qr {
    width: min(258px, 100%);
    height: auto;
    margin-top: 28px;
  }

  .app-modal-store-row {
    gap: 12px;
    margin-top: 28px;
  }

  .app-modal-store-row .store-button {
    flex: 1 1 0;
    width: auto;
    min-width: 0;
    height: 48px;
    padding: 0 12px;
  }

  .app-modal-store-row .store-button img {
    width: 22px;
    height: 22px;
  }

  .app-modal-store-row .store-button small {
    font-size: 9px;
  }

  .app-modal-store-row .store-button strong {
    font-size: 12px;
  }

  .about-hero {
    min-height: 560px;
    padding-top: 132px;
  }

  .about-hero-content h1 {
    font-size: 38px;
    line-height: 1.15;
  }

  .about-split {
    padding: 72px 20px;
    justify-items: center;
  }

  .about-copy {
    width: min(560px, 100%);
    text-align: center;
  }

  .about-copy h2,
  .about-copy > p {
    margin-inline: auto;
  }

  .about-image-card {
    width: min(560px, 100%);
  }

  .story-comparison {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .story-arrow {
    display: none;
  }

  .about-image-card img {
    height: 320px;
    object-fit: contain;
    background: #eef4fb;
  }

  .mission-card-grid,
  .value-grid {
    grid-template-columns: 1fr;
  }

  .value-grid article:nth-child(n) {
    grid-column: auto;
  }

  .quote-box,
  .quote-box-centered {
    margin-top: 44px;
  }

  .impact-stats {
    gap: 18px;
  }

  .blog-hero {
    min-height: 420px;
    padding-top: 132px;
    padding-bottom: 56px;
  }

  .blog-hero-content h1 {
    font-size: 38px;
    line-height: 1.15;
  }

  .blog-section {
    padding: 72px 20px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .blog-card-body {
    padding-top: 18px;
  }

  .blog-card h2 {
    font-size: 18px;
  }

  .blog-pagination {
    gap: 8px;
    margin-top: 56px;
  }

  .blog-pagination a,
  .blog-pagination span,
  .blog-pagination .page-numbers {
    width: 36px;
    height: 36px;
  }

  .subpage-hero {
    min-height: 360px;
    padding-top: 132px;
    padding-bottom: 56px;
  }

  .subpage-hero-content h1 {
    font-size: 38px;
    line-height: 1.15;
  }

  .subpage-hero-content p {
    font-size: 17px;
  }

  .faq-page-section,
  .contact-page-section {
    padding: 72px 20px;
  }

  .faq-page-list .faq-item summary {
    padding-inline: 0;
    white-space: normal;
  }

  .contact-card {
    padding: 32px 20px;
    border-radius: 32px;
  }

  .contact-card h2 {
    font-size: 32px;
  }

  .contact-card label {
    padding-inline: 16px;
  }

  .contact-card button {
    font-size: 17px;
  }

  .single-hero {
    min-height: 520px;
  }

  .single-hero-content {
    width: calc(100% - 32px);
    padding-top: 190px;
  }

  .single-hero h1 {
    font-size: 34px;
    line-height: 1.18;
  }

  .single-meta {
    gap: 10px 16px;
    font-size: 13px;
  }

  .single-post-layout {
    width: calc(100% - 32px);
    padding: 64px 0 80px;
  }

  .single-post-body {
    font-size: 16px;
  }

  .single-post-body h2,
  .single-post-body h3,
  .single-inline-feature strong,
  .single-post-nav strong,
  .single-widget h2 {
    font-size: 20px;
  }

  .single-post-body blockquote {
    padding: 32px 24px;
  }

  .single-post-body blockquote::before {
    display: none;
  }

  .single-post-body blockquote p {
    font-size: 18px;
  }

  .single-inline-feature {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .single-inline-feature img {
    max-width: 260px;
    object-fit: contain;
  }

  .single-tags {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 56px;
  }

  .single-post-nav,
  .single-sidebar {
    grid-template-columns: 1fr;
  }

  .single-post-nav-item,
  .single-post-nav-item-next {
    grid-template-columns: 52px minmax(0, 1fr);
    text-align: left;
  }

  .single-post-nav-item-next .single-nav-arrow {
    order: -1;
  }

  .single-nav-arrow {
    width: 52px;
    height: 56px;
  }

  .legal-page-section {
    padding: 72px 20px 88px;
  }

  .legal-page-content h2 {
    font-size: 23px;
  }
}

@media (max-width: 420px) {
  .site-nav {
    width: calc(100% - 20px);
    grid-template-columns: 40px minmax(44px, 1fr) auto;
  }

  .brand {
    justify-content: center;
  }

  .site-nav .brand span {
    display: none;
  }

  .hero h1,
  .split-copy h2,
  .about-copy h2,
  .section-heading h2,
  .problem-panel h2,
  .cta-content h2 {
    font-size: 32px;
  }

  .pardner-pal-home .hero {
    height: auto;
    min-height: 860px;
    padding-top: 132px;
  }

  .pardner-pal-home .hero h1 {
    font-size: clamp(32px, 9.2vw, 36px);
    line-height: 1.22;
  }

  .pardner-pal-home .hero .store-row {
    margin-top: 20px;
    gap: 12px;
  }

  .pardner-pal-home .hero-phone {
    bottom: 8px;
    width: min(344px, calc(100vw - 28px));
  }

  .store-button {
    width: 180px;
  }

  .pardner-pal-home .store-button {
    width: auto;
    padding-inline: 12px;
  }

  .single-hero h1 {
    font-size: 30px;
  }

  .single-widget {
    padding: 24px;
  }

  .contact-card h2 {
    font-size: 28px;
  }
}

@media (max-width: 920px) and (orientation: landscape) {
  .hero,
  .about-hero,
  .blog-hero,
  .subpage-hero,
  .single-hero {
    min-height: auto;
    padding-top: 112px;
    padding-bottom: 72px;
  }

  .pardner-pal-home .hero {
    height: auto;
    min-height: 680px;
    padding-top: 118px;
    padding-bottom: 320px;
  }

  .pardner-pal-home .hero-phone {
    width: min(420px, calc(100vw - 48px));
  }

  .pardner-pal-home .hero-content.container {
    width: min(620px, calc(100% - 32px));
    max-width: 620px;
  }

  .pardner-pal-home .hero h1,
  .pardner-pal-home .hero-lede,
  .pardner-pal-home .hero-note,
  .pardner-pal-home .hero .store-row {
    max-width: 620px;
  }

  .pardner-pal-home .hero h1 {
    font-size: 40px;
  }

  .pardner-pal-home .split-section,
  .pardner-pal-home .feature-panel,
  .pardner-pal-home .section-pad,
  .about-split,
  .blog-section,
  .faq-page-section,
  .contact-page-section,
  .legal-page-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .phone-stage,
  .pardner-pal-home .invite-section .phone-stage {
    height: 360px;
  }
}
