@import url("https://fonts.googleapis.com/css2?family=Archivo+Black&family=DM+Sans:wght@400;500;600;700&display=swap");

:root {
  --ps-purple: #653070;
  --ps-plum: #2d1532;
  --ps-lavender: #d5a6de;
  --ps-pink: #e8a8c9;
  --ps-peach: #f4c4aa;
  --ps-green: #3d7d60;
  --ps-mint: #b7dfc6;
  --ps-cream: #f7f0df;
  --ps-paper: #fffaf0;
  --ps-ink: #19141b;
  --ps-muted: #655c67;
  --ps-line: #19141b;
  --ps-shadow: 7px 7px 0 #19141b;

  --bg: var(--ps-cream);
  --surface: var(--ps-paper);
  --surface-2: var(--ps-lavender);
  --ink: var(--ps-ink);
  --muted: var(--ps-muted);
  --line: var(--ps-line);
  --violet-700: var(--ps-purple);
  --violet-500: var(--ps-purple);
  --violet-300: var(--ps-lavender);
  --green-700: var(--ps-green);
  --green-500: var(--ps-mint);
  --gold: var(--ps-peach);

  --purple: var(--ps-purple);
  --purple-dark: var(--ps-plum);
  --purple-deep: var(--ps-plum);
  --purple-light: var(--ps-lavender);
  --purple-pale: var(--ps-lavender);
  --purple-subtle: var(--ps-cream);
  --text-dark: var(--ps-ink);
  --text-mid: var(--ps-muted);
  --border: var(--ps-ink);
  --white: var(--ps-paper);
  --radius: 0;
  --radius-pill: 0;
  --radius-sm: 0;
  --radius-md: 0;
  --radius-lg: 0;
  --shadow-soft: var(--ps-shadow);
  --shadow-strong: 10px 10px 0 var(--ps-ink);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  background-image: none !important;
}

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--ps-lavender) var(--ps-plum);
  scrollbar-width: thin;
}

*::-webkit-scrollbar {
  width: 14px;
  height: 14px;
}

*::-webkit-scrollbar-track {
  background: var(--ps-plum);
  border-left: 2px solid var(--ps-ink);
}

*::-webkit-scrollbar-thumb {
  background: var(--ps-lavender);
  border: 3px solid var(--ps-plum);
  border-radius: 0;
}

*::-webkit-scrollbar-thumb:hover {
  background: var(--ps-mint);
}

*::-webkit-scrollbar-corner {
  background: var(--ps-plum);
}

::selection {
  color: var(--ps-ink);
  background: var(--ps-mint);
}

body {
  margin: 0;
  color: var(--ps-ink) !important;
  background: var(--ps-cream) !important;
  font-family: "DM Sans", "Segoe UI", sans-serif !important;
  line-height: 1.55;
}

h1,
h2,
h3,
h4,
.product-name,
.service-tile-name,
.path-title,
.tier-price,
.price,
.stat-num,
.big-point {
  color: inherit;
  font-family: "Archivo Black", "Arial Black", sans-serif !important;
  letter-spacing: -.035em !important;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.pill,
.badge,
.badge-outline,
.eyebrow,
.product-tag,
.tier-label,
.post-card-accent {
  display: none !important;
}

header,
.top-nav,
.site-header {
  position: sticky !important;
  top: 0;
  z-index: 1000;
  min-height: 78px;
  color: var(--ps-ink) !important;
  background: var(--ps-paper) !important;
  border: 0 !important;
  border-bottom: 3px solid var(--ps-ink) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  -webkit-backdrop-filter: none !important;
  backdrop-filter: none !important;
}

.nav-row,
.nav-inner,
header:not(.top-nav):not(.site-header) {
  min-height: 78px;
  align-items: center;
}

.brand img,
.brand-logo,
header .brand img {
  width: auto !important;
  height: 46px !important;
  object-fit: contain;
}

.nav-links a {
  position: relative;
  color: var(--ps-ink) !important;
  font-family: "Archivo Black", "Arial Black", sans-serif !important;
  font-size: .72rem !important;
  letter-spacing: 0 !important;
  text-transform: uppercase;
}

.nav-links a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -5px;
  height: 4px;
  background: var(--ps-pink);
  transition: right 160ms ease;
}

.nav-links a:not(.nav-cta):hover::after,
.nav-links a:not(.nav-cta):focus-visible::after,
.nav-links a.active:not(.nav-cta)::after {
  right: 0;
}

.nav-toggle,
.menu-toggle {
  color: var(--ps-paper) !important;
  background: var(--ps-purple) !important;
  border: 2px solid var(--ps-ink) !important;
  border-radius: 0 !important;
  box-shadow: 4px 4px 0 var(--ps-ink) !important;
}

.nav-toggle span,
.menu-toggle span {
  background: currentColor !important;
}

.nav-links.open,
.nav-open .nav-links,
.menu-open .nav-links {
  background: var(--ps-paper) !important;
  border-bottom: 3px solid var(--ps-ink) !important;
}

.hero,
.page-hero,
.blog-hero,
.post-hero,
.shop-hero,
.order-hero {
  position: relative;
  color: var(--ps-paper) !important;
  background: var(--ps-purple) !important;
  border: 0 !important;
  border-bottom: 3px solid var(--ps-ink) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

.hero::before,
.blog-hero::before,
.post-hero::before {
  content: "";
  position: absolute;
  top: 32px;
  right: -45px;
  width: 120px;
  height: 120px;
  background: var(--ps-pink) !important;
  border: 3px solid var(--ps-ink);
  transform: rotate(18deg);
  pointer-events: none;
}

.hero::after,
.blog-hero::after,
.post-hero::after {
  content: "";
  position: absolute;
  left: -55px;
  bottom: -65px;
  width: 125px;
  height: 125px;
  background: var(--ps-mint) !important;
  border: 3px solid var(--ps-ink);
  transform: rotate(45deg);
  pointer-events: none;
}

.hero h1,
.hero h2,
.hero p,
.blog-hero h1,
.blog-hero p,
.post-hero h1,
.post-hero p,
.post-hero .byline {
  position: relative;
  z-index: 2;
  color: var(--ps-paper) !important;
}

.hero h1,
.blog-hero h1,
.post-hero h1 {
  font-size: clamp(2.5rem, 6vw, 5.8rem) !important;
  line-height: .92 !important;
  text-transform: uppercase;
}

.hero h1 span,
.hero .accent-line,
.blog-hero .accent-line,
.post-hero .accent-line {
  color: var(--ps-mint) !important;
}

.hero-bg {
  opacity: .16 !important;
  filter: grayscale(.2) contrast(1.08);
}

.hero-overlay {
  background: transparent !important;
}

.section,
section.section,
main > section:not(.hero):not(.page-hero):not(.blog-hero):not(.post-hero) {
  background-color: var(--ps-cream);
}

.bg-subtle,
.section:nth-of-type(3n + 2) {
  background-color: var(--ps-paper) !important;
}

.dark-section,
.dark-cta {
  color: var(--ps-paper) !important;
  background: var(--ps-plum) !important;
}

.dark-section p,
.dark-section h2,
.dark-section h3,
.dark-cta h1,
.dark-cta h2,
.dark-cta h3,
.dark-cta p,
.dark-cta span,
.dark-cta strong {
  color: inherit !important;
}

.panel,
.card,
.product-card,
.prod-card,
.service-tile,
.review-card,
.review-block,
.truth-card,
.step-card,
.order-card,
.video-card,
.social-card,
.tier,
.path-card,
.bio-card,
.stat-box,
.stat-block,
.big-point,
.google-card,
.note-box,
.avail-note,
.callout,
.cta-box,
.cta-strip,
.cta-banner,
.offer-band {
  color: var(--ps-ink) !important;
  background: var(--ps-paper) !important;
  border: 3px solid var(--ps-ink) !important;
  border-radius: 0 !important;
  box-shadow: var(--ps-shadow) !important;
}

.panel :is(h1, h2, h3, h4, p, li, span, strong, small, cite),
.card :is(h1, h2, h3, h4, p, li, span, strong, small, cite),
.product-card :is(h1, h2, h3, h4, p, li, span, strong, small, cite),
.prod-card :is(h1, h2, h3, h4, p, li, span, strong, small, cite),
.service-tile :is(h1, h2, h3, h4, p, li, span, strong, small, cite),
.review-card :is(h1, h2, h3, h4, p, li, span, strong, small, cite),
.review-block :is(h1, h2, h3, h4, p, li, span, strong, small, cite),
.truth-card :is(h1, h2, h3, h4, p, li, span, strong, small, cite),
.step-card :is(h1, h2, h3, h4, p, li, span, strong, small, cite),
.order-card :is(h1, h2, h3, h4, p, li, span, strong, small, cite),
.video-card :is(h1, h2, h3, h4, p, li, span, strong, small, cite),
.social-card :is(h1, h2, h3, h4, p, li, span, strong, small, cite),
.tier :is(h1, h2, h3, h4, p, li, span, strong, small, cite),
.path-card :is(h1, h2, h3, h4, p, li, span, strong, small, cite),
.bio-card :is(h1, h2, h3, h4, p, li, span, strong, small, cite),
.stat-box :is(h1, h2, h3, h4, p, li, span, strong, small, cite),
.stat-block :is(h1, h2, h3, h4, p, li, span, strong, small, cite),
.big-point :is(h1, h2, h3, h4, p, li, span, strong, small, cite),
.google-card :is(h1, h2, h3, h4, p, li, span, strong, small, cite),
.note-box :is(h1, h2, h3, h4, p, li, span, strong, small, cite),
.avail-note :is(h1, h2, h3, h4, p, li, span, strong, small, cite),
.callout :is(h1, h2, h3, h4, p, li, span, strong, small, cite),
.cta-box :is(h1, h2, h3, h4, p, li, span, strong, small, cite),
.cta-strip :is(h1, h2, h3, h4, p, li, span, strong, small, cite),
.cta-banner :is(h1, h2, h3, h4, p, li, span, strong, small, cite),
.offer-band :is(h1, h2, h3, h4, p, li, span, strong, small, cite) {
  color: var(--ps-ink) !important;
}

.section:not(.dark-section):not(.dark-cta) :is(.section-inner, .shell, .wrap, .narrow) > :is(h1, h2, h3, h4, p) {
  color: var(--ps-ink) !important;
}

.avail-note {
  color: var(--ps-ink) !important;
  background: var(--ps-mint) !important;
}

.showcase,
.shorts-section {
  background: var(--ps-paper) !important;
}

.same-day-callout {
  color: var(--ps-paper) !important;
  background: var(--ps-plum) !important;
  border: 3px solid var(--ps-ink) !important;
  border-radius: 0 !important;
}

.same-day-callout :is(h1, h2, h3, h4, p, span, strong) {
  color: var(--ps-paper) !important;
}

.local-point-num {
  color: var(--ps-ink) !important;
  background: var(--ps-mint) !important;
  border: 2px solid var(--ps-ink) !important;
  border-radius: 0 !important;
}

body.reinvention-page {
  color: var(--ps-paper) !important;
  background: var(--ps-plum) !important;
}

body.reinvention-page .section:not(.offer-band) {
  color: var(--ps-paper) !important;
  background: var(--ps-plum) !important;
}

body.reinvention-page .section:not(.offer-band) :is(.wrap, .narrow) > :is(h1, h2, h3, h4, p, .sub, .label) {
  color: var(--ps-paper) !important;
}

body.reinvention-page .section:not(.offer-band) :is(.card, .panel, .truth-card, .big-point) {
  color: var(--ps-ink) !important;
  background: var(--ps-paper) !important;
}

.product-grid > :nth-child(3n + 1),
.service-grid > :nth-child(3n + 1),
.posts-grid > :nth-child(3n + 1),
.reviews-grid > :nth-child(3n + 1),
.steps-grid > :nth-child(3n + 1),
.tiers > :nth-child(3n + 1) {
  background-color: var(--ps-lavender) !important;
}

.product-grid > :nth-child(3n + 2),
.service-grid > :nth-child(3n + 2),
.posts-grid > :nth-child(3n + 2),
.reviews-grid > :nth-child(3n + 2),
.steps-grid > :nth-child(3n + 2),
.tiers > :nth-child(3n + 2) {
  background-color: var(--ps-peach) !important;
}

.product-grid > :nth-child(3n),
.service-grid > :nth-child(3n),
.posts-grid > :nth-child(3n),
.reviews-grid > :nth-child(3n),
.steps-grid > :nth-child(3n),
.tiers > :nth-child(3n) {
  background-color: var(--ps-mint) !important;
}

.product-card,
.prod-card,
.post-card,
.video-card,
.social-card {
  overflow: hidden;
}

.product-image,
.video-embed,
.short-embed {
  background: var(--ps-plum) !important;
  border-bottom: 3px solid var(--ps-ink) !important;
}

.product-image img,
.gallery-item img,
.video-card img {
  filter: saturate(.88) contrast(1.05);
}

.post-card,
.product-card,
.prod-card,
.service-tile,
.video-card,
.social-card {
  transition: transform 160ms ease, box-shadow 160ms ease !important;
}

a.post-card:hover,
a.product-card:hover,
a.prod-card:hover,
a.service-tile:hover,
a.video-card:hover,
a.social-card:hover {
  transform: translate(-2px, -2px) !important;
  box-shadow: 10px 10px 0 var(--ps-ink) !important;
}

.button,
.btn,
.btn-primary,
.btn-secondary,
.btn-ghost,
.btn-white,
.btn-ghost-white,
.btn-quote,
.btn-buy,
.buy-link,
.cta-btn,
.cta-primary,
.submit-btn,
.nav-cta,
.tier-cta,
.path-btn,
.sd-link-ghost,
.sd-link-primary,
.web-learn,
button:not(.lightbox-close),
input[type="submit"] {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 22px !important;
  color: var(--ps-ink) !important;
  background: var(--ps-mint) !important;
  border: 0 !important;
  border-radius: 0 !important;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 14px 100%, 0 calc(100% - 14px));
  box-shadow: none !important;
  filter: drop-shadow(5px 5px 0 var(--ps-ink));
  font-family: "Archivo Black", "Arial Black", sans-serif !important;
  font-size: .76rem !important;
  letter-spacing: 0 !important;
  text-decoration: none !important;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 150ms ease, filter 150ms ease !important;
}

.button:hover,
.btn:hover,
.btn-primary:hover,
.btn-secondary:hover,
.btn-ghost:hover,
.btn-white:hover,
.btn-ghost-white:hover,
.btn-quote:hover,
.btn-buy:hover,
.buy-link:hover,
.cta-btn:hover,
.cta-primary:hover,
.submit-btn:hover,
.nav-cta:hover,
.tier-cta:hover,
.path-btn:hover,
.sd-link-ghost:hover,
.sd-link-primary:hover,
.web-learn:hover,
button:not(.lightbox-close):hover,
input[type="submit"]:hover {
  color: var(--ps-ink) !important;
  background: var(--ps-lavender) !important;
  transform: translate(-2px, -2px) !important;
  filter: drop-shadow(8px 8px 0 var(--ps-ink));
}

.btn-secondary,
.btn-ghost,
.btn-ghost-white,
.btn-white {
  background: var(--ps-paper) !important;
}

.tab-bar,
.category-tabs,
.filters {
  background: var(--ps-paper) !important;
  border-top: 0 !important;
  border-bottom: 3px solid var(--ps-ink) !important;
}

.tab-bar button,
.tab-btn,
.filter-btn {
  min-height: 42px;
  background: var(--ps-paper) !important;
  border: 2px solid var(--ps-ink) !important;
  clip-path: none;
  filter: none;
}

.tab-bar button.active,
.tab-btn.active,
.filter-btn.active {
  color: var(--ps-paper) !important;
  background: var(--ps-purple) !important;
}

form,
.shirt-form,
.quote-form,
.order-form {
  color: var(--ps-ink);
}

input,
select,
textarea {
  color: var(--ps-ink) !important;
  background: var(--ps-paper) !important;
  border: 2px solid var(--ps-ink) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-family: "DM Sans", "Segoe UI", sans-serif !important;
}

input:focus,
select:focus,
textarea:focus {
  outline: 4px solid var(--ps-lavender) !important;
  outline-offset: 1px;
}

label,
.field > label {
  color: var(--ps-ink) !important;
  font-weight: 700 !important;
}

table,
.addon-table-wrap {
  background: var(--ps-paper) !important;
  border: 3px solid var(--ps-ink) !important;
  border-radius: 0 !important;
}

th,
.addon-table-head {
  color: var(--ps-paper) !important;
  background: var(--ps-plum) !important;
}

td,
th {
  border-color: var(--ps-ink) !important;
}

.review-stars,
.stars {
  color: var(--ps-purple) !important;
}

.lightbox,
.modal {
  background-color: rgb(45 21 50 / 92%) !important;
}

.lightbox-inner,
.modal-inner {
  background: var(--ps-paper) !important;
  border: 3px solid var(--ps-ink) !important;
  border-radius: 0 !important;
}

.lightbox-close {
  color: var(--ps-paper) !important;
  background: var(--ps-purple) !important;
  border: 2px solid var(--ps-paper) !important;
  border-radius: 0 !important;
}

.footer,
.site-footer,
footer {
  color: var(--ps-paper) !important;
  background: var(--ps-plum) !important;
  border: 0 !important;
  border-top: 3px solid var(--ps-ink) !important;
  border-radius: 0 !important;
}

.footer p,
.footer a,
.site-footer p,
.site-footer a,
footer p,
footer a {
  color: inherit !important;
}

.footer a:hover,
.site-footer a:hover,
footer a:hover {
  color: var(--ps-mint) !important;
}

:focus-visible {
  outline: 4px solid var(--ps-mint) !important;
  outline-offset: 4px;
}

@media (max-width: 860px) {
  header,
  .top-nav,
  .site-header {
    min-height: 70px;
  }

  .nav-row,
  .nav-inner,
  header:not(.top-nav):not(.site-header) {
    min-height: 70px;
  }

  .brand img,
  .brand-logo,
  header .brand img {
    height: 40px !important;
  }

  .nav-links {
    background: var(--ps-paper) !important;
  }

  .hero::before,
  .blog-hero::before,
  .post-hero::before {
    width: 78px;
    height: 78px;
  }

  .hero h1,
  .blog-hero h1,
  .post-hero h1 {
    font-size: clamp(2.35rem, 12vw, 4rem) !important;
  }

  .button,
  .btn,
  .btn-primary,
  .btn-secondary,
  .btn-ghost,
  .btn-white,
  .btn-ghost-white,
  .btn-quote,
  .btn-buy,
  .buy-link,
  .cta-btn,
  .cta-primary,
  .submit-btn,
  .tier-cta,
  .path-btn,
  .sd-link-ghost,
  .sd-link-primary,
  .web-learn,
  input[type="submit"] {
    width: 100%;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
