.home-page {
  --pr-background: oklch(1 0 0);
  --pr-foreground: oklch(0.19 0.032 258);
  --pr-muted: oklch(0.5 0.018 254);
  --pr-accent: oklch(0.58 0.085 232);
  --pr-accent-foreground: oklch(0.99 0.004 240);
  --pr-border: oklch(0.915 0.006 90);
  --pr-input: oklch(0.89 0.008 90);
  --pr-surface: oklch(0.972 0.008 85);
  --pr-ink: oklch(0.16 0.028 258);
  --pr-ink-2: oklch(0.22 0.032 250);
  --pr-ink-foreground: oklch(0.97 0.006 90);
  --pr-sand: oklch(0.94 0.016 80);
  --pr-shadow-card: 0 1px 2px oklch(0.19 0.032 258 / 0.05), 0 18px 40px -24px oklch(0.19 0.032 258 / 0.3);
  --pr-shadow-elevated: 0 2px 4px oklch(0.19 0.032 258 / 0.06), 0 40px 80px -32px oklch(0.19 0.032 258 / 0.45);
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
  background: var(--pr-background);
  color: var(--pr-foreground);
  font-family: "Inter", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

.home-page h1,
.home-page h2,
.home-page h3,
.home-page p,
.home-page figure,
.home-page blockquote,
.home-page dl,
.home-page dd,
.home-page ol,
.home-page ul {
  margin: 0;
}

.home-page ol,
.home-page ul {
  padding: 0;
}

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

.home-page h1,
.home-page h2,
.home-page h3,
.home-page .pr-display {
  font-family: "Fraunces", Georgia, serif;
  letter-spacing: -0.015em;
  font-weight: 500;
}

.home-page a {
  color: inherit;
}

.home-page .pr-shell {
  width: 100%;
  max-width: 1344px;
  margin-inline: auto;
  padding-inline: 20px;
}

.home-page .pr-text-shell {
  width: 100%;
  max-width: 1024px;
  margin-inline: auto;
  padding-inline: 20px;
}

.home-page .pr-eyebrow {
  font-family: "Inter", Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.home-page .pr-icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.25;
}

.home-page .pr-hero {
  position: relative;
  background: var(--pr-ink);
  color: var(--pr-ink-foreground);
}

.home-page .pr-hero-layout {
  position: relative;
}

.home-page .pr-hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  padding:90px 20px 20px;
}

.home-page .pr-hero-title {
  max-width: 576px;
  color: var(--pr-ink-foreground);
  font-size: 32.8px;
  font-weight: 300;
  line-height: 1.06;
  letter-spacing: -0.02em;
}

.home-page .pr-hero-intro {
  max-width: 512px;
  margin-top: 12px;
  color: oklch(0.97 0.006 90 / 0.65);
  font-size: 15.2px;
  line-height: 1.625;
}

.home-page .pr-redeem-card {
  max-width: 560px;
  margin-top: 16px;
  padding: 20px;
  border-top: 2px solid var(--pr-accent);
  border-radius: 2px;
  background: var(--pr-background);
  box-shadow: var(--pr-shadow-elevated);
  color: var(--pr-foreground);
  scroll-margin-top: 16px;
}

.home-page .pr-form-group + .pr-form-group {
  margin-top: 14px;
}

.home-page .pr-label {
  display: block;
  margin-bottom: 6px;
  color: oklch(0.19 0.032 258 / 0.7);
}

.home-page .pr-input {
  display: block;
  width: 100%;
  height: 48px;
  padding: 0 16px;
  border: 1px solid var(--pr-input);
  border-radius: 2px;
  background: oklch(0.965 0.006 90 / 0.6);
  color: var(--pr-foreground);
  font-size: 16px;
  transition: background-color 160ms ease, border-color 160ms ease;
}

.home-page .pr-input::placeholder {
  color: oklch(0.5 0.018 254 / 0.7);
}

.home-page .pr-input:focus {
  border-color: var(--pr-accent);
  outline: 2px solid var(--pr-accent);
  outline-offset: 1px;
  background: var(--pr-background);
}

.home-page .pr-form-submit,
.home-page .pr-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 2px;
  background: var(--pr-ink);
  color: var(--pr-ink-foreground);
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  transition: background-color 180ms ease, color 180ms ease;
}

.home-page .pr-form-submit {
  width: 100%;
  height: 48px;
  margin-top: 14px;
  padding: 0 24px;
  font-size: 14px;
  letter-spacing: 0.1em;
}

.home-page .pr-cta {
  padding: 16px 32px;
  font-size: 12.5px;
  letter-spacing: 0.14em;
}

.home-page .pr-form-submit:hover,
.home-page .pr-form-submit:focus-visible,
.home-page .pr-cta:hover,
.home-page .pr-cta:focus-visible {
  background: var(--pr-accent);
  color: var(--pr-accent-foreground);
  text-decoration: none;
}

.home-page .pr-form-submit:focus-visible,
.home-page .pr-cta:focus-visible,
.home-page .pr-accordion-button:focus-visible,
.home-page .pr-sticky-button:focus-visible {
  outline: 2px solid var(--pr-accent);
  outline-offset: 2px;
}

.home-page .pr-arrow {
  width: 16px;
  height: 16px;
  transition: transform 180ms ease;
}

.home-page .pr-form-submit:hover .pr-arrow,
.home-page .pr-cta:hover .pr-arrow {
  transform: translateX(4px);
}

.home-page .pr-security {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: var(--pr-muted);
  font-size: 13.1px;
}

.home-page .pr-security .pr-icon {
  width: 14px;
  height: 14px;
  flex: 0 0 auto;
  color: var(--pr-accent);
}

.home-page .pr-form-status {
  margin-top: 12px;
  padding: 8px 12px;
  border-radius: 2px;
  background: var(--pr-surface);
  color: var(--pr-muted);
  font-size: 14px;
}

.home-page .pr-hero-image {
  display: none;
}

.home-page .pr-credibility {
  border-top: 1px solid oklch(0.97 0.006 90 / 0.12);
  background: var(--pr-ink);
  color: var(--pr-ink-foreground);
}

.home-page .pr-credibility-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.home-page .pr-credibility-card {
  padding: 28px 20px 28px 0;
  border-bottom: 1px solid oklch(0.97 0.006 90 / 0.12);
}

.home-page .pr-credibility-card:nth-child(even) {
  padding-left: 20px;
  padding-right: 0;
}

.home-page .pr-credibility-card .pr-icon {
  color: var(--pr-accent);
}

.home-page .pr-credibility-card .pr-eyebrow {
  margin-top: 12px;
  color: oklch(0.97 0.006 90 / 0.45);
}

.home-page .pr-credibility-card h2 {
  margin-top: 8px;
  color: var(--pr-ink-foreground);
  font-size: 16.8px;
  font-weight: 400;
  line-height: 1.375;
}

.home-page .pr-credibility-card p:last-child {
  margin-top: 8px;
  color: oklch(0.97 0.006 90 / 0.55);
  font-size: 13.6px;
  line-height: 1.625;
}

.home-page .pr-how {
  padding: 80px 0;
  background: var(--pr-background);
  scroll-margin-top: 16px;
}

.home-page .pr-how-grid {
  display: grid;
  align-items: center;
  gap: 56px;
}

.home-page .pr-how-media {
  position: relative;
}

.home-page .pr-how-media > img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.home-page .pr-step-note {
  display: none;
}

.home-page .pr-section-title {
  margin-top: 20px;
  color: var(--pr-foreground);
  font-size: 38.4px;
  font-weight: 300;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.home-page .pr-section-intro {
  max-width: 576px;
  margin-top: 24px;
  color: var(--pr-muted);
  font-size: 16.3px;
  line-height: 1.625;
}

.home-page .pr-accent-text {
  color: var(--pr-accent);
}

.home-page .pr-steps {
  list-style: none;
  margin-top: 48px;
}

.home-page .pr-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  padding-top: 32px;
  border-top: 1px solid var(--pr-border);
}

.home-page .pr-step + .pr-step {
  margin-top: 40px;
}

.home-page .pr-step-number {
  color: oklch(0.58 0.085 232 / 0.7);
  font-family: "Fraunces", Georgia, serif;
  font-size: 41.6px;
  font-weight: 300;
  line-height: 1;
}

.home-page .pr-step h3 {
  font-size: 22.4px;
  font-weight: 500;
}

.home-page .pr-step p {
  max-width: 512px;
  margin-top: 10px;
  color: var(--pr-muted);
  font-size: 15.7px;
  line-height: 1.625;
}

.home-page .pr-how-cta {
  margin-top: 48px;
}

.home-page .pr-categories {
  padding: 80px 0;
  background: var(--pr-ink);
  color: var(--pr-ink-foreground);
  scroll-margin-top: 16px;
}

.home-page .pr-categories-heading {
  display: grid;
  gap: 32px;
}

.home-page .pr-categories .pr-section-title {
  color: var(--pr-ink-foreground);
  line-height: 1.02;
}

.home-page .pr-categories-intro {
  max-width: 576px;
  color: oklch(0.97 0.006 90 / 0.6);
  font-size: 16.3px;
  line-height: 1.625;
}

.home-page .pr-tile-grid {
  display: grid;
  gap: 16px;
  margin-top: 56px;
}

.home-page .pr-tile-grid-bottom {
  display: grid;
  margin-top: 16px;
}

.home-page .pr-tile {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: 280px;
  overflow: hidden;
}

.home-page .pr-tile-featured {
  min-height: 420px;
}

.home-page .pr-tile-shopping {
  min-height: 240px;
}

.home-page .pr-tile img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0, 0, 0.2, 1);
}

.home-page .pr-tile:hover img {
  transform: scale(1.04);
}

.home-page .pr-tile::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  content: "";
  background: linear-gradient(to top, oklch(0.16 0.028 258 / 0.85), oklch(0.16 0.028 258 / 0.25), transparent);
}

.home-page .pr-tile-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}

.home-page .pr-tile h3 {
  color: var(--pr-ink-foreground);
  font-size: 22.4px;
  font-weight: 300;
}

.home-page .pr-tile-featured h3 {
  font-size: 32px;
}

.home-page .pr-tile p {
  max-width: 384px;
  margin-top: 12px;
  color: oklch(0.97 0.006 90 / 0.75);
  font-size: 15.7px;
  line-height: 1.625;
}

.home-page .pr-category-note {
  max-width: 672px;
  margin-top: 40px;
  color: oklch(0.97 0.006 90 / 0.5);
  font-size: 14px;
  line-height: 1.625;
}

.home-page .pr-about {
  padding: 80px 0;
  background: oklch(0.94 0.016 80 / 0.4);
}

.home-page .pr-about-grid {
  display: grid;
}

.home-page .pr-about-media {
  position: relative;
  min-height: 380px;
}

.home-page .pr-about-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-page .pr-about-copy-wrap {
  display: flex;
  align-items: center;
  padding: 64px 20px;
}

.home-page .pr-about-copy {
  max-width: 672px;
}

.home-page .pr-about-copy .pr-section-title {
  font-size: 36.8px;
}

.home-page .pr-about-body {
  margin-top: 28px;
  color: var(--pr-muted);
  font-size: 16.3px;
  line-height: 1.625;
}

.home-page .pr-about-body p + p {
  margin-top: 20px;
}

.home-page .pr-about-callout {
  margin-top: 40px;
  padding: 28px;
  border-left: 2px solid var(--pr-accent);
  background: var(--pr-background);
}

.home-page .pr-about-callout h3 {
  font-size: 21.6px;
  line-height: 1.375;
}

.home-page .pr-about-callout p {
  margin-top: 12px;
  color: var(--pr-muted);
  font-size: 15.7px;
  line-height: 1.625;
}

.home-page .pr-about-cta {
  margin-top: 40px;
}

.home-page .pr-benefits {
  padding: 64px 0;
  background: var(--pr-background);
}

.home-page .pr-benefits-grid {
  display: grid;
  gap: 48px;
}

.home-page .pr-benefits .pr-section-title {
  font-size: 33.6px;
}

.home-page .pr-benefit-list {
  border-top: 1px solid var(--pr-border);
  border-bottom: 1px solid var(--pr-border);
}

.home-page .pr-benefit {
  display: grid;
  grid-template-columns: auto auto 1fr;
  align-items: start;
  gap: 20px;
  padding: 28px 0;
}

.home-page .pr-benefit + .pr-benefit {
  border-top: 1px solid var(--pr-border);
}

.home-page .pr-benefit-index {
  color: var(--pr-accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.home-page .pr-benefit .pr-icon {
  color: oklch(0.19 0.032 258 / 0.6);
}

.home-page .pr-benefit dt {
  font-family: "Fraunces", Georgia, serif;
  font-size: 20.8px;
  line-height: 1.375;
}

.home-page .pr-benefit dd {
  max-width: 576px;
  margin-top: 8px;
  color: var(--pr-muted);
  font-size: 15.7px;
  line-height: 1.625;
}

.home-page .pr-brands {
  padding: 48px 0;
  border-top: 1px solid var(--pr-border);
  border-bottom: 1px solid var(--pr-border);
  background: var(--pr-surface);
}

.home-page .pr-brand-title {
  color: oklch(0.5 0.018 254 / 0.7);
  text-align: center;
}

.home-page .pr-brand-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: stretch;
  gap: 24px 32px;
  margin-top: 28px;
  list-style: none;
}

.home-page .pr-brand-list li {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
  padding: 0 8px;
}

.home-page .pr-brand-list img {
  width: auto;
  max-width: 130px;
  max-height: 44px;
  object-fit: contain;
}

.home-page .pr-testimonials {
  padding: 80px 0;
  background: var(--pr-ink);
  color: var(--pr-ink-foreground);
}

.home-page .pr-testimonials .pr-section-title {
  max-width: 672px;
  color: var(--pr-ink-foreground);
  font-size: 36.8px;
  line-height: 1.04;
}

.home-page .pr-testimonials-mobile {
  margin-top: 40px;
}

.home-page .pr-testimonial-featured-mobile,
.home-page .pr-testimonial-small-mobile {
  overflow: hidden;
  background: oklch(0.22 0.032 250 / 0.6);
}

.home-page .pr-testimonial-featured-mobile + .pr-testimonial-small-mobile,
.home-page .pr-testimonial-small-mobile + .pr-testimonial-small-mobile {
  margin-top: 20px;
}

.home-page .pr-testimonial-image {
  position: relative;
}

.home-page .pr-testimonial-image img {
  display: block;
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.home-page .pr-testimonial-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(to top, oklch(0.16 0.028 258 / 0.7), transparent);
}

.home-page .pr-testimonial-place {
  position: absolute;
  z-index: 1;
  bottom: 16px;
  left: 20px;
  color: oklch(0.97 0.006 90 / 0.85);
}

.home-page .pr-testimonial-mobile-copy,
.home-page .pr-testimonial-small-mobile {
  padding: 20px;
  border-left: 2px solid oklch(0.58 0.085 232 / 0.6);
}

.home-page .pr-quote-icon {
  color: var(--pr-accent);
}

.home-page .pr-testimonial-mobile-copy blockquote {
  margin-top: 12px;
  color: oklch(0.97 0.006 90 / 0.9);
  font-size: 18px;
  line-height: 1.55;
}

.home-page .pr-testimonial-small-mobile blockquote {
  color: oklch(0.97 0.006 90 / 0.9);
  font-size: 17px;
  line-height: 1.55;
}

.home-page .pr-testimonial-mobile-copy figcaption,
.home-page .pr-testimonial-small-mobile figcaption {
  margin-top: 16px;
  color: oklch(0.97 0.006 90 / 0.55);
}

.home-page .pr-testimonials-desktop {
  display: none;
}

.home-page .pr-faq-section {
  padding: 80px 0;
  background: var(--pr-background);
  scroll-margin-top: 16px;
}

.home-page .pr-faq-section .pr-section-title {
  font-size: 35.2px;
}

.home-page .pr-accordion {
  margin-top: 48px;
}

.home-page .pr-accordion-item {
  border-bottom: 1px solid var(--pr-border);
}

.home-page .pr-accordion-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 24px 0;
  border: 0;
  background: transparent;
  color: var(--pr-foreground);
  font-family: "Fraunces", Georgia, serif;
  font-size: 18.4px;
  font-weight: 400;
  line-height: 1.35;
  text-align: left;
}

.home-page .pr-chevron {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: var(--pr-accent);
  transition: transform 200ms ease;
}

.home-page .pr-accordion-button[aria-expanded="true"] .pr-chevron {
  transform: rotate(180deg);
}

.home-page .pr-accordion-panel {
  overflow: hidden;
}

.home-page .pr-accordion-panel[hidden] {
  display: none;
}

.home-page .pr-accordion-panel p {
  max-width: 768px;
  padding: 0 0 28px;
  color: var(--pr-muted);
  font-size: 15.7px;
  line-height: 1.625;
}

.home-page .pr-final {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.home-page .pr-final > img {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-page .pr-final::before,
.home-page .pr-final::after {
  position: absolute;
  inset: 0;
  z-index: -2;
  content: "";
}

.home-page .pr-final::before {
  background: oklch(0.16 0.028 258 / 0.45);
}

.home-page .pr-final::after {
  background: linear-gradient(to right, var(--pr-ink), oklch(0.16 0.028 258 / 0.5), transparent);
}

.home-page .pr-final-copy {
  display: flex;
  min-height: 560px;
  flex-direction: column;
  justify-content: center;
  padding-top: 96px;
  padding-bottom: 96px;
  color: var(--pr-ink-foreground);
}

.home-page .pr-final-copy h2 {
  max-width: 768px;
  margin-top: 24px;
  font-size: 41.6px;
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.02em;
}

.home-page .pr-final-copy > p:not(.pr-eyebrow) {
  max-width: 576px;
  margin-top: 24px;
  color: oklch(0.97 0.006 90 / 0.7);
  font-size: 16.8px;
  line-height: 1.625;
}

.home-page .pr-final-cta {
  margin-top: 40px;
}

.home-page .pr-cta-light {
  background: var(--pr-accent);
  color: var(--pr-accent-foreground);
}

.home-page .pr-cta-light:hover,
.home-page .pr-cta-light:focus-visible {
  background: var(--pr-ink-foreground);
  color: var(--pr-ink);
}

.home-page .pr-mobile-sticky {
  position: fixed;
  z-index: 40;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  border-top: 1px solid oklch(0.97 0.006 90 / 0.15);
  background: oklch(0.16 0.028 258 / 0.95);
  opacity: 0;
  pointer-events: none;
  backdrop-filter: blur(12px);
  transition: opacity 300ms ease;
}

.home-page .pr-mobile-sticky.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.home-page .pr-sticky-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  height: 52px;
  border: 0;
  border-radius: 2px;
  background: var(--pr-accent);
  color: var(--pr-accent-foreground);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-page .pr-reveal {
  opacity: 0;
  transform: translateY(18px);
  animation: pr-reveal-in 0.9s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes pr-reveal-in {
  to {
    opacity: 1;
    transform: none;
  }
}

@media (min-width: 576px) {
  .home-page .pr-hero-title {
    font-size: 40px;
  }

  .home-page .pr-redeem-card {
    padding: 28px;
  }

  .home-page .pr-section-title {
    font-size: 49.6px;
  }

  .home-page .pr-about-copy .pr-section-title,
  .home-page .pr-testimonials .pr-section-title {
    font-size: 48px;
  }

  .home-page .pr-benefits .pr-section-title {
    font-size: 41.6px;
  }

  .home-page .pr-tile-copy {
    padding: 32px;
  }

  .home-page .pr-tile-featured h3 {
    font-size: 41.6px;
  }

  .home-page .pr-brand-list li {
    height: 80px;
  }

  .home-page .pr-brand-list img {
    max-width: 150px;
    max-height: 48px;
  }

  .home-page .pr-faq-section .pr-section-title {
    font-size: 46.4px;
  }

  .home-page .pr-accordion-button {
    font-size: 20.8px;
  }

  .home-page .pr-final-copy h2 {
    font-size: 64px;
  }
}

@media (min-width: 768px) {
  .home-page .pr-tile-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: repeat(2, minmax(280px, 1fr));
  }

  .home-page .pr-tile-featured {
    grid-column: span 2;
    grid-row: span 2;
    min-height: 620px;
  }

  .home-page .pr-tile-travel {
    grid-column: span 2;
  }

  .home-page .pr-tile-shopping {
    min-height: 300px;
  }
}

@media (min-width: 992px) {
  .home-page .pr-hero-layout {
    display: grid;
    min-height: 560px;
    grid-template-columns: 45fr 55fr;
  }

  .home-page .pr-hero-copy {
    max-width: 672px;
    margin-left: auto;
    padding: 150px 56px 40px;
  }

  .home-page .pr-hero-title {
    font-size: 44.8px;
  }

  .home-page .pr-redeem-card {
    margin-top: 20px;
  }

  .home-page .pr-hero-image {
    position: absolute;
    inset: 0 0 0 auto;
    display: block;
    width: 55%;
    height: 100%;
  }

  .home-page .pr-hero-image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 65%;
  }

  .home-page .pr-hero-image::before,
  .home-page .pr-hero-image::after {
    position: absolute;
    inset: 0;
    content: "";
  }

  .home-page .pr-hero-image::before {
    background: linear-gradient(to right, var(--pr-ink), oklch(0.16 0.028 258 / 0.1), transparent);
  }

  .home-page .pr-hero-image::after {
    background:
      linear-gradient(to top, var(--pr-ink), oklch(0.16 0.028 258 / 0.7) 38%, transparent 68%),
      linear-gradient(to bottom, oklch(0.16 0.028 258 / 0.85), transparent 160px);
  }

  .home-page .pr-hero-caption {
    position: absolute;
    z-index: 1;
    right: 24px;
    bottom: 24px;
    max-width: 320px;
    padding-left: 20px;
    border-left: 1px solid oklch(0.58 0.085 232 / 0.7);
    color: oklch(0.97 0.006 90 / 0.9);
    font-family: "Fraunces", Georgia, serif;
    font-size: 16px;
    line-height: 1.375;
  }

  .home-page .pr-credibility-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .home-page .pr-credibility-card,
  .home-page .pr-credibility-card:nth-child(even) {
    padding: 28px;
    border-bottom: 0;
  }

  .home-page .pr-credibility-card + .pr-credibility-card {
    border-left: 1px solid oklch(0.97 0.006 90 / 0.12);
  }

  .home-page .pr-credibility-card h2 {
    font-size: 18.4px;
  }

  .home-page .pr-credibility-card p:last-child {
    font-size: 14.4px;
  }

  .home-page .pr-how {
    padding: 128px 0;
  }

  .home-page .pr-how-grid {
    grid-template-columns: 46fr 54fr;
    gap: 80px;
  }

  .home-page .pr-how-media > img {
    aspect-ratio: 4 / 5.2;
  }

  .home-page .pr-step-note {
    position: absolute;
    right: -16px;
    bottom: -24px;
    display: block;
    padding: 24px 32px;
    background: var(--pr-ink);
    color: var(--pr-ink-foreground);
  }

  .home-page .pr-step-note p:last-child {
    margin-top: 4px;
    font-family: "Fraunces", Georgia, serif;
    font-size: 24px;
  }

  .home-page .pr-categories {
    padding: 128px 0;
  }

  .home-page .pr-categories-heading {
    grid-template-columns: 1fr 1fr;
    align-items: end;
  }

  .home-page .pr-about {
    padding: 0;
  }

  .home-page .pr-about-grid {
    grid-template-columns: 48fr 52fr;
  }

  .home-page .pr-about-media {
    min-height: 760px;
  }

  .home-page .pr-about-copy-wrap {
    padding: 96px max(32px, calc((100vw - 1344px) / 2 + 20px)) 96px 64px;
  }

  .home-page .pr-benefits {
    padding: 96px 0;
  }

  .home-page .pr-benefits-grid {
    grid-template-columns: 36fr 64fr;
    gap: 80px;
  }

  .home-page .pr-brand-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .home-page .pr-brand-list li {
    height: 96px;
  }

  .home-page .pr-brand-list img {
    max-width: 180px;
    max-height: 60px;
  }

  .home-page .pr-testimonials {
    padding: 112px 0;
  }

  .home-page .pr-testimonials-mobile {
    display: none;
  }

  .home-page .pr-testimonials-desktop {
    display: grid;
    grid-template-columns: 55fr 45fr;
    gap: 16px;
    margin-top: 56px;
  }

  .home-page .pr-testimonial-featured-desktop {
    position: relative;
    min-height: 620px;
    overflow: hidden;
  }

  .home-page .pr-testimonial-featured-desktop > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .home-page .pr-testimonial-featured-desktop::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(to top, var(--pr-ink), oklch(0.16 0.028 258 / 0.4), transparent);
  }

  .home-page .pr-testimonial-featured-desktop figcaption {
    position: absolute;
    z-index: 1;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 40px;
  }

  .home-page .pr-testimonial-featured-desktop blockquote {
    max-width: 512px;
    margin-top: 16px;
    color: var(--pr-ink-foreground);
    font-family: "Fraunces", Georgia, serif;
    font-size: 32px;
    font-weight: 300;
    line-height: 1.375;
  }

  .home-page .pr-testimonial-featured-desktop p {
    margin-top: 20px;
    color: oklch(0.97 0.006 90 / 0.6);
  }

  .home-page .pr-testimonial-side {
    display: grid;
    gap: 16px;
  }

  .home-page .pr-testimonial-side figure {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 40px;
    border-left: 2px solid oklch(0.58 0.085 232 / 0.6);
    background: oklch(0.22 0.032 250 / 0.6);
  }

  .home-page .pr-testimonial-side blockquote {
    color: oklch(0.97 0.006 90 / 0.9);
    font-family: "Fraunces", Georgia, serif;
    font-size: 21.6px;
    font-weight: 300;
    line-height: 1.375;
  }

  .home-page .pr-testimonial-side figcaption {
    margin-top: 32px;
    color: oklch(0.97 0.006 90 / 0.55);
  }

  .home-page .pr-faq-section {
    padding: 112px 0;
  }

  .home-page .pr-final-copy {
    padding-top: 128px;
    padding-bottom: 128px;
  }

  .home-page .pr-mobile-sticky {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-page .pr-reveal {
    opacity: 1;
    transform: none;
    animation: none;
  }

  .home-page .pr-tile img,
  .home-page .pr-arrow,
  .home-page .pr-chevron {
    transition: none;
  }
}
