:root {
  --bg: oklch(96% 0.018 78);
  --surface: oklch(99% 0.008 78);
  --fg: oklch(28% 0.035 54);
  --muted: oklch(49% 0.025 57);
  --border: oklch(85% 0.025 73);
  --accent: oklch(52% 0.13 43);
  --walnut: oklch(35% 0.055 47);
  --cream-deep: oklch(91% 0.035 77);
  --success: oklch(50% 0.09 145);
  --error: oklch(48% 0.15 28);
  --display: "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --body: "Avenir Next", "Segoe UI", sans-serif;
  --mono: "SFMono-Regular", Consolas, monospace;
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
  --shadow: 0 18px 48px color-mix(in oklch, var(--fg) 10%, transparent);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.62;
  text-rendering: optimizeLegibility;
}
body::selection {
  background: var(--accent);
  color: var(--surface);
}
img {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
select,
input,
textarea {
  outline: none;
}
button:focus-visible,
a:focus-visible,
select:focus-visible,
input:focus-visible,
textarea:focus-visible {
  box-shadow:
    0 0 0 3px var(--bg),
    0 0 0 5px var(--accent);
}
p {
  max-width: 72ch;
  text-wrap: pretty;
}
h1,
h2,
h3 {
  font-family: var(--display);
  line-height: 1.06;
  letter-spacing: -0.025em;
  text-wrap: balance;
  margin: 0;
}
h1 {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 500;
}
h2 {
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  font-weight: 500;
}
h3 {
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  font-weight: 600;
}
.mypr-shell {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}
.mypr-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: color-mix(in oklch, var(--bg) 92%, transparent);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
.mypr-headrow {
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 30px;
}
.mypr-brand {
  font-family: var(--display);
  font-size: 1.45rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-right: auto;
}
.mypr-brand span {
  display: block;
  font: 600 0.62rem/1 var(--mono);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: 4px;
}
.mypr-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.mypr-nav a {
  min-height: 44px;
  display: flex;
  align-items: center;
  color: var(--muted);
  font-size: 0.89rem;
}
.mypr-nav a:hover,
.mypr-nav a[aria-current="page"] {
  color: var(--fg);
}
.mypr-menu {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  min-width: 44px;
  min-height: 44px;
  color: var(--fg);
}
.mypr-btn {
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  cursor: pointer;
  transition:
    background 0.2s var(--ease),
    color 0.2s var(--ease),
    border-color 0.2s var(--ease),
    transform 0.2s var(--ease);
}
.mypr-btn:hover {
  transform: translateY(-2px);
}
.mypr-btn-primary {
  background: var(--accent);
  color: var(--surface);
}
.mypr-btn-primary:hover {
  background: color-mix(in oklch, var(--accent) 84%, var(--fg));
  color: var(--surface);
}
.mypr-btn-secondary {
  background: transparent;
  color: var(--fg);
  border-color: var(--border);
}
.mypr-btn-secondary:hover {
  border-color: var(--fg);
  background: var(--surface);
}
.mypr-main {
  overflow: hidden;
}
.mypr-section {
  padding: clamp(72px, 10vw, 138px) 0;
  border-top: 1px solid var(--border);
}
.mypr-section:first-child {
  border-top: 0;
}
.mypr-kicker {
  font: 700 0.72rem/1.3 var(--mono);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 22px;
}
.mypr-lead {
  font-size: clamp(1.08rem, 2vw, 1.28rem);
  color: var(--muted);
  margin: 24px 0 0;
}
.mypr-sectionhead {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(280px, 0.65fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 54px;
}
.mypr-sectionhead p {
  color: var(--muted);
  margin: 0;
}
.mypr-hero {
  position: relative;
  min-height: calc(100svh - 76px);
  background: var(--walnut);
  color: var(--surface);
}
.mypr-slides {
  position: absolute;
  inset: 0;
}
.mypr-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.65s var(--ease),
    visibility 0.65s;
}
.mypr-slide.is-active {
  opacity: 1;
  visibility: visible;
}
.mypr-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mypr-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    color-mix(in oklch, var(--walnut) 91%, transparent) 0%,
    color-mix(in oklch, var(--walnut) 63%, transparent) 46%,
    color-mix(in oklch, var(--walnut) 20%, transparent) 100%
  );
}
.mypr-heroin {
  position: relative;
  z-index: 2;
  min-height: calc(100svh - 76px);
  display: flex;
  align-items: center;
  padding-block: 70px;
}
.mypr-herocopy {
  max-width: 680px;
}
.mypr-herocopy h1 {
  max-width: 10ch;
}
.mypr-herocopy p {
  font-size: 1.2rem;
  color: color-mix(in oklch, var(--surface) 78%, transparent);
  max-width: 48ch;
  margin: 24px 0 34px;
}
.mypr-herocopy > [data-slide-copy] {
  display: none;
}
.mypr-herocopy > [data-slide-copy].is-active {
  display: block;
}
.mypr-heroactions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.mypr-slidecontrols {
  position: absolute;
  z-index: 4;
  right: max(20px, calc((100vw - 1180px) / 2));
  bottom: 38px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.mypr-slidedot,
.mypr-slidepause {
  min-width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid color-mix(in oklch, var(--surface) 45%, transparent);
  background: color-mix(in oklch, var(--walnut) 42%, transparent);
  color: var(--surface);
  cursor: pointer;
}
.mypr-slidedot.is-active,
.mypr-slidepause:hover {
  background: var(--surface);
  color: var(--walnut);
}
.mypr-slidepause {
  border-radius: 999px;
  padding-inline: 14px;
}
.mypr-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--fg);
}
.mypr-timeitem {
  padding: 28px 28px 8px 0;
  border-right: 1px solid var(--border);
}
.mypr-timeitem + .mypr-timeitem {
  padding-left: 28px;
}
.mypr-timeitem:last-child {
  border-right: 0;
}
.mypr-timeitem time {
  font: 700 0.75rem var(--mono);
  color: var(--accent);
}
.mypr-timeitem h3 {
  font-size: 1.35rem;
  margin: 13px 0 10px;
}
.mypr-timeitem p {
  font-size: 0.94rem;
  color: var(--muted);
  margin: 0;
}
.mypr-pricegrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.mypr-price {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  min-height: 360px;
}
.mypr-price.is-featured {
  background: var(--walnut);
  color: var(--surface);
  border-color: var(--walnut);
}
.mypr-price p {
  color: var(--muted);
}
.mypr-price.is-featured p {
  color: color-mix(in oklch, var(--surface) 70%, transparent);
}
.mypr-price strong {
  font: 500 clamp(2.4rem, 4vw, 4rem)/1 var(--display);
  margin-top: auto;
}
.mypr-price strong span {
  font: 500 0.9rem var(--body);
}
.mypr-checks {
  padding: 0;
  list-style: none;
  color: var(--muted);
}
.mypr-checks li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
}
.mypr-loyalty {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.mypr-loyalty img,
.mypr-media img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow);
}
.mypr-list {
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 18px;
  overflow: hidden;
}
.mypr-listarticle {
  background: var(--surface);
  padding: 26px;
}
.mypr-listarticle h3 {
  font-size: 1.28rem;
  margin-bottom: 7px;
}
.mypr-listarticle p {
  margin: 0;
  color: var(--muted);
}
.mypr-selector {
  background: var(--walnut);
  color: var(--surface);
}
.mypr-formgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.mypr-field {
  display: grid;
  gap: 8px;
}
.mypr-field label {
  font-size: 0.85rem;
  color: color-mix(in oklch, var(--surface) 74%, transparent);
}
.mypr-field select,
.mypr-field input,
.mypr-field textarea {
  width: 100%;
  min-height: 50px;
  background: color-mix(in oklch, var(--surface) 8%, transparent);
  color: var(--surface);
  border: 1px solid color-mix(in oklch, var(--surface) 28%, transparent);
  border-radius: 12px;
  padding: 12px 14px;
}
.mypr-field select option {
  color: var(--fg);
  background: var(--surface);
}
.mypr-formresult {
  min-height: 52px;
  margin: 24px 0 0;
  color: color-mix(in oklch, var(--surface) 78%, transparent);
}
.mypr-video {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  background: var(--walnut);
  box-shadow: var(--shadow);
}
.mypr-video img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  opacity: 0.78;
}
.mypr-play {
  position: absolute;
  inset: 50% auto auto 50%;
  translate: -50% -50%;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  border: 1px solid var(--surface);
  background: color-mix(in oklch, var(--walnut) 65%, transparent);
  color: var(--surface);
  font-size: 0;
}
.mypr-play::before {
  content: "";
  display: block;
  margin: auto;
  width: 14px;
  height: 18px;
  background: var(--surface);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  transform: translateX(2px);
}
.mypr-teamgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.mypr-person figure {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: var(--cream-deep);
}
.mypr-person img {
  width: 100%;
  aspect-ratio: 9/12;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.mypr-person:hover img {
  transform: scale(1.035);
}
.mypr-person h3 {
  font-size: 1.5rem;
  margin: 20px 0 4px;
}
.mypr-person p {
  margin: 0;
  color: var(--muted);
}
.mypr-news {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border-block: 1px solid var(--border);
}
.mypr-news article {
  background: var(--bg);
  padding: 30px;
}
.mypr-news time {
  font: 0.76rem var(--mono);
  color: var(--muted);
}
.mypr-news h3 {
  font-size: 1.45rem;
  margin: 16px 0;
}
.mypr-collabs {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
  padding: 34px 0;
  border-block: 1px solid var(--fg);
}
.mypr-collabs span {
  font-family: var(--display);
  font-size: 1.3rem;
  color: var(--muted);
}
.mypr-catgrid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.mypr-category {
  min-height: 260px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transition:
    background 0.22s var(--ease),
    transform 0.22s var(--ease);
}
.mypr-category:hover {
  background: var(--cream-deep);
  transform: translateY(-3px);
}
.mypr-category h3 {
  font-size: 2rem;
}
.mypr-category p {
  color: var(--muted);
}
.mypr-stories {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 70px;
}
.mypr-quote {
  margin: 0;
  font: 500 clamp(2rem, 4vw, 3.8rem)/1.15 var(--display);
}
.mypr-quote cite {
  display: block;
  margin-top: 24px;
  font: 500 0.9rem var(--body);
  color: var(--muted);
  font-style: normal;
}
.mypr-casefacts {
  display: grid;
  gap: 20px;
}
.mypr-casefacts div {
  border-top: 1px solid var(--fg);
  padding-top: 18px;
}
.mypr-casefacts strong {
  font: 600 1.15rem var(--display);
  display: block;
}
.mypr-casefacts span {
  color: var(--muted);
}
.mypr-faq {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 80px;
}
.mypr-faqlist {
  border-top: 1px solid var(--fg);
}
.mypr-faqitem {
  border-bottom: 1px solid var(--border);
}
.mypr-faqbutton {
  width: 100%;
  min-height: 66px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  border: 0;
  background: transparent;
  color: var(--fg);
  font-weight: 700;
  padding: 18px 0;
}
.mypr-faqbutton span:last-child {
  font-size: 1.4rem;
  font-weight: 400;
}
.mypr-faqanswer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.22s var(--ease);
}
.mypr-faqanswer > div {
  overflow: hidden;
}
.mypr-faqanswer p {
  margin: 0 0 20px;
  color: var(--muted);
}
.mypr-faqitem.is-open .mypr-faqanswer {
  grid-template-rows: 1fr;
}
.mypr-footer {
  background: var(--walnut);
  color: var(--surface);
  padding: 76px 0 32px;
}
.mypr-footgrid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 50px;
}
.mypr-footgrid h2 {
  font-size: 2.7rem;
}
.mypr-footgrid h3 {
  font-family: var(--body);
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: color-mix(in oklch, var(--surface) 60%, transparent);
  margin-bottom: 18px;
}
.mypr-footgrid a,
.mypr-footgrid p {
  display: block;
  color: color-mix(in oklch, var(--surface) 78%, transparent);
  margin: 8px 0;
}
.mypr-footgrid a:hover {
  color: var(--surface);
}
.mypr-footbottom {
  border-top: 1px solid color-mix(in oklch, var(--surface) 22%, transparent);
  margin-top: 54px;
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: color-mix(in oklch, var(--surface) 58%, transparent);
  font-size: 0.78rem;
}
[id] {
  scroll-margin-top: 96px;
}
.mypr-skip {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 90;
  padding: 10px 16px;
  background: var(--surface);
  color: var(--fg);
  border-radius: 8px;
  transform: translateY(-150%);
}
.mypr-skip:focus {
  transform: none;
}
.mypr-subhero {
  padding: clamp(80px, 10vw, 140px) 0 80px;
}
.mypr-subhero h1 {
  max-width: 11ch;
}
.mypr-subhero p {
  font-size: 1.2rem;
  color: var(--muted);
  max-width: 56ch;
}
.mypr-contentgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.mypr-contentcard {
  border-top: 1px solid var(--fg);
  padding: 26px 0;
}
.mypr-contentcard p {
  color: var(--muted);
}
.mypr-contactgrid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
}
.mypr-contactdata {
  display: grid;
  gap: 24px;
}
.mypr-contactdata div {
  border-top: 1px solid var(--border);
  padding-top: 18px;
}
.mypr-contactform {
  display: grid;
  gap: 18px;
  margin-top: 34px;
  padding: 28px;
  background: var(--walnut);
  color: var(--surface);
  border-radius: 18px;
}
.mypr-contactform .mypr-field input,
.mypr-contactform .mypr-field textarea {
  background: color-mix(in oklch, var(--surface) 8%, transparent);
  color: var(--surface);
  border: 1px solid color-mix(in oklch, var(--surface) 28%, transparent);
}
.mypr-trap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}
.mypr-sendok {
  margin-top: 34px;
  padding: 22px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--cream-deep);
  font-weight: 700;
}
.mypr-notice {
  padding: 18px;
  border-radius: 12px;
  background: var(--cream-deep);
  color: var(--muted);
}
.mypr-cookie {
  position: fixed;
  z-index: 60;
  left: 20px;
  bottom: 20px;
  width: min(440px, calc(100% - 40px));
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow);
}
.mypr-cookie p {
  font-size: 0.88rem;
  color: var(--muted);
  margin: 0 0 16px;
}
.mypr-cookie.is-hidden {
  display: none;
}
.mypr-mobilepanel {
  display: none;
}
@media (max-width: 980px) {
  .mypr-nav,
  .mypr-headrow > .mypr-btn {
    display: none;
  }
  .mypr-menu {
    display: block;
  }
  .mypr-mobilepanel {
    position: fixed;
    inset: 76px 0 auto;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 24px 20px;
    z-index: 39;
  }
  .mypr-mobilepanel.is-open {
    display: grid;
    gap: 8px;
  }
  .mypr-mobilepanel a {
    min-height: 48px;
    display: flex;
    align-items: center;
  }
  .mypr-sectionhead,
  .mypr-loyalty,
  .mypr-stories,
  .mypr-faq,
  .mypr-contactgrid {
    grid-template-columns: 1fr;
    gap: 38px;
  }
  .mypr-timeline,
  .mypr-pricegrid,
  .mypr-teamgrid,
  .mypr-news {
    grid-template-columns: 1fr 1fr;
  }
  .mypr-footgrid {
    grid-template-columns: 1fr 1fr;
  }
  .mypr-formgrid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 640px) {
  .mypr-shell {
    width: min(100% - 28px, 1180px);
  }
  .mypr-headrow {
    min-height: 68px;
  }
  .mypr-mobilepanel {
    inset: 68px 0 auto;
  }
  .mypr-hero,
  .mypr-heroin {
    min-height: calc(100svh - 68px);
  }
  .mypr-heroin {
    align-items: flex-end;
    padding-bottom: 130px;
  }
  .mypr-slide::after {
    background: linear-gradient(
      0deg,
      color-mix(in oklch, var(--walnut) 92%, transparent),
      color-mix(in oklch, var(--walnut) 25%, transparent)
    );
  }
  .mypr-herocopy h1 {
    font-size: clamp(2.8rem, 15vw, 4.5rem);
  }
  .mypr-slidecontrols {
    right: 14px;
    bottom: 24px;
  }
  .mypr-timeline,
  .mypr-pricegrid,
  .mypr-teamgrid,
  .mypr-news,
  .mypr-catgrid,
  .mypr-contentgrid {
    grid-template-columns: 1fr;
  }
  .mypr-timeitem,
  .mypr-timeitem + .mypr-timeitem {
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }
  .mypr-footgrid {
    grid-template-columns: 1fr;
  }
  .mypr-footbottom {
    flex-direction: column;
  }
  .mypr-section {
    padding: 72px 0;
  }
  .mypr-price {
    min-height: 320px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .mypr-slide,
  .mypr-person img,
  .mypr-btn,
  .mypr-category,
  .mypr-faqanswer {
    transition: none;
  }
  .mypr-person:hover img,
  .mypr-btn:hover,
  .mypr-category:hover {
    transform: none;
  }
}
