/* WellyPal static site: desktop/mobile breakpoint at min-width: 1200px, aligned with React. */

*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --wp-text: #040a23;
  --wp-muted: #9aa0b1;
  --wp-muted2: #656979;
  --wp-purple: #5c38ff;
  --wp-bg-soft: rgba(236, 236, 240, 0.5);
  --wp-bg-card: rgba(255, 255, 255, 0.44);
  --wp-border-soft: rgba(92, 56, 255, 0.08);
  --wp-header-h-desktop: 88px;
  --wp-header-h-mobile: 72px;
  /** Sticky top for the mobile FAQ category bar, aligned with src/app/FaqPage.tsx MobileFaqContent. */
  --wp-faq-sticky-top: calc(57px + max(12px, env(safe-area-inset-top, 0px)));
  --bp-desktop: 1200px;
  /** Match the header: center the 1200px content column and reduce side gutters on narrower viewports. */
  --wp-inline-gutter: max(16px, min(120px, calc((100vw - 1200px) / 2)));
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "InterVar", "Inter", system-ui, -apple-system, sans-serif;
  color: var(--wp-text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Brand SVGs from Figma often use preserveAspectRatio=none, so keep a fixed slot and disable global scaling. */
img.wp-brand-img {
  max-width: none;
  display: block;
}

a {
  color: inherit;
}

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

/* ----- Background texture (CSS replacement for motion-based panning) ----- */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.page-bg__grid {
  position: absolute;
  inset: 0;
  opacity: 0.15;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%235c38ff' fill-opacity='0.4'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-size: 60px 60px;
  animation: wp-bg-pan 20s linear infinite;
}

.page-bg__dots {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image: radial-gradient(circle, #5c38ff 1px, transparent 1px);
  background-size: 30px 30px;
  background-position: 0 0;
  animation: wp-bg-dots 15s linear infinite;
}

@keyframes wp-bg-pan {
  to {
    background-position: 60px 60px;
  }
}

@keyframes wp-bg-dots {
  to {
    background-position: 30px 30px;
  }
}

.page-shell {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* ----- Layout visibility ----- */
@media (max-width: 1199.98px) {
  .layout-desktop,
  .site-header-desktop,
  .site-footer.site-footer--desktop {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .layout-mobile,
  .site-header-mobile,
  .site-footer-mobile {
    display: none !important;
  }
}

@media (max-width: 1199.98px) {
  .contact-page__desktop {
    display: none !important;
  }
}

@media (min-width: 1200px) {
  .contact-page__mobile {
    display: none !important;
  }
}

/* ----- Entrance / hover states ----- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.hover-scale {
  transition: transform 0.2s ease-out;
}

.hover-scale:hover {
  transform: scale(1.05);
}

.hover-scale:active {
  transform: scale(0.98);
}

.lift-hover {
  transition:
    transform 0.3s ease-out,
    box-shadow 0.3s ease-out;
}

.lift-hover:hover {
  transform: translateY(-8px);
}

.lift-hover-m:hover {
  transform: translateY(-6px);
}

@media (min-width: 1200px) {
  .desk-testimonials .lift-hover:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(92, 56, 255, 0.15);
  }
}

/* ----- Desktop header ----- */
.site-header-desktop {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  isolation: isolate;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(55.85px);
  -webkit-backdrop-filter: blur(55.85px);
  /* Figma 1:6 Header: horizontal gutter matches the 1440px comp at px-[120px], with a 16px safe gutter below 1200px. */
  padding-left: var(--wp-inline-gutter);
  padding-right: var(--wp-inline-gutter);
}

.site-header-desktop__inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 0;
  min-height: var(--wp-header-h-desktop);
  box-sizing: border-box;
}

.brand-desktop {
  width: 114px;
  height: 32px;
  display: inline-block;
  text-decoration: none;
  vertical-align: middle;
  overflow: hidden;
  background: url(https://cdn.wellypal.com/sky/system/d/image/20260513/c110325fr6ozijkby4-W114H32.webp) no-repeat top center / cover;
}

.brand-mobile {
  width: 104.125px;
  height: 28px;
  display: inline-block;
  text-decoration: none;
  flex-shrink: 0;
  justify-self: start;
  overflow: hidden;
  background: url(https://cdn.wellypal.com/sky/system/d/image/20260513/c110325fr6ozijkby4-W114H32.webp) no-repeat center / contain;
}

.brand-mobile__mark {
  position: relative;
  display: block;
  width: 104.125px;
  height: 28px;
  overflow: hidden;
}

.brand-mobile__mark-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 28px;
  height: 28px;
  border-radius: 6.563px;
  background: #5c38ff;
}

.brand-mobile__mark-icon {
  position: absolute;
  left: 3.78px;
  top: 3.78px;
  width: 21.812px;
  height: 20.422px;
}

.brand-mobile__mark-icon .wp-brand-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand-mobile__word {
  position: absolute;
  left: 32.2px;
  top: 8.4px;
  width: 67.725px;
  height: 15.75px;
  overflow: hidden;
}

.brand-mobile__word .wp-brand-img {
  position: absolute;
  left: -0.15px;
  top: 1.01px;
  width: 65.539px;
  height: 14.413px;
  object-fit: fill;
  transform: skewX(-5.08deg);
  transform-origin: center center;
}

.nav-desktop {
  display: flex;
  gap: 32px;
  align-items: center;
  height: 24px;
  width: 317.281px;
  flex-shrink: 0;
  box-sizing: border-box;
}

.nav-desktop a {
  flex: 0 0 auto;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: #9aa0b1;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  top: -1px;
  transition: color 0.2s ease;
}

.nav-desktop a:first-child {
  flex: 1 1 0;
  min-width: 0;
}

.nav-desktop a:hover {
  color: #5c38ff;
}

.btn-download {
  position: relative;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 125px;
  height: 40px;
  padding: 0;
  overflow: hidden;
  border-radius: 999px;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: normal;
  color: #fff;
  background-image: linear-gradient(162.255deg, rgb(92, 56, 255) 0%, rgb(124, 92, 255) 100%);
  box-shadow:
    0 1px 2px rgba(92, 56, 255, 0.2),
    0 4px 8px rgba(92, 56, 255, 0.15),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  transition: opacity 0.15s ease;
}

.btn-download:hover {
  opacity: 0.95;
}

.btn-download:focus-visible {
  outline: 2px solid rgba(92, 56, 255, 0.4);
  outline-offset: 2px;
}

/* ----- Mobile header ----- */
.menu-scrim {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 40;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: default;
  background: rgba(4, 10, 35, 0.12);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease;
}

body.menu-open .menu-scrim {
  opacity: 1;
  visibility: visible;
}

.site-header-mobile {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  border-bottom: 1px solid #ececf0;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.site-header-mobile__inner {
  position: relative;
  padding: max(12px, env(safe-area-inset-top, 0px)) 20px 12px;
}

.site-header-mobile__row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 44px;
}

.menu-toggle {
  background: none;
  border: 0;
  padding: 4px;
  margin-right: -4px;
  cursor: pointer;
  border-radius: 6px;
  justify-self: end;
}

.menu-toggle:focus-visible {
  outline: 2px solid rgba(92, 56, 255, 0.35);
  outline-offset: 2px;
}

.mobile-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 45;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-12px);
  transition:
    opacity 0.3s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

body.menu-open .mobile-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.mobile-menu__panel {
  padding: 12px 20px 13px;
  background: rgba(255, 255, 255, 0.87);
  backdrop-filter: blur(5.9px);
  -webkit-backdrop-filter: blur(5.9px);
}

.mobile-menu__sheet {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  border-radius: 24px;
}

.mobile-menu__row {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0;
  text-decoration: none;
  color: #040a23;
  cursor: pointer;
}

.mobile-menu__label {
  flex: 0 1 auto;
  font-size: 15px;
  font-weight: 400;
  line-height: 23px;
}

.mobile-menu__label--features {
  flex: 0 0 163px;
  max-width: 70%;
}

.mobile-menu__rule {
  width: 100%;
  height: 0.5px;
  background: #e1e5ec;
  flex-shrink: 0;
}

.mobile-menu__chev {
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.mobile-menu__chev::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  margin-top: -5px;
  margin-left: -6px;
  border-right: 2px solid #040a23;
  border-bottom: 2px solid #040a23;
  transform: rotate(-45deg);
}

/* ----- Desktop footer ----- */
.site-footer.site-footer--desktop {
  width: 100%;
}

/* Figma 1:169 Footer: pt 40 / pb 60 / 120px horizontal inset on the 1440px comp, shared with the header gutter. */
.footer-main {
  box-sizing: border-box;
  background: #040a23;
  padding: 40px var(--wp-inline-gutter) 60px;
}

.footer-main__inner {
  box-sizing: border-box;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-wrap: nowrap;
  gap: 40px;
  align-items: flex-start;
  min-width: 0;
}

/* SiteFooter.tsx Container29: 398px brand column width. */
.footer-brand-col {
  flex: 0 0 398px;
  width: 398px;
  min-width: 0;
}

.footer-brand {
  position: relative;
  display: block;
  flex-shrink: 0;
  width: 172px;
  height: 48px;
  overflow: hidden;
  text-decoration: none;
  background: url(https://cdn.wellypal.com/sky/system/d/image/20260513/c1103248919ut6zvk2-W172H48.webp) no-repeat center / contain;
}

.footer-brand__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 48px;
  height: 48px;
  border-radius: 11.25px;
  background: #5c38ff;
}

.footer-brand__icon {
  position: absolute;
  left: 6.48px;
  top: 6.49px;
  width: 37.392px;
  height: 35.009px;
}

.footer-brand__icon .wp-brand-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-brand__word {
  position: absolute;
  left: 55.2px;
  top: 14.4px;
  width: 116.1px;
  height: 27px;
  overflow: hidden;
}

.footer-brand__word .wp-brand-img {
  position: absolute;
  left: -0.26px;
  top: 1.73px;
  width: 112.352px;
  height: 24.707px;
  object-fit: fill;
  transform: skewX(-5.08deg);
  transform-origin: center center;
}

.footer-cols {
  display: flex;
  flex: 1 1 0;
  min-width: 0;
  gap: 65px;
  align-items: flex-start;
}

.footer-col {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  font-size: 16px;
  line-height: 24px;
  color: #fff;
}

.footer-col__title {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  color: #fff;
}

.footer-col__list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
}

.footer-col__list a {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: #fff;
  text-decoration: none;
}

.footer-col__list a:hover {
  opacity: 0.9;
}

.footer-col__list a:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.4);
  border-radius: 2px;
}

/* Figma 1:206 Download heading and React Container32: do not stretch across the full flex column. */
.footer-cols > .footer-col:last-child .footer-col__title {
  width: max-content;
  max-width: 100%;
}

/* SiteFooter.tsx Link7 / Figma 1:208: 135x40 App Store badge. */
.footer-app-store {
  display: inline-block;
  flex-shrink: 0;
  width: 135px;
  height: 40px;
  line-height: 0;
  text-decoration: none;
}

.footer-app-store:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.4);
  border-radius: 4px;
}

.footer-app-store img {
  display: block;
  width: 135px;
  height: 40px;
  max-width: none;
  object-fit: contain;
}

.footer-brand:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.4);
  border-radius: 4px;
}

.footer-copyright {
  box-sizing: border-box;
  background: #040a23;
  border-top: 1px solid #656979;
}

.footer-copyright__text {
  margin: 0 auto;
  max-width: 1200px;
  box-sizing: border-box;
  padding: 30px var(--wp-inline-gutter) 80px;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
  color: #9aa0b1;
}

/* ----- Mobile footer (Figma 1:244 Footer) ----- */
.site-footer-mobile {
  background: #040a23;
  padding: 0;
}

.site-footer-mobile__inner {
  padding: 40px 20px 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 40px;
}

.footer-m-brand {
  position: relative;
  display: block;
  width: 89.25px;
  height: 24px;
  overflow: hidden;
  text-decoration: none;
  flex-shrink: 0;
  background: url(https://cdn.wellypal.com/sky/system/d/image/20260513/c1103248919ut6zvk2-W172H48.webp) no-repeat center / contain;
}

.footer-m-brand__bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 24px;
  height: 24px;
  border-radius: 5.625px;
  background: #5c38ff;
}

.footer-m-brand__icon {
  position: absolute;
  left: 3.24px;
  top: 3.24px;
  width: 18.696px;
  height: 17.504px;
}

.footer-m-brand__icon .wp-brand-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.footer-m-brand__word {
  position: absolute;
  left: 27.6px;
  top: 7.2px;
  width: 58.05px;
  height: 13.5px;
  overflow: hidden;
}

.footer-m-brand__word .wp-brand-img {
  position: absolute;
  left: -0.13px;
  top: 0.87px;
  width: 56.176px;
  height: 12.354px;
  object-fit: fill;
  transform: skewX(-5.08deg);
  transform-origin: center center;
}

.footer-m-links {
  width: 100%;
  max-width: none;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
}

.footer-m-link-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  color: #fff;
  font-size: 15px;
  line-height: 23px;
  font-weight: 400;
  text-decoration: none;
}

.footer-m-link-label {
  flex: 0 1 auto;
}

.footer-m-rule {
  height: 0.5px;
  background: #656979;
  width: 100%;
}

.footer-m-arrow {
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin: 6px;
  border-right: 2px solid rgba(255, 255, 255, 0.7);
  border-bottom: 2px solid rgba(255, 255, 255, 0.7);
  transform: rotate(-45deg);
}

.footer-m-copy {
  text-align: left;
  padding: 24px 20px 40px;
  margin: 0;
  font-size: 12px;
  line-height: 20px;
  font-weight: 400;
  color: #9aa0b1;
}

/* ----- Desktop hero ----- */
.desk-hero {
  position: relative;
  width: 100%;
}

.desk-hero__blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.desk-hero__blob {
  position: absolute;
  border-radius: 999px;
  filter: blur(64px);
}

.desk-hero__blob--a {
  width: 460.758px;
  height: 460.758px;
  left: -122.89px;
  top: 155px;
  background: rgba(173, 70, 255, 0.1);
}

.desk-hero__blob--b {
  width: 686.017px;
  height: 514.513px;
  left: 904px;
  top: 77px;
  background: #5c38ff;
  opacity: 0.22;
  filter: blur(98.95px);
}

.desk-hero__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 0;
  position: relative;
  z-index: 1;
}

.desk-hero__row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 82px;
  /* Match src/imports/Hero/Hero.tsx: keep a single-row two-column layout to avoid wrap-induced centering offsets. */
  flex-wrap: nowrap;
}

/* flex-[1_0_0]: fill the main-axis space between the title block and phone so no empty gap appears in the middle. */
.desk-hero__copy {
  flex: 1 0 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 76px;
}

.desk-hero__intro {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.desk-hero__heading-row {
  position: relative;
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.desk-hero__title {
  margin: 0;
  font-size: 67px;
  font-weight: 700;
  line-height: 74px;
  letter-spacing: -0.02em;
}

.desk-hero__star {
  position: absolute;
  right: 0;
  top: -19px;
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.desk-hero__star svg {
  width: 40px;
  height: 40px;
  display: block;
}

.desk-hero__lead {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: var(--wp-muted);
}

.desk-hero__visual {
  flex-shrink: 0;
  width: 430px;
  height: 554px;
}

.desk-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn-gradient {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 240px;
  padding: 24px 48px;
  border-radius: 53.5px;
  text-decoration: none;
  color: #fff;
  background-image:
    linear-gradient(-21.6018deg, rgba(4, 10, 35, 0) 48.673%, rgb(92, 56, 255) 107.6%),
    linear-gradient(143.845deg, rgb(4, 10, 35) 56.525%, rgb(92, 56, 255) 100.11%);
  box-shadow: 0 12px 24px rgba(92, 56, 255, 0.25);
}

.desk-hero__cta {
  flex: 0 0 auto;
  align-self: flex-start;
  width: fit-content;
  max-width: 100%;
  box-sizing: border-box;
}

.desk-hero__cta-label {
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
  text-align: center;
  flex: 0 0 auto;
}

@keyframes wp-star-wiggle {
  0%,
  100% {
    transform: rotate(0deg);
  }
  33% {
    transform: rotate(10deg);
  }
  66% {
    transform: rotate(-10deg);
  }
}

.star-wiggle {
  animation: wp-star-wiggle 4s ease-in-out infinite;
  transform-origin: center center;
}

@keyframes wp-hero-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.hero-phone-float {
  animation: wp-hero-float 5s ease-in-out infinite;
}

/* ----- Desktop features (aligned with src/imports/Features/Features.tsx) ----- */
.desk-features {
  width: 100%;
  padding: 36px var(--wp-inline-gutter) 80px;
  background: linear-gradient(191deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.45) 100%);
}

.desk-features__inner {
  box-sizing: border-box;
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 60px;
}

.desk-features__rows {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 80px;
  width: 100%;
}

.desk-features__head {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: stretch;
  width: 100%;
  min-height: 110px;
}

.desk-features__h2 {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  line-height: 44px;
  color: var(--wp-text);
  text-align: center;
}

.desk-features__sub {
  margin: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: var(--wp-muted);
  text-align: center;
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 140px;
  width: 100%;
}

.feature-row--reverse {
  flex-direction: row-reverse;
}

.feature-row--hydration {
  justify-content: space-between;
  gap: 0;
}

.feature-row--hydration .feature-row__text {
  flex: 0 1 498.5px;
}

.feature-row--hydration .feature-row__media {
  flex-shrink: 0;
}

.feature-row__h3 {
  margin: 0 0 32px;
  font-size: 36px;
  font-weight: 500;
  line-height: 44px;
  color: var(--wp-text);
}

.feature-row__p {
  margin: 0;
  font-size: 20px;
  line-height: 28px;
  color: var(--wp-muted);
}

.feature-row__p--muted {
  color: var(--wp-muted2);
}

.feature-row__media {
  flex-shrink: 0;
}

.feature-row__media--phone {
  width: 333px;
  height: 695px;
}

.feature-row__media--phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-row__media--wide {
  width: 552px;
  height: 618px;
}

.feature-row__media--wide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-row__media--progress {
  width: 435px;
  height: 374px;
  border-radius: 36px;
  overflow: hidden;
  /* box-shadow:
    inset 0 0 0 1.177px rgba(255, 255, 255, 0.5),
    0 1.177px 2.355px rgba(0, 0, 0, 0.02); */
  /* border: 1px solid var(--wp-border-soft); */
}

.feature-row__media--progress img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left;
}

.feature-row__text {
  flex: 1;
  min-width: 280px;
}

/* Third item, "Clearer Nutrition Insights": match the React Container8 copy column width of flex-[498.5_0_0]. */
.desk-features__rows > .feature-row:nth-child(3) .feature-row__text {
  flex: 0 1 498.5px;
  max-width: 498.5px;
  min-width: 0;
}

/* Final row: match React Container11 with justify-between and an approximately 638px copy block. */
.desk-features__rows > .feature-row:last-child {
  justify-content: space-between;
  gap: 0;
}

.desk-features__rows > .feature-row:last-child .feature-row__text {
  flex: 0 1 638px;
  max-width: 638px;
  min-width: 0;
}

.nutrition-stack {
  position: relative;
  width: 560px;
  max-width: 100%;
  height: 587px;
  border-radius: 23px;
  overflow: hidden;
}

.nutrition-stack__tile {
  position: absolute;
  overflow: hidden;
  border-radius: 28.26px;
  box-shadow:
    inset 0 0 0 1.177px rgba(255, 255, 255, 0.5),
    0 1.177px 2.355px rgba(0, 0, 0, 0.02);
  border: 1px solid var(--wp-border-soft);
}

.nutrition-stack__tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nutrition-stack__tile--tr {
  left: 10px;
  top: 19px;
  width: 288px;
  height: 288px;
}

.nutrition-stack__tile--bl {
  left: 129.5px;
  top: 296px;
  width: 405px;
  height: 272px;
}

.nutrition-stack__overlay {
  position: absolute;
  inset: 0;
}

.hydration-stack {
  position: relative;
  width: 496px;
  max-width: 100%;
  height: 367px;
}

.hydration-stack__img {
  position: absolute;
  object-fit: cover;
  box-shadow:
    inset 0 0 0 1.177px rgba(255, 255, 255, 0.5),
    0 1.177px 2.355px rgba(0, 0, 0, 0.02);
  border: 1px solid var(--wp-border-soft);
}

.hydration-stack__img--bottom {
  bottom: 0;
  left: 0;
  width: 343px;
  height: 135px;
  border-radius: 16px;
}

.hydration-stack__img--top {
  left: 81px;
  top: 52px;
  width: 414px;
  height: 168.5px;
  border-radius: 16px;
}

/* ----- Philosophy / CTA / reviews / FAQ teaser (desktop) ----- */
.desk-philosophy {
  background: var(--wp-bg-soft);
}

.desk-philosophy__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.desk-philosophy__h2 {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  line-height: 44px;
  text-align: left;
}

.desk-philosophy__p {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
  font-size: 20px;
  line-height: 28px;
  color: var(--wp-muted);
}

.desk-cta__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  text-align: center;
}

.desk-cta__h2 {
  margin: 0 0 12px;
  font-size: 36px;
  font-weight: 700;
  line-height: 44px;
}

.desk-cta__p {
  margin: 0;
  font-size: 20px;
  line-height: 28px;
  color: var(--wp-muted);
}

.app-store-badge-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 243px;
  height: 72px;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
  box-shadow:
    0 1.5px 3px rgba(0, 0, 0, 0.02),
    0 6px 12px rgba(0, 0, 0, 0.02);
}

.app-store-badge-link img {
  display: block;
  width: 243px;
  height: 72px;
}

.desk-testimonials {
  background: var(--wp-bg-soft);
}

.desk-testimonials__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 0;
  display: flex;
  flex-direction: column;
  gap: 64px;
}

.desk-testimonials__h2 {
  margin: 0;
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  line-height: 44px;
}

.desk-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  width: 1200px;
  max-width: 100%;
}

.t-card-desk {
  position: relative;
  border-radius: 24px;
  padding: 36px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--wp-border-soft);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02), 0 4px 8px rgba(0, 0, 0, 0.02);
}

.t-card-desk__user {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.t-card-desk__avatar-wrap {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  overflow: hidden;
  flex-shrink: 0;
}

.t-card-desk__avatar {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.15);
}

.t-card-desk__avatar--emily {
  object-position: 50% 20%;
}

.t-card-desk__avatar--daniel {
  object-position: 60% 30%;
}

.t-card-desk__avatar--ryan {
  object-position: 55% 25%;
}

.t-card-desk__name {
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
}

.t-card-desk__quote {
  margin: 0;
  font-size: 16px;
  line-height: 24px;
  color: var(--wp-muted2);
}

.desk-faq-teaser__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  text-align: center;
}

.desk-faq-teaser__h2 {
  margin: 0 0 12px;
  font-size: 36px;
  font-weight: 700;
  line-height: 44px;
}

.desk-faq-teaser__p {
  margin: 0;
  font-size: 20px;
  line-height: 28px;
  color: var(--wp-muted);
}

.desk-faq-teaser__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--wp-purple);
  font-size: 18px;
  font-weight: 600;
  line-height: 26px;
  border: 2px solid var(--wp-purple);
  background: transparent;
}

/* ----- Mobile home page ----- */
.mob-main {
  width: 100%;
  background: #fff;
}

.mob-hero {
  position: relative;
  padding: 24px 20px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  overflow: hidden;
}

.mob-hero__blobs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.mob-hero__blob {
  position: absolute;
  border-radius: 999px;
  filter: blur(64px);
}

.mob-hero__blob--a {
  width: 226px;
  height: 226px;
  left: -123px;
  top: -71px;
  background: rgba(173, 70, 255, 0.1);
}

.mob-hero__blob--b {
  width: 335px;
  height: 251px;
  left: 60%;
  top: 249px;
  background: #5c38ff;
  opacity: 0.22;
  filter: blur(99px);
}

.mob-hero__phone {
  position: relative;
  z-index: 1;
  width: 257px;
  height: 331px;
}

.mob-hero__phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes wp-hero-float-m {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

.hero-phone-float-m {
  animation: wp-hero-float-m 5s ease-in-out infinite;
}

.mob-hero__text {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}

.mob-hero__heading-wrap {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  padding: 0 17px;
}

.mob-hero__title {
  margin: 0;
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  line-height: 40px;
}

.mob-hero__star {
  position: absolute;
  right: 10px;
  top: 0;
}

.star-wiggle-sm {
  animation: wp-star-wiggle 4s ease-in-out infinite;
  transform-origin: center;
}

.mob-hero__lead {
  margin: 0 auto;
  width: 100%;
  max-width: 760px;
  text-align: center;
  font-size: 15px;
  line-height: 23px;
  color: var(--wp-muted);
}

.btn-gradient-m {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 240px;
  padding: 16px 44px;
  border-radius: 53.5px;
  text-decoration: none;
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  line-height: 25px;
  background-image:
    linear-gradient(-19.8579deg, rgba(4, 10, 35, 0) 48.673%, rgb(92, 56, 255) 107.6%),
    linear-gradient(146.318deg, rgb(4, 10, 35) 56.525%, rgb(92, 56, 255) 100.11%);
}

.mob-features {
  background: #fff;
}

.mob-features__inner {
  box-sizing: border-box;
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 64px 20px;
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.mob-features__head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  text-align: center;
}

.mob-features__h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

.mob-features__sub {
  margin: 0;
  font-size: 15px;
  line-height: 23px;
  color: var(--wp-muted);
}

.mob-card {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
}

.mob-card__text {
  width: 100%;
}

.mob-card__h3 {
  margin: 0 0 16px;
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  line-height: 32px;
}

.mob-card__p {
  margin: 0;
  text-align: center;
  font-size: 15px;
  line-height: 23px;
  color: var(--wp-muted);
}

.mob-card__p--muted {
  color: var(--wp-muted2);
}

.mob-card__img {
  width: 100%;
  max-width: 335px;
  margin-left: auto;
  margin-right: auto;
  overflow: hidden;
}

/* Figma 1:275 "Easy logging" slot: 335x464 with source crop left 16.87% / width 66.27% / height 99.98%. */
.mob-card__img--tall {
  position: relative;
  height: 464px;
  border-radius: 0;
}

.mob-card__img--tall img {
  position: absolute;
  left: 16.87%;
  width: 66.27%;
  height: 99.98%;
  top: -0.05%;
  max-width: none;
  object-fit: cover;
}

/* Figma 1:280-281: full-width outer frame at 335px, inner image 284x317.957 positioned at left 25.5 / top 8.39. */
.mob-card__img--square {
  position: relative;
  width: 100%;
  max-width: 335px;
  height: 335px;
}

.mob-card__img-square-inner {
  position: absolute;
  left: 7.61%;
  top: 2.51%;
  width: 84.78%;
  height: 94.91%;
  overflow: hidden;
}

.mob-card__img--square img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  max-width: none;
}

.mob-card__nutri {
  position: relative;
  width: 335px;
  height: 335px;
  border-radius: 11.664px;
  overflow: hidden;
}

.mob-nutri__bl,
.mob-nutri__tr {
  position: absolute;
  overflow: hidden;
  border-radius: 14.332px;
  box-shadow: inset 0 0 0 0.597px rgba(255, 255, 255, 0.5);
  border: 0.507px solid var(--wp-border-soft);
}

.mob-nutri__bl img,
.mob-nutri__tr img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mob-nutri__ov {
  position: absolute;
  inset: 0;
}

.mob-nutri__tr {
  width: 146.057px;
  height: 146.057px;
  left: 30.57px;
  top: 28.22px;
}

.mob-nutri__bl {
  width: 205.393px;
  height: 137.943px;
  left: 91.17px;
  top: 168.7px;
}

.mob-card__hydra {
  position: relative;
  width: 335px;
  height: 214px;
}

.mob-card__hydra-top,
.mob-card__hydra-bottom {
  position: absolute;
  border-radius: 9.161px;
  object-fit: cover;
  box-shadow: inset 0 0 0 0.674px rgba(255, 255, 255, 0.5);
  border: 0.573px solid var(--wp-border-soft);
}

.mob-card__hydra-bottom {
  width: 196.395px;
  height: 77.298px;
  left: 25.5px;
  bottom: 16.49px;
}

.mob-card__hydra-top {
  width: 237.048px;
  height: 96.48px;
  left: 71.88px;
  top: 17.15px;
}

.mob-card__progress {
  position: relative;
  width: 335px;
  height: 335px;
}

.mob-card__prog-base {
  position: absolute;
  width: 84.78%;
  height: 72.89%;
  left: 7.61%;
  top: 13.06%;
  object-fit: cover;
}

.mob-card__prog-front {
  position: absolute;
  left: 7px;
  top: 30px;
  width: 321px;
  height: 276px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: inset 0 0 0 1.177px rgba(255, 255, 255, 0.5);
  border: 1px solid var(--wp-border-soft);
}

.mob-philosophy {
  background: var(--wp-bg-soft);
}

.mob-philosophy__inner {
  box-sizing: border-box;
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding: 56px 20px;
  text-align: center;
}

.mob-philosophy__h2 {
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

.mob-philosophy__p {
  margin: 0;
  font-size: 15px;
  line-height: 23px;
  color: var(--wp-muted);
}

.mob-cta-block {
  background: #fff;
}

.mob-cta-block__inner {
  padding: 56px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
}

.mob-cta-block__h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

.mob-cta-block__p {
  margin: 0;
  font-size: 15px;
  line-height: 23px;
  color: var(--wp-muted);
}

.mob-app-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 162px;
  height: 48px;
  padding: 0;
  overflow: hidden;
  border-radius: 6px;
  text-decoration: none;
  box-shadow:
    0 1px 1px rgba(0, 0, 0, 0.02),
    0 4px 4px rgba(0, 0, 0, 0.02);
}

.mob-app-badge img {
  display: block;
  width: 162px;
  height: 48px;
  max-width: none;
}

.mob-testimonials {
  background: var(--wp-bg-soft);
}

.mob-testimonials__inner {
  padding: 56px 20px;
}

.mob-testimonials__head {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 42px;
  text-align: center;
}

.mob-testimonials__h2 {
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

.mob-testimonials__sub {
  margin: 0;
  font-size: 15px;
  line-height: 23px;
  color: var(--wp-muted);
}

.mob-testimonials__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.t-card-m {
  position: relative;
  border-radius: 24px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--wp-border-soft);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02), 0 4px 8px rgba(0, 0, 0, 0.02);
}

.t-card-m__user {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}

.t-card-m__av {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  overflow: hidden;
  flex-shrink: 0;
}

.t-card-m__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t-card-m__name {
  font-size: 15px;
  font-weight: 600;
  line-height: 26px;
}

.t-card-m__quote {
  margin: 0;
  font-size: 15px;
  line-height: 23px;
  color: var(--wp-muted2);
}

.mob-faq-teaser {
  background: rgba(255, 255, 255, 0.2);
}

.mob-faq-teaser__inner {
  padding: 56px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
}

.mob-faq-teaser__h2 {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 32px;
}

.mob-faq-teaser__p {
  margin: 0;
  font-size: 15px;
  line-height: 23px;
  color: var(--wp-muted);
}

.mob-faq-teaser__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  border-radius: 999px;
  border: 2px solid var(--wp-purple);
  text-decoration: none;
  color: var(--wp-purple);
  font-size: 15px;
  font-weight: 600;
  line-height: 22px;
}

/* ----- Shared document page styles (privacy, terms, and similar pages) ----- */
.layout-doc {
  flex: 1;
  width: 100%;
}

.doc-shell {
  max-width: 1200px;
  margin: 0 auto;
  padding: 28px 20px 64px;
}

@media (min-width: 1200px) {
  .doc-shell {
    padding: 32px 120px 96px;
  }
}

.doc-hero {
  text-align: center;
  margin-bottom: 40px;
}

.doc-hero__eyebrow {
  display: inline-block;
  font-size: 14px;
  font-weight: 600;
  color: var(--wp-purple);
  margin-bottom: 8px;
}

.doc-hero h1 {
  margin: 0 0 12px;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}

.doc-hero p {
  margin: 0 auto;
  max-width: 560px;
  font-size: 15px;
  line-height: 23px;
  color: var(--wp-muted2);
}

@media (min-width: 1200px) {
  .doc-hero h1 {
    font-size: 48px;
  }

  .doc-hero p {
    font-size: 17px;
    line-height: 25px;
  }
}

/* ----- FAQ (aligned with FaqPage: desktop FAQ only at >=1200px; pills at >=500px and dropdown at <=499px) ----- */
.faq-page {
  flex: 1;
  width: 100%;
  overflow-x: clip;
  background: #fff;
}

.faq-page__inner {
  box-sizing: border-box;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 42px;
}

.faq-page__title-wrap {
  width: 100%;
  text-align: center;
}

.faq-page__title {
  margin: 0;
  font-weight: 700;
  color: var(--wp-text);
}

@media (max-width: 1199.98px) {
  .faq-page {
    padding-top: 32px;
    padding-bottom: max(32px, env(safe-area-inset-bottom, 0px));
    padding-left: 0;
    padding-right: 0;
  }

  .faq-page__inner {
    gap: 24px;
  }

  .faq-page__title-wrap {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
  }

  .faq-page__title {
    font-size: 28px;
    line-height: 36px;
  }
}

@media (min-width: 1200px) {
  .faq-page {
    padding: 80px 16px;
  }

  .faq-page__title {
    font-size: 48px;
    line-height: 56px;
  }
}

@media (min-width: 1280px) {
  .faq-page {
    padding-left: 120px;
    padding-right: 120px;
  }
}

.faq-page__grid {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  width: 100%;
  min-width: 0;
}

@media (min-width: 1200px) {
  .faq-page__grid {
    flex-direction: row;
    align-items: flex-start;
    gap: 0;
  }
}

/* ----- Desktop sidebar (only at >=1200px, matching the FaqContent render condition) ----- */
.faq-sidebar-desktop {
  display: none;
}

@media (min-width: 1200px) {
  .faq-sidebar-desktop {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    width: 225px;
    flex-shrink: 0;
    position: sticky;
    top: 96px;
    align-self: flex-start;
  }
}

.faq-sidebar-desktop__btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  margin: 0;
  padding: 24px;
  border: 0;
  border-bottom: 1px solid #f5f6fa;
  background: transparent;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.15s ease;
  font: inherit;
}

.faq-sidebar-desktop__btn:last-child {
  border-bottom: 0;
}

.faq-sidebar-desktop__btn:hover {
  background: rgba(92, 56, 255, 0.05);
}

.faq-sidebar-desktop__btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 2px rgba(92, 56, 255, 0.3);
}

.faq-sidebar-desktop__btn--active {
  background: rgba(92, 56, 255, 0.05);
}

.faq-sidebar-desktop__label {
  display: block;
  max-width: 177px;
  font-size: 17px;
  font-weight: 400;
  line-height: 25px;
  color: var(--wp-text);
}

.faq-sidebar-desktop__btn--active .faq-sidebar-desktop__label {
  color: var(--wp-purple);
}

.faq-page__main-col {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

@media (max-width: 1199.98px) {
  .faq-page__main-col {
    gap: 24px;
  }
}

@media (min-width: 1200px) {
  .faq-page__main-col {
    padding-left: 80px;
    padding-top: 24px;
    background: #fff;
  }
}

/* ----- Mobile / tablet sticky category bar (aligned with FaqPage MobileFaqContent) ----- */
.faq-page__sticky-wrap {
  display: none;
}

@media (max-width: 1199.98px) {
  .faq-page__sticky-wrap {
    display: block;
    position: sticky;
    z-index: 30;
    top: var(--wp-faq-sticky-top);
    padding-top: 0;
    padding-bottom: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition: padding 0.2s ease;
  }

  @media (min-width: 500px) {
    .faq-page__sticky-wrap.is-scrolled {
      padding-top: 12px;
      padding-bottom: 12px;
    }
  }
}

/** At <=499px: max-w-[800px] px-5 mx-auto with an inner wrapper using -mx-5 px-5 py-4 bg-white. */
.faq-page__sticky-phone {
  display: none;
  box-sizing: border-box;
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

@media (max-width: 499px) {
  .faq-page__sticky-phone {
    display: block;
  }
}

/** At >=500px: full-width horizontal scrolling with px-[clamp(20px,5vw,40px)]. */
.faq-page__sticky-tablet {
  display: none;
  width: 100%;
}

@media (min-width: 500px) and (max-width: 1199.98px) {
  .faq-page__sticky-tablet {
    display: block;
  }
}

.faq-dropdown {
  position: relative;
  box-sizing: border-box;
  width: auto;
  flex-shrink: 0;
  margin-left: -20px;
  margin-right: -20px;
  padding: 16px 20px;
  background: #fff;
}

.faq-dropdown__toggle {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  text-align: left;
  font: inherit;
}

.faq-dropdown__toggle:focus-visible {
  outline: 2px solid rgba(92, 56, 255, 0.35);
  outline-offset: 2px;
  border-radius: 4px;
}

.faq-dropdown__current {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  color: var(--wp-text);
}

.faq-dropdown__chev {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--wp-text);
  transition: transform 0.2s ease;
}

.faq-dropdown.is-open .faq-dropdown__chev {
  transform: rotate(180deg);
}

.faq-dropdown__list {
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  z-index: 30;
  margin: 0;
  padding: 0 20px 12px;
  list-style: none;
  max-height: min(65vh, 520px);
  overflow-y: auto;
  background: #fff;
  border: 1px solid #e1e5ec;
  filter: drop-shadow(0 10px 4.7px rgba(225, 229, 236, 0.62));
}

.faq-dropdown__item {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid #e1e5ec;
}

.faq-dropdown__item:last-child {
  border-bottom: 0;
}

.faq-dropdown__option {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  margin: 0;
  padding: 20px 0;
  border: 0;
  background: none;
  cursor: pointer;
  text-align: left;
  font-size: 17px;
  font-weight: 400;
  line-height: 25px;
  color: var(--wp-text);
  transition: background-color 0.15s ease;
  font: inherit;
}

.faq-dropdown__option:active {
  background: #f9fafb;
}

.faq-dropdown__option--active {
  color: var(--wp-purple);
}

.faq-dropdown__option:focus-visible {
  outline: 2px solid rgba(92, 56, 255, 0.35);
  outline-offset: -2px;
}

.faq-page__pills-track {
  box-sizing: border-box;
  width: 100%;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  touch-action: pan-x;
  scrollbar-width: none;
  padding: 0 clamp(20px, 5vw, 40px) 0;
  background: transparent;
}

.faq-page__pills-track::-webkit-scrollbar {
  display: none;
}

.faq-page__pills-inner {
  display: inline-flex;
  flex-wrap: nowrap;
  gap: 20px;
  min-width: min-content;
  padding-bottom: 0;
}

.faq-pill {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  white-space: nowrap;
  margin: 0;
  padding: 16px 20px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 400;
  line-height: 23px;
  transition:
    background-color 0.15s ease,
    color 0.15s ease;
  font: inherit;
}

.faq-pill {
  background: #f5f6fa;
  color: var(--wp-text);
}

.faq-pill:hover {
  background: rgba(92, 56, 255, 0.08);
  color: var(--wp-purple);
}

.faq-pill--active {
  background: rgba(92, 56, 255, 0.1);
  color: var(--wp-purple);
}

.faq-pill:focus-visible {
  outline: 2px solid rgba(92, 56, 255, 0.35);
  outline-offset: 2px;
}

/* ----- Question list ----- */
.faq-page__panels {
  width: 100%;
  min-width: 0;
}

@media (max-width: 1199.98px) {
  .faq-page__panels {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
  }
}

.faq-panel__entries {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 24px;
  padding-bottom: 32px;
  padding-top: 0;
}

@media (max-width: 1199.98px) {
  .faq-panel__entries {
    gap: 20px;
  }
}

.faq-entry {
  margin: 0;
  padding: 0;
  border: 0;
}

.faq-entry__row {
  display: flex;
  gap: 4px;
  align-items: flex-start;
  width: 100%;
}

.faq-entry__idx {
  flex-shrink: 0;
  width: 30px;
  font-size: 15px;
  line-height: 23px;
  font-weight: 900;
  color: var(--wp-purple);
}

@media (min-width: 1200px) {
  .faq-entry__idx {
    font-size: 17px;
    line-height: 24px;
  }
}

.faq-entry__body {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 12px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f5f6fa;
}

@media (min-width: 1200px) {
  .faq-entry__body {
    padding-bottom: 24px;
  }
}

.faq-entry__q {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 23px;
  color: var(--wp-text);
}

@media (min-width: 1200px) {
  .faq-entry__q {
    font-size: 17px;
    line-height: 24px;
  }
}

.faq-entry__a {
  width: 100%;
}

.faq-entry__a p {
  margin: 0;
  font-size: 15px;
  line-height: 23px;
  font-weight: 400;
  color: var(--wp-muted2);
}

.faq-entry__a p + p {
  margin-top: 0;
}

@media (min-width: 1200px) {
  .faq-entry__a p {
    font-size: 17px;
    line-height: 24px;
  }
}

/* ----- Terms: section 7 service list items with bullets and wrapped-line alignment ----- */
.terms-nature-services-list {
  list-style: none;
  margin: 8px 0 12px;
  padding: 0;
}

.terms-nature-services-list > li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 0 0 10px;
}

.terms-nature-services-list > li:last-child {
  margin-bottom: 0;
}

.terms-nature-services-list__bullet {
  flex-shrink: 0;
  width: 1.1em;
  text-align: center;
  font-size: 9px;
  line-height: 23px;
  color: #040a23;
}

.terms-nature-services-list__text {
  flex: 1;
  min-width: 0;
  font-size: 15px;
  line-height: 23px;
  font-weight: 400;
}

/* ----- Contact page (aligned with src/app/ContactPage.tsx) ----- */
/* Match the ContactPage mobile middle layer with flex-1 min-h-0; do not add min-height:100vh to main or it creates extra blank space beyond the header and footer. */
.contact-page {
  flex: 1;
  width: 100%;
  min-height: 0;
  background: #f5f6fa;
  animation: contact-page-fade 0.3s ease forwards;
}

@keyframes contact-page-fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.contact-main--desktop {
  display: flex;
  justify-content: center;
  box-sizing: border-box;
  padding: 80px 120px;
}

.contact-card--desktop {
  width: 800px;
  max-width: 100%;
  background: #fff;
  border-radius: 36px;
  padding: 64px;
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.contact-main--mobile {
  box-sizing: border-box;
  padding: 32px 20px max(32px, env(safe-area-inset-bottom));
}

.contact-card--mobile {
  max-width: 660px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  padding: 24px clamp(16px, calc(8px + 2.5vw), 24px);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-intro {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-intro--mobile {
  gap: 12px;
}

.contact-h1 {
  margin: 0;
  font-size: 36px;
  font-weight: 700;
  line-height: 56px;
}

.contact-h1--mobile {
  font-size: 24px;
  line-height: 32px;
}

.contact-lead {
  margin: 0;
  font-size: 15px;
  line-height: 23px;
}

.contact-field-wrap {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  width: 100%;
}

.contact-fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.contact-input,
.contact-textarea {
  width: 100%;
  box-sizing: border-box;
  border-radius: 16px;
  border: 1px solid #e1e5ec;
  background: #fff;
  color: #040a23;
  font-size: 15px;
  line-height: 23px;
  padding: 16px;
  outline: none;
  font-family: inherit;
}

.contact-input:focus-visible,
.contact-textarea:focus-visible {
  box-shadow: 0 0 0 2px rgba(92, 56, 255, 0.3);
}

.contact-textarea {
  resize: vertical;
  min-height: 200px;
}

.contact-input::placeholder,
.contact-textarea::placeholder {
  color: var(--wp-muted);
}

.contact-input.contact-input--error,
.contact-textarea.contact-textarea--error {
  border-color: #e30000;
  background: rgba(227, 0, 0, 0.07);
}

.contact-error {
  display: flex;
  align-items: center;
  gap: 4px;
  width: 100%;
  min-height: 23px;
}

/* display:flex can override the browser's default [hidden] behavior due to equal specificity, causing premature layout and visibility. */
.contact-error[hidden] {
  display: none !important;
}

.contact-error__icon {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

.contact-error__text {
  margin: 0;
  min-width: 0;
  flex: 1;
  font-size: 12px;
  font-weight: 400;
  line-height: 20px;
  color: #e30000;
}

.contact-submit {
  border: 0;
  cursor: pointer;
  font-family: inherit;
  background: #5c38ff;
  color: #fff;
  font-size: 15px;
  font-weight: 500;
  line-height: 23px;
  transition: opacity 0.15s ease;
  outline: none;
}

.contact-submit:hover {
  opacity: 0.95;
}

.contact-submit:focus-visible {
  box-shadow: 0 0 0 2px rgba(92, 56, 255, 0.4);
}

.contact-submit--desktop {
  border-radius: 24px;
  padding: 20px 16px;
}

.contact-submit--mobile {
  border-radius: 16px;
  padding: 16px 30px;
}

.contact-success {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 23px;
  color: #5c38ff;
}

.contact-toast-host {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: max(24px, env(safe-area-inset-top)) max(16px, env(safe-area-inset-right))
    max(24px, env(safe-area-inset-bottom)) max(16px, env(safe-area-inset-left));
  pointer-events: none;
  box-sizing: border-box;
}

.contact-toast {
  pointer-events: auto;
  align-self: center;
  max-width: min(400px, calc(100vw - 32px));
  margin: 0;
  padding: 14px 20px;
  border-radius: 14px;
  background: #fff;
  box-shadow:
    0 8px 32px rgba(4, 10, 35, 0.12),
    0 0 0 1px rgba(92, 56, 255, 0.2);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
  color: #040a23;
  text-align: center;
  opacity: 0;
  transform: translateY(10px) scale(0.98);
  transition:
    opacity 0.35s ease,
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-toast.contact-toast--show {
  opacity: 1;
  transform: translateY(0) scale(1);
}

@media (prefers-reduced-motion: reduce) {
  .contact-toast {
    transition: none;
  }
}

/* ----- LegalDocumentPage (Terms / Privacy, aligned with the React fixed header, spacer, and body fade-in) ----- */
.legal-document-page {
  background: #fff;
  overflow-x: clip;
}

/* Match src/styles/index.css by overriding Figma-exported min-width values that would otherwise break narrow layouts. */
.legal-document-page [class*="min-w-\\[319px\\]"] {
  min-width: 0 !important;
}

.legal-document-page a,
.legal-document-page p,
.legal-document-page li,
.legal-document-page span {
  overflow-wrap: anywhere;
  word-break: break-word;
}

.legal-document-page .page-bg {
  display: none;
}

.legal-document-page .page-shell {
  background: #fff;
}

.legal-document-page .legal-fixed-dock {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 60;
  width: 100%;
  background: #fff;
}

@media (min-width: 1200px) {
  .legal-document-page .legal-fixed-dock {
    background: transparent;
  }
}

.legal-document-page .site-header-desktop {
  position: relative;
  top: auto;
}

.legal-document-page .site-header-mobile {
  position: relative;
  top: auto;
}

.legal-fixed-dock-spacer {
  width: 100%;
  flex-shrink: 0;
  height: calc(57px + max(12px, env(safe-area-inset-top)));
}

@media (min-width: 1200px) {
  .legal-fixed-dock-spacer {
    height: 88px;
  }
}

.legal-document-page__motion {
  display: flex;
  flex-direction: column;
  flex: 1;
  width: 100%;
  align-items: flex-start;
  min-height: 0;
  animation: legal-doc-content-fade 0.3s ease forwards;
}

@keyframes legal-doc-content-fade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.legal-document-page__footer-wrap {
  width: 100%;
  flex-shrink: 0;
}

/* ----- Legal spacer ----- */
.legal-stub {
  max-width: 800px;
  margin: 0 auto;
}

.legal-stub h1 {
  font-size: 20px;
  line-height: 28px;
  margin: 0 0 16px;
}

.legal-stub p {
  font-size: 15px;
  line-height: 23px;
  margin: 0 0 12px;
  color: var(--wp-text);
}

@media (min-width: 1200px) {
  .legal-stub {
    padding-left: 8px;
    padding-right: 8px;
  }
}

/* ----- Desktop feature section fallback for narrow screens ----- */
@media (max-width: 1100px) {
  .feature-row,
  .feature-row--reverse,
  .feature-row--hydration {
    flex-direction: column;
    justify-content: flex-start;
    gap: 48px;
  }

  .feature-row--hydration .feature-row__text {
    flex: 1 1 auto;
  }

  .nutrition-stack {
    height: auto;
    min-height: 400px;
  }

  .hydration-stack {
    height: auto;
    min-height: 280px;
  }

  .desk-testimonials__grid {
    grid-template-columns: 1fr;
  }
}

@font-face {
  font-family: "InterVar";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("https://cdn.wellypal.com/sky/system/d/file/20260512/inter-var_f112252f.woff2") format("woff2");
}

/*! tailwindcss v4.1.12 | MIT License | https://tailwindcss.com */
@layer properties{@supports (((-webkit-hyphens:none)) and (not (margin-trim:inline))) or ((-moz-orient:inline) and (not (color:rgb(from red r g b)))){*,:before,:after,::backdrop{--tw-rotate-x:initial;--tw-rotate-y:initial;--tw-rotate-z:initial;--tw-skew-x:initial;--tw-skew-y:initial;--tw-leading:initial;--tw-font-weight:initial;--tw-shadow:0 0 #0000;--tw-shadow-color:initial;--tw-shadow-alpha:100%;--tw-inset-shadow:0 0 #0000;--tw-inset-shadow-color:initial;--tw-inset-shadow-alpha:100%;--tw-ring-color:initial;--tw-ring-shadow:0 0 #0000;--tw-inset-ring-color:initial;--tw-inset-ring-shadow:0 0 #0000;--tw-ring-inset:initial;--tw-ring-offset-width:0px;--tw-ring-offset-color:#fff;--tw-ring-offset-shadow:0 0 #0000;--tw-blur:initial;--tw-brightness:initial;--tw-contrast:initial;--tw-grayscale:initial;--tw-hue-rotate:initial;--tw-invert:initial;--tw-opacity:initial;--tw-saturate:initial;--tw-sepia:initial;--tw-drop-shadow:initial;--tw-drop-shadow-color:initial;--tw-drop-shadow-alpha:100%;--tw-drop-shadow-size:initial}}}:root,:host{--font-sans:ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";--font-mono:ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace;--spacing:.25rem;--font-weight-normal:400;--font-weight-semibold:600;--font-weight-bold:700;--default-font-family:var(--font-sans);--default-mono-font-family:var(--font-mono)}*,:after,:before,::backdrop{box-sizing:border-box;border:0 solid;margin:0;padding:0}::file-selector-button{box-sizing:border-box;border:0 solid;margin:0;padding:0}html,:host{-webkit-text-size-adjust:100%;tab-size:4;line-height:1.5;font-family:var(--default-font-family,ui-sans-serif,system-ui,sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji");font-feature-settings:var(--default-font-feature-settings,normal);font-variation-settings:var(--default-font-variation-settings,normal);-webkit-tap-highlight-color:transparent}hr{height:0;color:inherit;border-top-width:1px}abbr:where([title]){-webkit-text-decoration:underline dotted;text-decoration:underline dotted}h1,h2,h3,h4,h5,h6{font-size:inherit;font-weight:inherit}a{color:inherit;-webkit-text-decoration:inherit;-webkit-text-decoration:inherit;-webkit-text-decoration:inherit;text-decoration:inherit}b,strong{font-weight:bolder}code,kbd,samp,pre{font-family:var(--default-mono-font-family,ui-monospace,SFMono-Regular,Menlo,Monaco,Consolas,"Liberation Mono","Courier New",monospace);font-feature-settings:var(--default-mono-font-feature-settings,normal);font-variation-settings:var(--default-mono-font-variation-settings,normal);font-size:1em}small{font-size:80%}sub,sup{vertical-align:baseline;font-size:75%;line-height:0;position:relative}sub{bottom:-.25em}sup{top:-.5em}table{text-indent:0;border-color:inherit;border-collapse:collapse}:-moz-focusring{outline:auto}progress{vertical-align:baseline}summary{display:list-item}ol,ul,menu{list-style:none}img,svg,video,canvas,audio,iframe,embed,object{vertical-align:middle;display:block}img,video{max-width:100%;height:auto}button,input,select,optgroup,textarea{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}::file-selector-button{font:inherit;font-feature-settings:inherit;font-variation-settings:inherit;letter-spacing:inherit;color:inherit;opacity:1;background-color:#0000;border-radius:0}:where(select:is([multiple],[size])) optgroup{font-weight:bolder}:where(select:is([multiple],[size])) optgroup option{padding-inline-start:20px}::file-selector-button{margin-inline-end:4px}::placeholder{opacity:1}@supports (not ((-webkit-appearance:-apple-pay-button))) or (contain-intrinsic-size:1px){::placeholder{color:currentColor}@supports (color:color-mix(in lab, red, red)){::placeholder{color:color-mix(in oklab,currentcolor 50%,transparent)}}}textarea{resize:vertical}::-webkit-search-decoration{-webkit-appearance:none}::-webkit-date-and-time-value{min-height:1lh;text-align:inherit}::-webkit-datetime-edit{display:inline-flex}::-webkit-datetime-edit-fields-wrapper{padding:0}::-webkit-datetime-edit{padding-block:0}::-webkit-datetime-edit-year-field{padding-block:0}::-webkit-datetime-edit-month-field{padding-block:0}::-webkit-datetime-edit-day-field{padding-block:0}::-webkit-datetime-edit-hour-field{padding-block:0}::-webkit-datetime-edit-minute-field{padding-block:0}::-webkit-datetime-edit-second-field{padding-block:0}::-webkit-datetime-edit-millisecond-field{padding-block:0}::-webkit-datetime-edit-meridiem-field{padding-block:0}::-webkit-calendar-picker-indicator{line-height:1}:-moz-ui-invalid{box-shadow:none}button,input:where([type=button],[type=reset],[type=submit]){appearance:button}::file-selector-button{appearance:button}::-webkit-inner-spin-button{height:auto}::-webkit-outer-spin-button{height:auto}[hidden]:where(:not([hidden=until-found])){display:none!important}.visible{visibility:visible}.sr-only{clip:rect(0,0,0,0);white-space:nowrap;border-width:0;width:1px;height:1px;margin:-1px;padding:0;position:absolute;overflow:hidden}.absolute{position:absolute}.relative{position:relative}.mx-auto{margin-inline:auto}.ms-\[22\.5px\]{margin-inline-start:22.5px}.mb-0{margin-bottom:calc(var(--spacing)*0)}.block{display:block}.contents{display:contents}.flex{display:flex}.hidden{display:none}.table{display:table}.min-h-0{min-height:calc(var(--spacing)*0)}.w-full{width:100%}.max-w-\[800px\]{max-width:800px}.min-w-0{min-width:calc(var(--spacing)*0)}.min-w-\[319px\]{min-width:319px}.flex-1{flex:1}.shrink-0{flex-shrink:0}.transform{transform:var(--tw-rotate-x,)var(--tw-rotate-y,)var(--tw-rotate-z,)var(--tw-skew-x,)var(--tw-skew-y,)}.cursor-pointer{cursor:pointer}.resize{resize:both}.list-decimal{list-style-type:decimal}.list-disc{list-style-type:disc}.flex-col{flex-direction:column}.content-stretch{align-content:stretch}.items-center{align-items:center}.items-stretch{align-items:stretch}.justify-center{justify-content:center}.gap-4{gap:calc(var(--spacing)*4)}.gap-\[16px\]{gap:16px}.gap-\[36px\]{gap:36px}.px-\[clamp\(20px\,5vw\,28px\)\]{padding-inline:clamp(20px,5vw,28px)}.pt-\[28px\]{padding-top:28px}.pb-16{padding-bottom:calc(var(--spacing)*16)}.pl-5{padding-left:calc(var(--spacing)*5)}.font-\[\'Inter\:Bold\'\,sans-serif\]{font-family:Inter\:Bold,sans-serif}.font-\[\'Inter\:Regular\'\,sans-serif\]{font-family:Inter\:Regular,sans-serif}.font-\[\'Inter\:Semi_Bold\'\,sans-serif\]{font-family:Inter\:Semi Bold,sans-serif}.text-\[15px\]{font-size:15px}.text-\[20px\]{font-size:20px}.text-\[24px\]{font-size:24px}.leading-\[0\]{--tw-leading:0;line-height:0}.leading-\[23px\]{--tw-leading:23px;line-height:23px}.leading-\[28px\]{--tw-leading:28px;line-height:28px}.font-bold{--tw-font-weight:var(--font-weight-bold);font-weight:var(--font-weight-bold)}.font-normal{--tw-font-weight:var(--font-weight-normal);font-weight:var(--font-weight-normal)}.font-semibold{--tw-font-weight:var(--font-weight-semibold);font-weight:var(--font-weight-semibold)}.whitespace-pre-wrap{white-space:pre-wrap}.text-\[\#5c38ff\]{color:#5c38ff}.text-\[\#040a23\]{color:#040a23}.italic{font-style:italic}.underline{text-decoration-line:underline}.decoration-solid{text-decoration-style:solid}.ring{--tw-ring-shadow:var(--tw-ring-inset,)0 0 0 calc(1px + var(--tw-ring-offset-width))var(--tw-ring-color,currentcolor);box-shadow:var(--tw-inset-shadow),var(--tw-inset-ring-shadow),var(--tw-ring-offset-shadow),var(--tw-ring-shadow),var(--tw-shadow)}.blur{--tw-blur:blur(8px);filter:var(--tw-blur,)var(--tw-brightness,)var(--tw-contrast,)var(--tw-grayscale,)var(--tw-hue-rotate,)var(--tw-invert,)var(--tw-saturate,)var(--tw-sepia,)var(--tw-drop-shadow,)}@media (min-width:1200px){.min-\[1200px\]\:px-8{padding-inline:calc(var(--spacing)*8)}.min-\[1200px\]\:pt-8{padding-top:calc(var(--spacing)*8)}.min-\[1200px\]\:pb-24{padding-bottom:calc(var(--spacing)*24)}}@property --tw-rotate-x{syntax:"*";inherits:false}@property --tw-rotate-y{syntax:"*";inherits:false}@property --tw-rotate-z{syntax:"*";inherits:false}@property --tw-skew-x{syntax:"*";inherits:false}@property --tw-skew-y{syntax:"*";inherits:false}@property --tw-leading{syntax:"*";inherits:false}@property --tw-font-weight{syntax:"*";inherits:false}@property --tw-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-shadow-color{syntax:"*";inherits:false}@property --tw-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-inset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-shadow-color{syntax:"*";inherits:false}@property --tw-inset-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-ring-color{syntax:"*";inherits:false}@property --tw-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-inset-ring-color{syntax:"*";inherits:false}@property --tw-inset-ring-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-ring-inset{syntax:"*";inherits:false}@property --tw-ring-offset-width{syntax:"<length>";inherits:false;initial-value:0}@property --tw-ring-offset-color{syntax:"*";inherits:false;initial-value:#fff}@property --tw-ring-offset-shadow{syntax:"*";inherits:false;initial-value:0 0 #0000}@property --tw-blur{syntax:"*";inherits:false}@property --tw-brightness{syntax:"*";inherits:false}@property --tw-contrast{syntax:"*";inherits:false}@property --tw-grayscale{syntax:"*";inherits:false}@property --tw-hue-rotate{syntax:"*";inherits:false}@property --tw-invert{syntax:"*";inherits:false}@property --tw-opacity{syntax:"*";inherits:false}@property --tw-saturate{syntax:"*";inherits:false}@property --tw-sepia{syntax:"*";inherits:false}@property --tw-drop-shadow{syntax:"*";inherits:false}@property --tw-drop-shadow-color{syntax:"*";inherits:false}@property --tw-drop-shadow-alpha{syntax:"<percentage>";inherits:false;initial-value:100%}@property --tw-drop-shadow-size{syntax:"*";inherits:false}
