:root {
  --purple: #938efd;
  --purple-deep: #6963d8;
  --purple-soft: #dddafe;
  --charcoal: #4d4d4d;
  --ink: #222228;
  --ivory: #f5f4eb;
  --ivory-deep: #ebe8dc;
  --mist: rgba(255, 255, 255, 0.52);
  --glass: rgba(255, 255, 255, 0.42);
  --line: rgba(77, 77, 77, 0.14);
  --shadow-soft: 0 24px 70px rgba(63, 59, 124, 0.14);
  --shadow-purple: 0 28px 80px rgba(147, 142, 253, 0.28);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --max: 1180px;
  --header-height: 78px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --glass-ease: cubic-bezier(0.16, 1, 0.3, 1);
  font-family: "Manrope", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--charcoal);
  background:
    radial-gradient(circle at 8% 12%, rgba(147, 142, 253, 0.18), transparent 30rem),
    linear-gradient(145deg, var(--ivory) 0%, #fbfaf3 42%, #ece9ff 100%);
  font-family: inherit;
  line-height: 1.5;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

code {
  padding: 0.12rem 0.35rem;
  border-radius: 0.45rem;
  background: rgba(147, 142, 253, 0.14);
  color: var(--purple-deep);
}

.overflow-shell {
  width: 100%;
  max-width: 100%;
  overflow-x: visible;
}

.section-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.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;
}

.full-screen-section {
  min-height: 100vh;
}

.chapter-section {
  padding: 9rem 0;
  position: relative;
}

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, calc(100% - 32px));
  min-height: 64px;
  padding: 0.58rem 0.64rem 0.58rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 999px;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.62), transparent 42%),
    linear-gradient(135deg, rgba(246, 250, 255, 0.52), rgba(232, 241, 248, 0.3)),
    rgba(236, 244, 250, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    inset 0 -1px 0 rgba(255, 255, 255, 0.18),
    inset 0 0 18px rgba(255, 255, 255, 0.16),
    0 16px 44px rgba(9, 8, 22, 0.2);
  backdrop-filter: blur(24px) saturate(1.55) brightness(1.08);
  -webkit-backdrop-filter: blur(24px) saturate(1.55) brightness(1.08);
  transform: translateX(-50%);
  transition: transform 280ms var(--glass-ease), background 280ms var(--glass-ease), box-shadow 280ms var(--glass-ease), border-color 280ms var(--glass-ease);
}

.site-header.is-scrolled {
  border-color: rgba(255, 255, 255, 0.56);
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.62), transparent 42%),
    linear-gradient(135deg, rgba(246, 250, 255, 0.52), rgba(232, 241, 248, 0.3)),
    rgba(236, 244, 250, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    inset 0 -1px 0 rgba(255, 255, 255, 0.18),
    inset 0 0 18px rgba(255, 255, 255, 0.16),
    0 16px 44px rgba(9, 8, 22, 0.2);
}

.brand-mark,
.footer-brand {
  display: inline-flex;
  align-items: center;
}

.brand-mark img {
  width: auto;
  height: 32px;
  max-width: 152px;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(255, 255, 255, 0.18));
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.72rem;
}

.product-header-search {
  position: fixed;
  top: 92px;
  right: 8px;
  z-index: 49;
  width: min(320px, calc(100vw - 16px));
  min-width: 260px;
  pointer-events: auto;
}

@media (min-width: 1800px) {
  .product-header-search {
    top: 28px;
    right: max(8px, calc((100vw - 2048px) / 2 + 8px));
    left: auto;
    width: 320px;
  }

  .page-product .product-catalog-topline {
    padding-right: 348px;
  }
}

@media (max-width: 1799px) {
  .page-product .product-header-search {
    position: absolute;
    top: 92px;
    right: 16px;
    width: min(320px, calc(100vw - 32px));
    min-width: 0;
  }

  .page-product .product-discovery-section {
    padding-top: 13rem;
  }
}

.product-header-search .search-shell input {
  min-height: 52px;
  padding: 0 1rem 0 2.55rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  font-family: "SF Pro Text", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: clamp(0.94rem, 1vw, 1.08rem);
  font-weight: 330;
  line-height: 1.42;
  letter-spacing: 0;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 14px 36px rgba(63, 59, 124, 0.1);
}

.product-header-search .search-shell {
  position: relative;
}

.product-header-search .search-icon {
  position: absolute;
  top: 50%;
  left: 1rem;
  z-index: 1;
  width: 1.14rem;
  height: 1.14rem;
  color: rgba(77, 77, 77, 0.58);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
  pointer-events: none;
  transform: translateY(-50%);
}

.product-search-close {
  display: none;
}

.site-nav a,
.site-nav button,
.footer-links a {
  position: relative;
  overflow: hidden;
  padding: 0.72rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  color: rgba(34, 34, 40, 0.78);
  font-size: 0.94rem;
  line-height: 1;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.24), rgba(225, 238, 248, 0.1)),
    rgba(236, 244, 250, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.52),
    inset 0 -1px 0 rgba(255, 255, 255, 0.1),
    inset 0 0 12px rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px) saturate(1.45) brightness(1.04);
  -webkit-backdrop-filter: blur(18px) saturate(1.45) brightness(1.04);
  transition: transform 280ms var(--glass-ease), color 280ms var(--glass-ease), border-color 280ms var(--glass-ease), background 280ms var(--glass-ease), box-shadow 280ms var(--glass-ease);
  will-change: transform;
}

.site-nav a::before,
.site-nav button::before,
.footer-links a::before,
.filter-chip::before,
.modal-close::before,
.faq-question::before {
  content: "";
  position: absolute;
  inset: -55% -35%;
  background:
    radial-gradient(circle at 20% 18%, rgba(255, 255, 255, 0.72), transparent 28%),
    linear-gradient(120deg, transparent 18%, rgba(255, 255, 255, 0.4) 43%, transparent 64%);
  opacity: 0;
  transform: translateX(-26%) rotate(8deg);
  transition: opacity 280ms var(--glass-ease), transform 280ms var(--glass-ease);
  pointer-events: none;
}

.site-nav a:hover,
.site-nav a.is-active,
.site-nav button:hover,
.footer-links a:hover {
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.62);
  background:
    radial-gradient(circle at 26% 0%, rgba(255, 255, 255, 0.62), transparent 44%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.42), rgba(230, 241, 249, 0.22)),
    rgba(236, 244, 250, 0.28);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    inset 0 -1px 0 rgba(255, 255, 255, 0.2),
    inset 0 0 16px rgba(255, 255, 255, 0.16),
    0 16px 42px rgba(9, 8, 22, 0.2),
    0 0 24px rgba(147, 142, 253, 0.16);
}

.site-nav a:hover,
.site-nav button:hover,
.footer-links a:hover {
  transform: scale(1.04) translateY(-1px);
}

.site-nav a:hover::before,
.site-nav a.is-active::before,
.site-nav button:hover::before,
.footer-links a:hover::before,
.filter-chip:hover::before,
.filter-chip.is-active::before,
.modal-close:hover::before,
.faq-question:hover::before {
  opacity: 0.72;
  transform: translateX(18%) rotate(8deg);
}

.site-nav a.is-active {
  background:
    radial-gradient(circle at 26% 0%, rgba(255, 255, 255, 0.72), transparent 42%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(230, 241, 249, 0.26)),
    rgba(236, 244, 250, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    inset 0 -1px 0 rgba(255, 255, 255, 0.22),
    inset 0 0 18px rgba(255, 255, 255, 0.18),
    0 12px 32px rgba(9, 8, 22, 0.18),
    0 0 22px rgba(147, 142, 253, 0.16);
}

.site-nav a,
.site-nav button {
  overflow: visible;
  padding: 0.72rem 0.42rem;
  border-color: transparent;
  color: rgba(34, 34, 40, 0.76);
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  font-weight: 780;
}

.site-nav button,
.footer-links button {
  appearance: none;
  border: 0;
  font: inherit;
  cursor: pointer;
  text-align: left;
}

.site-nav button {
  font-weight: 780;
}

.page-home .site-header.is-over-dark .site-nav a {
  color: rgba(255, 255, 255, 0.86);
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.38);
}

.page-home .site-header.is-over-dark .site-nav button {
  color: rgba(255, 255, 255, 0.86);
  text-shadow: 0 10px 24px rgba(0, 0, 0, 0.38);
}

.page-home .site-header.is-over-dark .site-nav a:hover,
.page-home .site-header.is-over-dark .site-nav a.is-active,
.page-home .site-header.is-over-dark .site-nav button:hover {
  color: #fff;
}

.site-nav a::before,
.site-nav button::before {
  display: none;
}

.site-nav a:hover,
.site-nav a.is-active,
.site-nav button:hover {
  color: var(--ink);
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

.site-nav .nav-cta {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 1.28rem;
  border: 1px solid rgba(210, 207, 255, 0.78);
  border-radius: 999px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(147, 142, 253, 0.84), rgba(105, 99, 216, 0.58)),
    rgba(147, 142, 253, 0.54);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    inset 0 -1px 0 rgba(67, 61, 164, 0.26),
    0 14px 34px rgba(105, 99, 216, 0.26);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta.is-active,
.page-home .site-header.is-over-dark .site-nav .nav-cta,
.page-home .site-header.is-over-dark .site-nav .nav-cta:hover,
.page-home .site-header.is-over-dark .site-nav .nav-cta.is-active {
  color: #fff;
  text-shadow: none;
  border-color: rgba(210, 207, 255, 0.86);
  background:
    linear-gradient(135deg, rgba(147, 142, 253, 0.88), rgba(105, 99, 216, 0.62)),
    rgba(147, 142, 253, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.36),
    inset 0 -1px 0 rgba(67, 61, 164, 0.28),
    0 16px 38px rgba(105, 99, 216, 0.3);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.38), rgba(230, 241, 249, 0.16)),
    rgba(236, 244, 250, 0.2);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.36),
    0 10px 28px rgba(9, 8, 22, 0.16);
  backdrop-filter: blur(18px) saturate(1.5);
  -webkit-backdrop-filter: blur(18px) saturate(1.5);
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  border-radius: 4px;
  background: var(--charcoal);
  transition: transform 260ms var(--ease);
}

.nav-toggle.is-open span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.nav-toggle.is-open span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.interactive-lift {
  transition: transform 320ms var(--ease), box-shadow 320ms var(--ease), border-color 320ms var(--ease), color 320ms var(--ease), background 320ms var(--ease), opacity 320ms var(--ease);
}

.interactive-lift:hover {
  transform: translateY(-3px) scale(1.015);
}

.footer-links a.interactive-lift:hover {
  transform: scale(1.04) translateY(-1px);
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.35rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  font-weight: 760;
  line-height: 1;
  white-space: nowrap;
  backdrop-filter: blur(22px) saturate(1.55) brightness(1.08);
  -webkit-backdrop-filter: blur(22px) saturate(1.55) brightness(1.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    inset 0 -1px 0 rgba(255, 255, 255, 0.12),
    inset 0 0 16px rgba(255, 255, 255, 0.1),
    0 12px 34px rgba(0, 0, 0, 0.16);
  transition: transform 280ms var(--glass-ease), background 280ms var(--glass-ease), border-color 280ms var(--glass-ease), box-shadow 280ms var(--glass-ease), color 280ms var(--glass-ease);
  will-change: transform;
}

.button:hover {
  transform: scale(1.04) translateY(-1px);
  border-color: rgba(255, 255, 255, 0.66);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    inset 0 -1px 0 rgba(255, 255, 255, 0.2),
    inset 0 0 20px rgba(255, 255, 255, 0.18),
    0 16px 42px rgba(0, 0, 0, 0.22),
    0 0 22px rgba(147, 142, 253, 0.16);
}

.button-primary {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(147, 142, 253, 0.68), rgba(105, 99, 216, 0.46)),
    rgba(147, 142, 253, 0.36);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    inset 0 -1px 0 rgba(67, 61, 164, 0.26),
    0 18px 48px rgba(147, 142, 253, 0.34);
}

.button-primary:hover {
  background:
    linear-gradient(135deg, rgba(154, 150, 255, 0.78), rgba(119, 113, 244, 0.56)),
    rgba(147, 142, 253, 0.48);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.52),
    inset 0 -1px 0 rgba(67, 61, 164, 0.28),
    0 24px 64px rgba(147, 142, 253, 0.46),
    0 0 26px rgba(147, 142, 253, 0.34);
}

.button-soft {
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.44);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(230, 241, 249, 0.12)),
    rgba(236, 244, 250, 0.18);
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--purple-deep);
  font-size: 0.86rem;
  font-weight: 780;
  letter-spacing: 0;
  text-transform: none;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--ink);
  letter-spacing: 0;
  line-height: 0.96;
  overflow-wrap: break-word;
}

h1 {
  font-size: 5rem;
  font-weight: 820;
}

h2 {
  font-size: 4.2rem;
  font-weight: 800;
}

h3 {
  font-size: 1.45rem;
  font-weight: 790;
}

p {
  font-size: 1.05rem;
}

.home-hero {
  --reveal-x: 50%;
  --reveal-y: 50%;
  --reveal-size: 178px;
  --reveal-opacity: 0.1;
  position: relative;
  display: grid;
  place-items: center;
  min-height: 100dvh;
  padding: 8rem 0 5rem;
  color: #fff;
  background: #07060e;
  overflow: clip;
  isolation: isolate;
}

.home-hero.is-reveal-active {
  --reveal-opacity: 0.92;
}

.home-hero.is-static-reveal {
  --reveal-x: 50%;
  --reveal-y: 48%;
  --reveal-size: 178px;
  --reveal-opacity: 0.42;
}

.hero-video-ready {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 8%, rgba(147, 142, 253, 0.18), transparent 30rem),
    radial-gradient(circle at 20% 72%, rgba(147, 142, 253, 0.1), transparent 28rem),
    linear-gradient(180deg, #0c0a17 0%, #06050b 54%, #030307 100%);
}

.hero-video-ready::after {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  -webkit-mask-image: linear-gradient(180deg, transparent, #000 18%, #000 68%, transparent);
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 68%, transparent);
  pointer-events: none;
}

.hero-product-backdrop,
.hero-product-reveal,
.hero-dark-overlay,
.hero-ambient-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-product-backdrop,
.hero-product-reveal {
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 7, 18, 0.12), rgba(8, 7, 18, 0.18)),
    url("assets/images/fento-product-flatlay.jpg") center / cover no-repeat;
  filter: none;
}

.hero-product-backdrop {
  z-index: 0;
  opacity: 0.11;
}

.hero-product-reveal {
  z-index: 3;
  opacity: var(--reveal-opacity);
  transition: opacity 120ms var(--ease);
  will-change: opacity, mask-image, -webkit-mask-image;
  -webkit-mask-image: radial-gradient(circle var(--reveal-size) at var(--reveal-x) var(--reveal-y), #000 0 54%, rgba(0, 0, 0, 0.72) 66%, rgba(0, 0, 0, 0.28) 82%, transparent 100%);
  mask-image: radial-gradient(circle var(--reveal-size) at var(--reveal-x) var(--reveal-y), #000 0 54%, rgba(0, 0, 0, 0.72) 66%, rgba(0, 0, 0, 0.28) 82%, transparent 100%);
}

.home-hero.is-reveal-active .hero-product-reveal {
  filter: none;
}

.hero-dark-overlay {
  z-index: 1;
  background:
    radial-gradient(ellipse at 50% 48%, rgba(4, 3, 10, 0.12), rgba(4, 3, 10, 0.62) 56%, rgba(4, 3, 10, 0.92) 100%),
    linear-gradient(180deg, rgba(6, 5, 14, 0.42), rgba(6, 5, 14, 0.74) 62%, rgba(6, 5, 14, 0.96));
}

.hero-ambient-glow {
  z-index: 2;
  inset: -18%;
  opacity: 0.62;
  background:
    radial-gradient(ellipse at 50% 12%, rgba(147, 142, 253, 0.22), transparent 34rem),
    radial-gradient(ellipse at 14% 54%, rgba(147, 142, 253, 0.12), transparent 28rem),
    radial-gradient(ellipse at 86% 58%, rgba(255, 255, 255, 0.06), transparent 26rem);
  filter: blur(12px);
  animation: slow-drift 18s var(--ease) infinite alternate;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: min(1120px, 92vw);
  text-align: center;
}

.hero-inner::before {
  content: "";
  position: absolute;
  inset: -3.5rem -5rem;
  z-index: -1;
  background: radial-gradient(ellipse at 50% 50%, rgba(3, 2, 8, 0.42) 0%, rgba(3, 2, 8, 0.24) 38%, transparent 74%);
  filter: blur(6px);
  pointer-events: none;
}

.home-hero .eyebrow {
  color: rgba(221, 218, 254, 0.94);
  font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: clamp(1.45rem, 1.6vw, 1.78rem);
  font-weight: 390;
  line-height: 1.16;
}

.home-hero .hero-trust-badge {
  --trust-avatar-size: clamp(18px, 1.2vw, 24px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  max-width: calc(100vw - 32px);
  margin: 0 0 1rem;
  padding: 0.34rem 0.82rem 0.34rem 0.42rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    0 12px 34px rgba(3, 2, 8, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: clamp(0.76rem, 0.85vw, 0.95rem);
  white-space: nowrap;
}

.hero-trust-avatars {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  margin-right: 0.52rem;
}

.hero-trust-avatars img {
  width: var(--trust-avatar-size);
  height: var(--trust-avatar-size);
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 50%;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.08);
}

.hero-trust-avatars img + img {
  margin-left: calc(var(--trust-avatar-size) * -0.38);
}

.hero-trust-text {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hero-inner h1 {
  max-width: min(16.6em, 92vw);
  margin-bottom: 1.4rem;
  color: #fff;
  font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: clamp(3.45rem, 4.2vw, 5.2rem);
  font-weight: 330;
  line-height: 1.05;
  letter-spacing: 0;
  text-shadow: 0 18px 52px rgba(0, 0, 0, 0.72);
  text-wrap: balance;
}

.hero-inner h1 span,
.hero-copy span {
  display: block;
}

.hero-copy {
  max-width: 680px;
  margin-bottom: 2.1rem;
  color: rgba(255, 255, 255, 0.76);
  font-family: "SF Pro Text", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: clamp(1.04rem, 1.16vw, 1.28rem);
  font-weight: 330;
  line-height: 1.42;
  text-wrap: pretty;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

.home-hero .hero-actions .button-primary:nth-child(2) {
  color: #09090d;
  border-color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.94);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    0 12px 30px rgba(9, 8, 22, 0.18);
  font-family: "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1;
}

.home-hero .hero-actions .button-primary:nth-child(2):hover {
  color: #09090d;
  border-color: rgba(255, 255, 255, 0.9);
  background: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.96),
    0 16px 38px rgba(9, 8, 22, 0.2);
}

.home-hero .button-soft {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.44);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(230, 241, 249, 0.08)),
    rgba(236, 244, 250, 0.12);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.5),
    inset 0 -1px 0 rgba(255, 255, 255, 0.12),
    inset 0 0 14px rgba(255, 255, 255, 0.08),
    0 16px 44px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(22px) saturate(1.55) brightness(1.08);
  -webkit-backdrop-filter: blur(22px) saturate(1.55) brightness(1.08);
}

.home-hero .button-soft:hover {
  border-color: rgba(255, 255, 255, 0.66);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.32), rgba(230, 241, 249, 0.14)),
    rgba(236, 244, 250, 0.2);
}

.blank-page-shell {
  min-height: 64vh;
  padding-top: var(--header-height);
}

.features-page-shell {
  background: #030406;
}

.features-hero {
  --hero-carousel-gap: clamp(1.1rem, 2.1vw, 2.4rem);
  --hero-card-width: clamp(220px, 17vw, 340px);
  --hero-card-height: clamp(192px, 15vw, 300px);
  --hero-card-shift: calc((var(--hero-card-width) + var(--hero-carousel-gap)) * 8);
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100dvh;
  height: auto;
  overflow: hidden;
  isolation: isolate;
  gap: clamp(2.8rem, 5.6vh, 5rem);
  padding: clamp(7.8rem, 13vh, 10.5rem) 0 clamp(2rem, 5vh, 4rem);
  color: #111114;
  background: #f5f4ee;
}

.features-hero__content {
  position: relative;
  z-index: 2;
  display: grid;
  justify-items: center;
  width: min(1680px, calc(100% - 40px));
  margin: 0 auto;
  padding-top: 0;
  text-align: center;
}

.features-hero__content::before {
  content: none;
}

.features-hero h1 {
  margin: 0;
  color: #151518;
  font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: clamp(3.75rem, 7.9vw, 10rem);
  font-weight: 330;
  line-height: 0.95;
  letter-spacing: 0;
  word-spacing: normal;
  text-shadow: none;
  white-space: nowrap;
}

.features-hero__actions {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2vw, 1.35rem);
  margin-top: clamp(3.2rem, 7vh, 5.8rem);
}

.features-hero__actions p {
  margin: 0;
  color: #151518;
  font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: clamp(2.4rem, 3vw, 3rem);
  font-weight: 330;
  line-height: 1.05;
  text-shadow: none;
}

.features-hero__cta {
  position: relative;
  top: 0.16rem;
  min-height: 52px;
  padding: 0 1.35rem;
  font-family: "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: 1.12rem;
  font-weight: 500;
}

.features-hero-carousel {
  position: relative;
  z-index: 1;
  width: 100%;
  overflow: hidden;
  padding: clamp(1.6rem, 3.2vh, 3rem) 0 clamp(0.2rem, 1vh, 0.8rem);
  background: #f5f4ee;
  transform: translate3d(0, clamp(0.9rem, 2vh, 1.6rem), 0);
}

.features-hero-carousel__viewport {
  width: 100%;
  overflow: visible;
  padding: clamp(1.1rem, 2.4vw, 2.2rem) 0;
}

.features-hero-carousel__track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: var(--hero-carousel-gap);
  padding-inline: var(--hero-carousel-gap);
  will-change: transform;
  animation: featuresHeroCarousel 38s linear infinite;
}

.features-hero-carousel:hover .features-hero-carousel__track {
  animation-play-state: paused;
}

.features-hero-product-card {
  --card-height: var(--hero-card-height);
  --card-width-scale: 1;
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 calc(var(--hero-card-width) * var(--card-width-scale));
  width: calc(var(--hero-card-width) * var(--card-width-scale));
  height: var(--card-height);
  aspect-ratio: auto;
  margin: 0;
  overflow: visible;
  border-radius: clamp(18px, 2vw, 30px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.48),
    0 18px 44px rgba(43, 41, 52, 0.12);
}

.features-hero-product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: inherit;
  pointer-events: none;
}

.features-hero-product-card img {
  --product-y: -50%;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  display: block;
  width: auto;
  height: auto;
  max-width: 82%;
  max-height: 82%;
  object-fit: contain;
  filter: drop-shadow(0 22px 26px rgba(30, 28, 35, 0.16));
  transform: translate3d(-50%, var(--product-y), 0);
}

.features-hero-product-card--yellow {
  --card-height: calc(var(--hero-card-height) * 1.1);
  background: #f8d66d;
}

.features-hero-product-card--purple {
  --card-height: calc(var(--hero-card-height) * 0.94);
  background: #b79cff;
}

.features-hero-product-card--orange {
  --card-height: calc(var(--hero-card-height) * 0.88);
  background: #ff9f1c;
}

.features-hero-product-card--mint {
  --card-height: calc(var(--hero-card-height) * 1.05);
  background: #62d6c9;
}

.features-hero-product-card--ivory {
  --card-height: calc(var(--hero-card-height) * 0.92);
  background: #f5f4ee;
}

.features-hero-product-card--green {
  --card-height: calc(var(--hero-card-height) * 0.98);
  background: #d8f3dc;
}

.features-hero-product-card--peach {
  --card-height: calc(var(--hero-card-height) * 1.02);
  background: #ffd6a5;
}

.features-hero-product-card--lavender {
  --card-height: calc(var(--hero-card-height) * 1.04);
  background: #cdb4db;
}

.features-hero-product-card--tshirt,
.features-hero-product-card--hoodie,
.features-hero-product-card--hat,
.features-hero-product-card--yoga {
  --card-width-scale: 1.08;
}

.features-hero-product-card--sticker,
.features-hero-product-card--cup,
.features-hero-product-card--phone,
.features-hero-product-card--plush {
  --card-width-scale: 0.92;
}

.features-hero-product-card--tshirt {
  --card-height: calc(var(--hero-card-height) * 1.12);
}

.features-hero-product-card--hoodie {
  --card-height: calc(var(--hero-card-height) * 1.02);
}

.features-hero-product-card--hat {
  --card-height: calc(var(--hero-card-height) * 1.04);
}

.features-hero-product-card--yoga {
  --card-height: calc(var(--hero-card-height) * 1.08);
}

.features-hero-product-card--sticker {
  --card-height: calc(var(--hero-card-height) * 0.92);
}

.features-hero-product-card--cup {
  --card-height: calc(var(--hero-card-height) * 0.96);
}

.features-hero-product-card--phone {
  --card-height: calc(var(--hero-card-height) * 0.94);
}

.features-hero-product-card--plush {
  --card-height: calc(var(--hero-card-height) * 0.9);
}

.features-hero-product-card--tshirt img,
.features-hero-product-card--hoodie img,
.features-hero-product-card--hat img,
.features-hero-product-card--yoga img {
  --product-y: -60%;
  height: calc(var(--card-height) * 1.25);
  max-height: none;
}

.features-hero-product-card--tshirt img {
  max-width: 108%;
}

.features-hero-product-card--hoodie img {
  max-width: 94%;
}

.features-hero-product-card--hat img {
  max-width: 102%;
}

.features-hero-product-card--cup img {
  height: calc(var(--card-height) * 0.78);
  max-width: 50%;
  max-height: none;
}

.features-hero-product-card--plush img {
  height: calc(var(--card-height) * 0.84);
  max-width: 94%;
  max-height: none;
}

.features-hero-product-card--phone img {
  height: calc(var(--card-height) * 0.84);
  max-width: 68%;
  max-height: none;
}

.features-hero-product-card--sticker img {
  height: calc(var(--card-height) * 0.78);
  max-width: 66%;
  max-height: none;
}

.features-hero-product-card--yoga img {
  max-width: 78%;
}

@keyframes featuresHeroCarousel {
  to {
    transform: translate3d(calc(-1 * var(--hero-card-shift)), 0, 0);
  }
}

.features-source-section {
  position: relative;
  overflow: hidden;
  padding: clamp(3.25rem, 4.1vw, 4.8rem) 0 clamp(4.2rem, 5vw, 5.8rem);
  background: #938efd;
  color: #fff;
}

.features-source-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.4), transparent 26rem),
    radial-gradient(circle at 84% 38%, rgba(255, 255, 255, 0.22), transparent 28rem);
  pointer-events: none;
}

.features-source-inner {
  position: relative;
  z-index: 1;
  width: min(1560px, calc(100% - 96px));
  margin: 0 auto;
}

.features-source-section h2 {
  max-width: 860px;
  margin: 0 0 clamp(2rem, 3.1vw, 3rem);
  color: #fff;
  font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: clamp(2.4rem, 3vw, 3rem);
  font-weight: 330;
  line-height: 1.05;
  letter-spacing: 0;
  text-wrap: balance;
}

.features-source-section h2 span {
  display: block;
}

.features-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: clamp(2rem, 2.55vw, 3rem);
  align-items: stretch;
}

.features-card {
  --features-card-pad: clamp(1.15rem, 1.42vw, 1.75rem);
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  aspect-ratio: 1 / 1.08;
  overflow: hidden;
  min-width: 0;
  padding: var(--features-card-pad);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: clamp(18px, 1.5vw, 24px);
  background:
    radial-gradient(circle at 20% 14%, rgba(255, 255, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(70, 64, 164, 0.96), rgba(101, 94, 196, 0.98)),
    #6760c5;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.1),
    0 28px 72px rgba(49, 42, 136, 0.2);
}

.features-card::before {
  content: "";
  position: absolute;
  inset: 0 0 34%;
  z-index: 0;
  background:
    radial-gradient(circle at 50% 16%, rgba(143, 93, 255, 0.2), transparent 34%),
    linear-gradient(180deg, rgba(8, 6, 32, 0.66) 0%, rgba(41, 34, 120, 0.4) 48%, rgba(101, 94, 196, 0) 100%);
  pointer-events: none;
}

.features-card--no-moq {
  --features-card-visual: url("assets/images/features/no-moq-barriers-visual.jpeg");
  --features-card-position: center center;
  --features-card-size: cover;
  --features-card-surface:
    radial-gradient(ellipse at 56% 42%, rgba(36, 29, 86, 0.78), transparent 58%),
    radial-gradient(ellipse at 22% 70%, rgba(81, 73, 167, 0.34), transparent 54%);
  --features-card-tint: rgba(62, 52, 139, 0.2);
}

.features-card--fulfillment {
  --features-card-visual: url("assets/images/features/global-fulfillment-map-visual.jpeg");
  --features-card-position: center center;
  --features-card-size: cover;
  --features-card-surface:
    radial-gradient(ellipse at 50% 24%, rgba(90, 50, 191, 0.76), transparent 58%),
    radial-gradient(ellipse at 48% 74%, rgba(39, 34, 117, 0.34), transparent 54%);
  --features-card-tint: rgba(80, 63, 184, 0.22);
}

.features-card--pricing {
  --features-card-visual: url("assets/images/features/transparent-pricing-margin-visual.jpeg");
  --features-card-position: center 38%;
  --features-card-size: 104% auto;
  --features-card-surface:
    radial-gradient(ellipse at 58% 46%, rgba(31, 26, 82, 0.72), transparent 58%),
    radial-gradient(ellipse at 22% 58%, rgba(69, 56, 151, 0.28), transparent 52%);
  --features-card-tint: rgba(57, 45, 127, 0.18);
}

.features-card--products {
  --features-card-visual: url("assets/images/features/products-people-want-visual.jpeg");
  --features-card-position: center center;
  --features-card-size: cover;
  --features-card-surface:
    radial-gradient(ellipse at 48% 34%, rgba(30, 24, 78, 0.74), transparent 58%),
    radial-gradient(ellipse at 72% 58%, rgba(78, 66, 159, 0.28), transparent 52%);
  --features-card-tint: rgba(56, 45, 127, 0.18);
}

.features-card-visual {
  position: relative;
  z-index: 1;
  display: block;
  margin: 0 0 clamp(-3.4rem, -2.8vw, -2.1rem);
  min-height: 0;
  overflow: hidden;
  border-radius: clamp(14px, 1.05vw, 19px);
  background: var(--features-card-surface);
  box-shadow:
    inset 0 0 60px 24px rgba(17, 12, 58, 0.2),
    inset 0 -128px 118px rgba(101, 94, 196, 0.14);
  -webkit-mask-image:
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.24) 7%, rgba(0, 0, 0, 0.82) 22%, #000 42%, rgba(0, 0, 0, 0.5) 68%, transparent 100%),
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.2) 8%, rgba(0, 0, 0, 0.84) 23%, #000 50%, rgba(0, 0, 0, 0.84) 77%, rgba(0, 0, 0, 0.2) 92%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.24) 7%, rgba(0, 0, 0, 0.82) 22%, #000 42%, rgba(0, 0, 0, 0.5) 68%, transparent 100%),
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.2) 8%, rgba(0, 0, 0, 0.84) 23%, #000 50%, rgba(0, 0, 0, 0.84) 77%, rgba(0, 0, 0, 0.2) 92%, transparent 100%);
  mask-composite: intersect;
}

.features-card-visual::before,
.features-card-visual::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.features-card-visual::before {
  inset: 0;
  z-index: 0;
  background-image: var(--features-card-visual);
  background-position: var(--features-card-position);
  background-size: var(--features-card-size);
  background-repeat: no-repeat;
  filter: saturate(0.98) contrast(0.96) brightness(0.98);
  -webkit-mask-image:
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.2) 8%, rgba(0, 0, 0, 0.88) 23%, #000 46%, rgba(0, 0, 0, 0.42) 69%, transparent 100%),
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.2) 8%, rgba(0, 0, 0, 0.86) 21%, #000 50%, rgba(0, 0, 0, 0.86) 79%, rgba(0, 0, 0, 0.2) 92%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.2) 8%, rgba(0, 0, 0, 0.88) 23%, #000 46%, rgba(0, 0, 0, 0.42) 69%, transparent 100%),
    linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.2) 8%, rgba(0, 0, 0, 0.86) 21%, #000 50%, rgba(0, 0, 0, 0.86) 79%, rgba(0, 0, 0, 0.2) 92%, transparent 100%);
  mask-composite: intersect;
}

.features-card-visual::after {
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10, 8, 36, 0.38), transparent 24%, rgba(96, 89, 190, 0.28) 72%, rgba(96, 89, 190, 0.54) 100%),
    linear-gradient(90deg, var(--features-card-tint), transparent 22%, transparent 78%, var(--features-card-tint)),
    radial-gradient(circle at 50% 56%, rgba(168, 144, 255, 0.1), transparent 50%);
}

.features-card-copy {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: start;
  gap: clamp(0.62rem, 0.72vw, 0.82rem);
  min-width: 0;
  padding: clamp(1.35rem, 1.36vw, 1.62rem) 0 clamp(0.02rem, 0.12vw, 0.12rem);
}

.features-card-copy::before {
  display: none;
}

.features-card-copy h3 {
  margin: 0;
  color: #fff;
  font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: clamp(1.34rem, 1.26vw, 1.62rem);
  font-weight: 390;
  line-height: 1.16;
  white-space: nowrap;
}

.features-card-copy p {
  width: 100%;
  max-width: none;
  min-width: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-family: "SF Pro Text", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: clamp(1rem, 0.98vw, 1.14rem);
  font-weight: 330;
  line-height: 1.43;
  text-wrap: pretty;
}

@media (max-width: 1120px) {
  .features-source-inner {
    width: min(var(--max), calc(100% - 32px));
  }

  .features-card-grid {
    grid-template-columns: minmax(0, min(680px, 100%));
    justify-content: center;
  }

  .features-card-visual {
    min-height: 0;
  }

  .features-card-copy p {
    max-width: 60ch;
  }
}

@media (min-width: 1121px) and (max-width: 1320px) {
  .features-card-copy p {
    font-size: clamp(0.86rem, 1vw, 0.94rem);
    line-height: 1.4;
  }
}

.features-monetization-section {
  display: grid;
  align-items: center;
  height: auto;
  overflow: hidden;
  padding: clamp(4.8rem, 6vw, 6.4rem) 0 clamp(4.8rem, 6vw, 6.4rem);
  background: #f5f4ee;
  color: var(--ink);
}

.features-monetization-inner {
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
}

.features-monetization-heading {
  margin: 0 auto clamp(3rem, 6vh, 4.6rem);
  text-align: center;
}

.features-monetization-heading h2 {
  margin: 0 0 0.75rem;
  color: #050505;
  font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: clamp(3.45rem, 4.2vw, 5.2rem);
  font-weight: 330;
  line-height: 1.05;
  letter-spacing: 0;
}

.features-monetization-heading p {
  margin: 0;
  color: rgba(34, 34, 40, 0.6);
  font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: clamp(1.25rem, 1.45vw, 1.65rem);
  font-weight: 330;
  line-height: 1.2;
}

.features-monetization-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.9fr);
  align-items: center;
  gap: clamp(4rem, 8vw, 8.6rem);
}

.features-video-frame {
  position: relative;
  width: min(100%, 540px);
  aspect-ratio: 1 / 1;
  overflow: hidden;
  justify-self: center;
  border-radius: clamp(28px, 3vw, 48px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.7), rgba(228, 226, 220, 0.9)),
    #e7e5e1;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.68),
    0 32px 74px rgba(55, 50, 36, 0.14);
}

.features-video-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(34, 34, 40, 0.06);
  border-radius: inherit;
  pointer-events: none;
}

.features-video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #e7e5e1;
}

.features-video-list {
  display: grid;
  gap: clamp(2.3rem, 4.2vh, 3.8rem);
}

.features-video-item {
  --progress: 0;
  display: grid;
  grid-template-columns: 4px minmax(0, 1fr);
  align-items: center;
  gap: clamp(1.35rem, 2vw, 1.9rem);
  width: 100%;
  min-width: 0;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.features-progress {
  position: relative;
  display: block;
  align-self: center;
  width: 4px;
  height: clamp(4.6rem, 8vh, 6.5rem);
  overflow: hidden;
  border-radius: 999px;
  background: #4d4d4d;
}

.features-progress-fill {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: #938efd;
  transform: scaleY(var(--progress));
  transform-origin: top;
}

.features-video-copy {
  display: grid;
  gap: 0.7rem;
  min-width: 0;
}

.features-video-title {
  color: #111;
  font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: clamp(1.45rem, 1.6vw, 1.78rem);
  font-weight: 390;
  line-height: 1.16;
  letter-spacing: 0;
  transition: color 180ms var(--ease);
}

.features-video-description {
  max-width: 58ch;
  color: rgba(34, 34, 40, 0.58);
  font-family: "SF Pro Text", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: clamp(1.04rem, 1.16vw, 1.28rem);
  font-weight: 330;
  line-height: 1.42;
  transition: color 180ms var(--ease);
}

.features-video-item:hover .features-video-title,
.features-video-item.is-active .features-video-title {
  color: #000;
}

.features-video-item:hover .features-video-description,
.features-video-item.is-active .features-video-description {
  color: rgba(34, 34, 40, 0.72);
}

.features-savings-section {
  position: relative;
  overflow: hidden;
  padding: clamp(3.25rem, 4.35vw, 4.8rem) 0 clamp(3.55rem, 4.75vw, 5.25rem);
  background: #938efd;
  color: #fff;
  font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
}

.features-savings-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.17;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.36), transparent 22rem),
    radial-gradient(circle at 84% 74%, rgba(255, 255, 255, 0.22), transparent 26rem);
  pointer-events: none;
}

.features-savings-inner {
  position: relative;
  z-index: 1;
  width: min(1680px, calc(100% - 48px));
  margin: 0 auto;
}

.features-savings-heading {
  margin: 0 auto clamp(2.9rem, 4.35vw, 4.15rem);
  text-align: center;
}

.features-savings-heading h2 {
  margin: 0 0 0.72rem;
  color: #fff;
  font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: clamp(3.45rem, 4.2vw, 5.2rem);
  font-weight: 330;
  line-height: 1.05;
  letter-spacing: 0;
}

.features-savings-heading p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: clamp(1.25rem, 1.45vw, 1.65rem);
  font-weight: 330;
  line-height: 1.2;
}

.features-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.4rem, 2.2vw, 2.6rem);
}

.features-stat {
  min-width: 0;
}

.features-stat-number {
  margin: 0 0 clamp(1.1rem, 1.5vw, 1.45rem);
  color: #fff;
  font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: clamp(5.4rem, 6.6vw, 8rem);
  font-weight: 300;
  line-height: 0.85;
  letter-spacing: 0;
}

.features-stat-percent {
  display: inline-block;
  margin-left: 0.02em;
  font-size: 0.62em;
  line-height: 1;
  transform: translateY(-0.36em);
  transform-origin: left top;
}

.features-stat-symbol {
  display: inline-block;
  font-size: 0.62em;
  line-height: 1;
  transform: translateY(-0.28em);
  transform-origin: center;
}

.features-stat:nth-child(3) .features-stat-symbol {
  transform: translateY(-0.32em);
}

.features-stat-rule {
  width: 100%;
  height: 1px;
  margin-bottom: clamp(1.1rem, 1.5vw, 1.45rem);
  background: rgba(255, 255, 255, 0.24);
}

.features-stat-title-row {
  display: block;
  margin-bottom: 1rem;
}

.features-stat-title-row h3 {
  margin: 0;
  color: #fff;
  font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: clamp(1.45rem, 1.6vw, 1.78rem);
  font-weight: 390;
  line-height: 1.16;
  text-wrap: balance;
}

.features-stat-description {
  max-width: 64ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-family: "SF Pro Text", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: clamp(1.04rem, 1.16vw, 1.28rem);
  font-weight: 330;
  line-height: 1.42;
  text-wrap: pretty;
}

.features-growth-section {
  display: grid;
  align-items: center;
  height: auto;
  overflow: hidden;
  padding: clamp(4.6rem, 5.8vw, 6.4rem) 0 clamp(5.5rem, 7vw, 7.6rem);
  background: #040508;
  color: #fff;
  font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
}

.features-growth-inner {
  width: min(1440px, calc(100% - 48px));
  margin: 0 auto;
}

.features-growth-copy {
  transform: none;
}

.features-growth-main {
  display: grid;
  grid-template-columns: minmax(640px, 0.96fr) minmax(420px, 0.84fr);
  align-items: center;
  gap: clamp(2.75rem, 4.8vw, 5.25rem);
}

.features-growth-copy h2 {
  max-width: 860px;
  margin: 0 0 clamp(2.4rem, 4vh, 3.4rem);
  color: #fff;
  font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: clamp(2.4rem, 3vw, 3rem);
  font-weight: 330;
  line-height: 1.05;
  letter-spacing: 0;
  text-wrap: balance;
}

.features-growth-copy h2 span {
  display: block;
}

.features-growth-copy h2 span:first-child {
  white-space: nowrap;
}

.features-growth-list {
  display: grid;
  gap: clamp(1.35rem, 2.4vh, 2rem);
}

.features-growth-item {
  display: block;
  max-width: 680px;
}

.features-growth-item h3 {
  margin: 0 0 0.52rem;
  color: #fff;
  font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: clamp(1.45rem, 1.6vw, 1.78rem);
  font-weight: 390;
  line-height: 1.16;
  text-wrap: balance;
}

.features-growth-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-family: "SF Pro Text", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: clamp(1.04rem, 1.16vw, 1.28rem);
  font-weight: 330;
  line-height: 1.42;
  text-wrap: pretty;
}

.features-growth-visual {
  position: relative;
  display: grid;
  align-self: start;
  place-items: center;
  min-height: clamp(390px, 48vh, 520px);
  perspective: 1100px;
  perspective-origin: 58% 45%;
}

.features-growth-product-card {
  --growth-tilt-rx: 0deg;
  --growth-tilt-ry: 0deg;
  --growth-tilt-scale: 1;
  --growth-shine-x: 50%;
  --growth-shine-y: 50%;
  --growth-shine-opacity: 0;
  --growth-float-x: 0px;
  --growth-float-y: 0px;
  --growth-shape-scale: 1;
  position: absolute;
  top: clamp(1.5rem, 2vw, 2rem);
  right: clamp(0rem, 2vw, 2rem);
  bottom: auto;
  display: grid;
  place-items: center;
  width: min(82%, 520px);
  aspect-ratio: 1 / 1;
  min-height: auto;
  margin: 0;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.66);
  border-radius: clamp(24px, 2.3vw, 34px);
  color: #242329;
  background: #15141a;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.26),
    0 30px 86px rgba(20, 16, 48, 0.3);
  transform: perspective(1100px) rotateX(var(--growth-tilt-rx)) rotateY(var(--growth-tilt-ry)) scale(var(--growth-tilt-scale));
  transform-style: preserve-3d;
  transform-origin: center;
  transition:
    box-shadow 420ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 420ms cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform;
  isolation: isolate;
}

.features-growth-product-card::before {
  content: "";
  position: absolute;
  inset: -18% -12% auto auto;
  width: 70%;
  height: 70%;
  border-radius: 999px;
  background: rgba(147, 142, 253, 0.14);
  filter: blur(42px);
  z-index: -1;
}

.features-growth-product-card::after {
  content: none;
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(circle at var(--growth-shine-x) var(--growth-shine-y), rgba(255, 255, 255, 0.56), transparent 34%),
    linear-gradient(125deg, rgba(255, 255, 255, 0.18), transparent 48%);
  opacity: var(--growth-shine-opacity);
  pointer-events: none;
  transform: translateZ(2px);
  transition: opacity 360ms cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 3;
}

.features-growth-product-card.is-tilting {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 42px 100px rgba(20, 16, 48, 0.38),
    0 18px 44px rgba(139, 132, 246, 0.16);
  filter: saturate(1.04);
}

.features-growth-product-image {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
  transform: translateZ(1px);
}

.features-growth-product-float {
  position: absolute;
  left: 50%;
  bottom: clamp(1.15rem, 1.8vw, 1.8rem);
  z-index: 5;
  width: max-content;
  max-width: calc(100% - 2.4rem);
  padding: 0.72rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 999px;
  color: rgba(36, 35, 41, 0.72);
  background: rgba(255, 255, 255, 0.54);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 18px 38px rgba(20, 16, 48, 0.16);
  font-family: "SF Pro Text", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: clamp(1.04rem, 1.16vw, 1.28rem);
  font-weight: 330;
  line-height: 1.42;
  letter-spacing: 0;
  backdrop-filter: blur(18px);
  transform: translate3d(calc(-50% + var(--growth-float-x)), var(--growth-float-y), 92px);
  transition:
    box-shadow 420ms cubic-bezier(0.16, 1, 0.3, 1),
    background 420ms cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.features-growth-product-card.is-tilting .features-growth-product-float {
  background: rgba(255, 255, 255, 0.66);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 24px 46px rgba(20, 16, 48, 0.2);
}

.features-growth-cta {
  display: grid;
  justify-items: center;
  gap: 1rem;
  margin-top: clamp(4.7rem, 7.2vh, 6.2rem);
  text-align: center;
}

.features-growth-cta h3 {
  margin: 0;
  color: #fff;
  font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: clamp(2.4rem, 3vw, 3rem);
  font-weight: 330;
  line-height: 1.05;
  letter-spacing: 0;
}

.features-growth-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0 1.6rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #fff;
  background: #938efd;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 18px 42px rgba(147, 142, 253, 0.24);
  font-size: 1rem;
  font-weight: 820;
  line-height: 1;
  white-space: nowrap;
}

.features-growth-button:hover {
  color: #fff;
  background: #9d98ff;
}

.site-nav .nav-cta,
.site-nav .nav-cta.is-active,
.page-home .site-header.is-over-dark .site-nav .nav-cta,
.page-home .site-header.is-over-dark .site-nav .nav-cta.is-active,
.home-hero .hero-actions .button-primary:first-child,
.features-hero__cta,
.features-growth-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.35rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(147, 142, 253, 0.68), rgba(105, 99, 216, 0.46)),
    rgba(147, 142, 253, 0.36);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    inset 0 -1px 0 rgba(67, 61, 164, 0.26),
    0 18px 48px rgba(147, 142, 253, 0.34);
  backdrop-filter: blur(22px) saturate(1.55) brightness(1.08);
  -webkit-backdrop-filter: blur(22px) saturate(1.55) brightness(1.08);
  font-family: "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  transition: transform 280ms var(--glass-ease), background 280ms var(--glass-ease), border-color 280ms var(--glass-ease), box-shadow 280ms var(--glass-ease), color 280ms var(--glass-ease);
  will-change: transform;
}

.site-nav .nav-cta:hover,
.page-home .site-header.is-over-dark .site-nav .nav-cta:hover,
.home-hero .hero-actions .button-primary:first-child:hover,
.features-hero__cta:hover,
.features-growth-button:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.66);
  background:
    linear-gradient(135deg, rgba(154, 150, 255, 0.78), rgba(119, 113, 244, 0.56)),
    rgba(147, 142, 253, 0.48);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.52),
    inset 0 -1px 0 rgba(67, 61, 164, 0.3),
    0 22px 56px rgba(147, 142, 253, 0.38);
  transform: scale(1.04) translateY(-1px);
}

@media (max-width: 980px) {
  .features-monetization-section {
    height: auto;
    overflow: visible;
    padding: 4.8rem 0 4.2rem;
  }

  .features-monetization-inner {
    width: min(var(--max), calc(100% - 32px));
  }

  .features-monetization-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .features-video-frame {
    width: min(520px, 100%);
    max-height: none;
    aspect-ratio: 1 / 1;
  }

  .features-video-list {
    width: min(640px, 100%);
    margin: 0 auto;
  }

  .features-savings-inner {
    width: min(var(--max), calc(100% - 32px));
  }

  .features-stats-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .features-stat {
    width: min(620px, 100%);
    margin: 0 auto;
  }

  .features-stat-description {
    max-width: 58ch;
  }

  .features-growth-section {
    height: auto;
    overflow: visible;
    padding: 4.8rem 0 4.2rem;
  }

  .features-growth-inner {
    width: min(var(--max), calc(100% - 32px));
  }

  .features-growth-main {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .features-growth-copy {
    transform: none;
  }

  .features-growth-copy h2 {
    max-width: 760px;
    margin-bottom: 1.8rem;
    font-size: clamp(2.4rem, 3vw, 3rem);
  }

  .features-growth-list {
    gap: 1rem;
  }

  .features-growth-item {
    display: block;
    max-width: none;
  }

  .features-growth-visual {
    align-self: auto;
    min-height: 0;
    padding-top: 0.35rem;
  }

  .features-growth-product-card {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: min(82vw, 420px);
    min-height: auto;
  }

  .features-growth-product-float {
    top: auto;
    right: auto;
    bottom: 1.05rem;
  }

  .features-growth-cta {
    margin-top: 1.9rem;
  }
}

@media (max-width: 580px) {
  .features-source-section {
    padding: 3.6rem 0 4.1rem;
  }

  .features-source-section h2 {
    margin-bottom: 1.7rem;
    font-size: clamp(2rem, 8vw, 2.45rem);
  }

  .features-card-grid {
    gap: 1.2rem;
  }

  .features-card {
    --features-card-pad: 1rem;
    aspect-ratio: auto;
    min-height: clamp(460px, 138vw, 520px);
    border-radius: 18px;
  }

  .features-card-visual {
    margin-bottom: -2.5rem;
    border-radius: 15px;
  }

  .features-card-copy {
    gap: 0.58rem;
    padding: 0.95rem 0.15rem 0.15rem;
  }

  .features-card-copy h3 {
    font-size: clamp(0.86rem, 4.2vw, 1.14rem);
    white-space: normal;
  }

  .features-card-copy p {
    font-size: 0.95rem;
    line-height: 1.43;
    text-wrap: balance;
  }

  .features-card:nth-child(2) .features-card-copy {
    padding-right: 0;
    padding-left: 0;
  }

  .features-card:nth-child(2) .features-card-copy p {
    font-size: 0.835rem;
  }

  .features-no-orphan {
    white-space: nowrap;
  }

  .features-monetization-section {
    padding: 4rem 0 3.6rem;
  }

  .features-monetization-heading {
    margin-bottom: 1.35rem;
  }

  .features-monetization-heading h2 {
    margin-bottom: 0.42rem;
    font-size: clamp(2.65rem, 12vw, 4rem);
  }

  .features-monetization-heading p {
    font-size: 1.05rem;
  }

  .features-video-frame {
    border-radius: 28px;
    width: min(420px, 100%);
    max-height: none;
    aspect-ratio: 1 / 1;
  }

  .features-video-list {
    gap: 1rem;
  }

  .features-video-item {
    gap: 1rem;
  }

  .features-progress {
    height: 4.4rem;
  }

  .features-video-title {
    font-size: 1.2rem;
  }

  .features-video-description {
    font-size: 0.96rem;
    line-height: 1.42;
  }

  .features-savings-section {
    padding: 3.4rem 0 4rem;
  }

  .features-savings-heading {
    margin-bottom: 2.55rem;
  }

  .features-savings-heading h2 {
    font-size: clamp(2.65rem, 12vw, 4rem);
  }

  .features-savings-heading p {
    font-size: 1.05rem;
  }

  .features-stat-number {
    font-size: clamp(4.15rem, 20vw, 6.2rem);
  }

  .features-stat-title-row {
    align-items: flex-start;
  }

  .features-stat-title-row h3 {
    font-size: 1.2rem;
  }

  .features-stat-description {
    font-size: 0.96rem;
  }

  .features-growth-section {
    padding: 4rem 0 3.8rem;
  }

  .features-growth-copy h2 {
    margin-bottom: 1.1rem;
    font-size: clamp(2rem, 8vw, 2.45rem);
  }

  .features-growth-copy h2 span:first-child {
    white-space: normal;
  }

  .features-growth-item {
    display: block;
  }

  .features-growth-item h3 {
    margin-bottom: 0.34rem;
    font-size: 1.2rem;
  }

  .features-growth-item p {
    font-size: 0.96rem;
    line-height: 1.42;
  }

  .features-growth-visual {
    min-height: 245px;
  }

  .features-growth-product-card {
    width: min(82vw, 340px);
    min-height: auto;
    padding: 0;
    border-radius: 22px;
  }

  .features-growth-product-shape {
    width: 5.2rem;
  }

  .features-growth-product-float {
    top: auto;
    right: auto;
    bottom: 0.95rem;
    max-width: calc(100% - 1.6rem);
    padding: 0.58rem 0.72rem;
    font-size: 0.96rem;
  }

  .features-growth-cta {
    gap: 0.8rem;
    margin-top: 1.25rem;
  }

  .features-growth-cta h3 {
    font-size: clamp(2rem, 8vw, 2.45rem);
  }

  .features-growth-button {
    min-height: 3rem;
    padding: 0 1.35rem;
  }
}

@media (hover: none), (pointer: coarse) {
  .home-hero {
    --reveal-x: 50%;
    --reveal-y: 48%;
    --reveal-size: 178px;
    --reveal-opacity: 0.42;
  }
}

.how-section {
  position: relative;
  padding: clamp(5.5rem, 8vw, 8.5rem) 0;
  background: #f5f4ee;
}

.how-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.4fr) minmax(0, 0.6fr);
  align-items: center;
  gap: clamp(2.5rem, 5vw, 4.2rem);
}

.how-copy {
  min-width: 0;
}

.how-title {
  margin-bottom: clamp(2rem, 4vw, 3.25rem);
  font-size: clamp(2.9rem, 4vw, 3.2rem);
  line-height: 0.94;
  text-wrap: balance;
}

.how-steps {
  display: grid;
  border-top: 1px solid rgba(34, 34, 40, 0.12);
}

.how-step {
  position: relative;
  border-bottom: 1px solid rgba(34, 34, 40, 0.12);
}

.how-step::before {
  content: "";
  position: absolute;
  inset: 0 -0.8rem;
  z-index: 0;
  border-radius: 22px;
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 255, 255, 0.72), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(236, 244, 250, 0.16)),
    rgba(255, 255, 255, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 18px 42px rgba(63, 59, 124, 0.08);
  opacity: 0;
  transform: scale(0.985);
  transition: opacity 620ms var(--ease), transform 620ms var(--ease);
  pointer-events: none;
  display: none;
}

.how-step.is-active::before,
.how-step:hover::before {
  opacity: 1;
  transform: scale(1);
}

.how-step-header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  width: 100%;
  padding: 1.45rem 0;
  border: 0;
  color: var(--ink);
  background: transparent;
  text-align: left;
}

.how-step-title {
  max-width: 520px;
  font-size: clamp(1.35rem, 2vw, 2rem);
  font-weight: 820;
  line-height: 1.05;
  color: var(--ink);
  transition: color 360ms var(--ease);
}

.how-step:hover .how-step-title {
  color: rgba(34, 34, 40, 0.58);
}

.how-step.is-active .how-step-title,
.how-step.is-active:hover .how-step-title {
  color: var(--ink);
}

.how-step-icon {
  position: relative;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(147, 142, 253, 0.24);
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.72), transparent 40%),
    rgba(255, 255, 255, 0.3);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    0 10px 24px rgba(63, 59, 124, 0.1);
}

.how-step-icon::before,
.how-step-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 13px;
  height: 2px;
  border-radius: 999px;
  background: var(--purple-deep);
  transform: translate(-50%, -50%);
  transition: transform 620ms var(--ease), opacity 620ms var(--ease);
}

.how-step-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.how-step.is-active .how-step-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(0.2);
}

.how-step-body {
  position: relative;
  z-index: 1;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-0.45rem);
  cursor: pointer;
  transition: max-height 760ms var(--ease), opacity 620ms var(--ease), transform 760ms var(--ease);
}

.how-step-body p {
  max-width: 620px;
  margin: 0;
  padding: 0 3.6rem 1.45rem 0;
  color: rgba(77, 77, 77, 0.72);
  font-size: 1rem;
  line-height: 1.7;
}

.how-step.is-active .how-step-body {
  max-height: 320px;
  opacity: 1;
  transform: translateY(0);
}

.how-visual {
  min-width: 0;
}

.how-flip-stage {
  position: relative;
  width: min(112%, 820px);
  margin-left: auto;
  aspect-ratio: 1.18 / 1;
  min-height: 610px;
  border-radius: 26px;
  perspective: 1600px;
}

.how-flip-card {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 26px;
  transition: none;
}

.how-flip-card.is-flipped {
  transform: none;
}

.how-flip-face {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 26px;
  background:
    radial-gradient(circle at 28% 18%, rgba(147, 142, 253, 0.2), transparent 18rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(235, 232, 255, 0.58));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.7),
    0 32px 86px rgba(63, 59, 124, 0.18);
  opacity: 1;
  transition: opacity 520ms var(--ease);
}

.how-flip-face::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.2), transparent 32%),
    radial-gradient(circle at 82% 8%, rgba(147, 142, 253, 0.14), transparent 16rem);
  pointer-events: none;
}

.how-flip-face img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.how-flip-back {
  opacity: 0;
}

.how-flip-card.is-flipped .how-flip-front {
  opacity: 0;
}

.how-flip-card.is-flipped .how-flip-back {
  opacity: 1;
}

.how-flip-face.is-missing::before {
  content: "Fento";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: rgba(34, 34, 40, 0.48);
  font-size: clamp(2.5rem, 7vw, 5rem);
  font-weight: 840;
  background:
    radial-gradient(circle at 26% 22%, rgba(147, 142, 253, 0.24), transparent 20rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(221, 218, 254, 0.56));
}

.product-universe-scroll {
  position: relative;
  height: 270vh;
  min-height: 1500px;
  background:
    radial-gradient(circle at 50% 50%, rgba(147, 142, 253, 0.12), transparent 30rem),
    linear-gradient(180deg, #f5f4ee, #edeaff);
  overflow: clip;
}

.product-universe-sticky {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  background: #f5f4ee;
}

.product-universe-scroll.is-pinned .product-universe-sticky {
  position: fixed;
  z-index: 4;
}

.product-universe-scroll.is-after .product-universe-sticky {
  position: absolute;
  top: auto;
  bottom: 0;
}

.product-universe-sticky::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, 0.06), transparent 26rem),
    linear-gradient(180deg, rgba(245, 244, 238, 0.04), rgba(245, 244, 238, 0.1));
  pointer-events: none;
}

.product-universe-layout {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}

.product-universe-visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.mystery-video-shell {
  position: absolute;
  inset: 0;
  overflow: hidden;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  border: 0;
  border-radius: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(147, 142, 253, 0.18), transparent 22rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(221, 218, 254, 0.58));
  box-shadow: none;
}

.mystery-video-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 48%, rgba(245, 244, 238, 0.08), transparent 20rem),
    linear-gradient(180deg, rgba(245, 244, 238, 0.06), rgba(245, 244, 238, 0.12));
  pointer-events: none;
}

.mystery-video-shell.is-missing::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 38%, rgba(147, 142, 253, 0.26), transparent 18rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(232, 229, 255, 0.68));
}

.mystery-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: transparent;
}

.mystery-video.is-missing {
  opacity: 0;
}

.scroll-cards {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
}

.scroll-card {
  position: absolute;
  left: 50%;
  top: 50%;
  box-sizing: border-box;
  width: clamp(360px, 28vw, 460px);
  height: clamp(190px, 22vh, 240px);
  padding: 28px 32px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 28px;
  color: rgba(34, 34, 40, 0.88);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.56), rgba(255, 255, 255, 0.34)),
    rgba(255, 255, 255, 0.48);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.66),
    inset 0 -1px 0 rgba(255, 255, 255, 0.18),
    0 28px 80px rgba(63, 59, 124, 0.18);
  backdrop-filter: blur(18px) saturate(1.42);
  -webkit-backdrop-filter: blur(18px) saturate(1.42);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translate(-50%, -50%) translateY(16px);
  text-align: center;
  will-change: opacity, transform;
}

.scroll-card p {
  margin: 0;
  font-family: "Manrope", "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 650;
  line-height: 1.45;
  text-wrap: pretty;
}

.scroll-card-three {
  gap: 1.1rem;
  pointer-events: none;
}

.scroll-card-three.is-live {
  pointer-events: auto;
}

.scroll-card-button {
  width: fit-content;
  min-height: 44px;
  justify-content: center;
  margin-top: 18px;
  padding: 0.72rem 1.18rem;
  color: var(--ink);
  background:
    radial-gradient(circle at 30% 16%, rgba(255, 255, 255, 0.8), transparent 44%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.28));
}

.tilt-showcase-section {
  position: relative;
  overflow: clip;
  scroll-margin-top: calc(var(--header-height) + 1.5rem);
  padding: clamp(6.8rem, 8vw, 8.8rem) 0 clamp(6rem, 9vw, 9rem);
  background: #f5f4ee;
}

.tilt-showcase-inner {
  width: min(1540px, calc(100% - 48px));
}

.tilt-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.2rem, 1.65vw, 1.7rem);
  perspective: 1200px;
}

.tilt-feature-card {
  --tilt-rx: 0deg;
  --tilt-ry: 0deg;
  --tilt-scale: 1;
  --tilt-image-scale: 1.02;
  --tilt-overlay-y: 0px;
  --tilt-shine-x: 50%;
  --tilt-shine-y: 50%;
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: clamp(24px, 2.2vw, 32px);
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.38), transparent 16rem),
    linear-gradient(135deg, rgba(147, 142, 253, 0.35), rgba(77, 77, 77, 0.72));
  box-shadow: 0 24px 62px rgba(50, 48, 62, 0.13);
  transform: rotateX(var(--tilt-rx)) rotateY(var(--tilt-ry)) scale(var(--tilt-scale));
  transform-style: preserve-3d;
  transition: box-shadow 360ms var(--glass-ease);
  will-change: transform;
}

.tilt-feature-card.is-tilting {
  box-shadow: 0 28px 68px rgba(50, 48, 62, 0.16);
  transition: box-shadow 260ms var(--glass-ease);
}

.tilt-feature-card-large {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 5.15;
  border-radius: clamp(28px, 2.5vw, 36px);
}

.tilt-feature-card::before,
.tilt-feature-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.tilt-feature-card::before {
  background:
    linear-gradient(180deg, rgba(12, 12, 16, 0.08), rgba(12, 12, 16, 0.32) 64%, rgba(12, 12, 16, 0.5)),
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.18), transparent 18rem);
}

.tilt-feature-card::after {
  display: none;
}

.tilt-feature-card.is-tilting::after {
  opacity: 0;
}

.tilt-card-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translateZ(0) scale(var(--tilt-image-scale));
  transition: filter 360ms var(--glass-ease);
  will-change: transform;
}

.tilt-feature-card.is-tilting .tilt-card-image {
  filter: saturate(1.04) contrast(1.03);
}

.tilt-card-fallback {
  position: absolute;
  inset: 0;
  display: none;
  place-items: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(2.8rem, 8vw, 7rem);
  font-weight: 840;
  letter-spacing: 0;
}

.tilt-feature-card.is-missing .tilt-card-fallback {
  display: grid;
}

.tilt-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: grid;
  grid-template-rows: 1fr auto minmax(0.7rem, 2vw) auto 1fr;
  justify-items: center;
  align-items: center;
  padding: clamp(1rem, 1.8vw, 1.45rem);
  transform: translateZ(96px) translateY(var(--tilt-overlay-y));
  transform-style: preserve-3d;
  pointer-events: none;
  will-change: transform;
}

.tilt-feature-card:not(.tilt-feature-card-large) .tilt-card-overlay {
  grid-template-rows: 22% auto minmax(1.1rem, 2.1vw) auto 1fr;
  align-items: start;
}

.tilt-title-panel,
.tilt-description-panel {
  position: relative;
  width: fit-content;
  max-width: min(96%, 560px);
  border: 1px solid rgba(255, 255, 255, 0.34);
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 255, 255, 0.18), transparent 42%),
    linear-gradient(145deg, rgba(78, 78, 82, 0.56), rgba(48, 48, 52, 0.48));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -1px 0 rgba(0, 0, 0, 0.18),
    0 2px 3px rgba(255, 255, 255, 0.12),
    0 30px 58px rgba(10, 9, 16, 0.4),
    0 12px 24px rgba(10, 9, 16, 0.24);
  backdrop-filter: blur(16px) saturate(1.12);
  -webkit-backdrop-filter: blur(16px) saturate(1.12);
  transform-style: preserve-3d;
  will-change: transform;
}

.tilt-title-panel::before,
.tilt-description-panel::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), transparent 48%);
  pointer-events: none;
}

.tilt-title-panel {
  grid-row: 2;
  border-radius: 22px;
  padding: clamp(0.58rem, 0.85vw, 0.72rem) clamp(1rem, 1.45vw, 1.4rem);
  transform: translateZ(70px);
}

.tilt-title-panel h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.02rem, 1.25vw, 1.24rem);
  font-weight: 830;
  line-height: 1.08;
  white-space: nowrap;
}

.tilt-description-panel {
  grid-row: 4;
  border-radius: 22px;
  padding: clamp(0.72rem, 1vw, 0.95rem) clamp(0.86rem, 1.2vw, 1.08rem);
  transform: translateZ(48px);
}

.tilt-description-panel p {
  max-width: 42ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(0.78rem, 0.84vw, 0.88rem);
  font-weight: 540;
  line-height: 1.48;
  text-wrap: pretty;
}

.tilt-feature-card-large .tilt-title-panel {
  border-radius: 24px;
  padding: clamp(0.72rem, 1vw, 0.92rem) clamp(1.1rem, 1.5vw, 1.45rem);
}

.tilt-feature-card-large .tilt-title-panel h3 {
  font-size: clamp(1.25rem, 1.7vw, 1.7rem);
}

.tilt-feature-card-large .tilt-description-panel {
  max-width: min(72%, 720px);
  border-radius: 24px;
  padding: clamp(0.9rem, 1.25vw, 1.12rem) clamp(1.1rem, 1.5vw, 1.35rem);
}

.tilt-feature-card-large .tilt-description-panel p {
  max-width: 64ch;
  font-size: clamp(0.9rem, 1vw, 1rem);
  line-height: 1.52;
}

.feature-showcase-section {
  position: relative;
  overflow: clip;
  scroll-margin-top: calc(var(--header-height) + 1.5rem);
  padding: clamp(6.8rem, 8vw, 8.8rem) 0 clamp(6rem, 9vw, 9rem);
  background: #f5f4ee;
}

.feature-showcase-inner {
  width: min(1540px, calc(100% - 48px));
}

.feature-card-grid {
  display: grid;
  align-items: start;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.2rem, 1.65vw, 1.7rem);
}

.feature-media-card {
  display: grid;
  grid-template-rows: auto auto;
  gap: clamp(0.78rem, 1vw, 1rem);
  overflow: hidden;
  padding: clamp(1rem, 1.22vw, 1.25rem);
  border: 1px solid rgba(34, 34, 40, 0.11);
  border-radius: clamp(18px, 1.35vw, 22px);
  background: #ddd9d0;
  box-shadow: 0 22px 52px rgba(50, 48, 62, 0.13);
}

.feature-media-card-large {
  grid-column: 1 / -1;
}

.feature-media-frame {
  position: relative;
  overflow: hidden;
  border-radius: clamp(18px, 1.35vw, 22px);
  aspect-ratio: 16 / 5.6;
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.38), transparent 16rem),
    linear-gradient(135deg, rgba(147, 142, 253, 0.24), rgba(77, 77, 77, 0.42));
}

.feature-media-card:not(.feature-media-card-large) .feature-media-frame {
  aspect-ratio: 4 / 3;
}

.feature-media-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 12, 16, 0.04), rgba(12, 12, 16, 0.12));
  pointer-events: none;
}

.feature-media-frame img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-card-fallback {
  position: absolute;
  inset: 0;
  display: none;
  place-items: center;
  color: rgba(34, 34, 40, 0.42);
  font-size: clamp(2.8rem, 8vw, 7rem);
  font-weight: 840;
  letter-spacing: 0;
}

.feature-media-frame.is-missing .feature-card-fallback {
  display: grid;
}

.feature-card-copy {
  display: flex;
  min-height: 0;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.62rem;
  padding: 0 0 clamp(0.12rem, 0.4vw, 0.35rem);
  color: var(--ink);
}

.feature-media-card-large .feature-card-copy {
  min-height: auto;
  padding: 0 0 clamp(0.18rem, 0.5vw, 0.45rem);
}

.feature-card-copy h3 {
  margin: 0;
  color: rgba(34, 34, 40, 0.95);
  font-size: clamp(1.05rem, 1.36vw, 1.28rem);
  font-weight: 830;
  line-height: 1.08;
  white-space: nowrap;
}

.feature-media-card-large .feature-card-copy h3 {
  font-size: clamp(1.25rem, 2vw, 1.9rem);
}

.feature-card-copy p {
  max-width: 72ch;
  margin: 0;
  color: rgba(34, 34, 40, 0.7);
  font-size: clamp(0.92rem, 1.02vw, 1.08rem);
  font-weight: 540;
  line-height: 1.56;
}

.feature-media-card-large .feature-card-copy p {
  max-width: none;
  width: 100%;
  font-size: clamp(0.92rem, 1.02vw, 1.08rem);
  font-weight: 620;
  line-height: 1.52;
}

.feature-card-grid .feature-media-card:nth-child(3) .feature-card-copy p {
  font-size: clamp(0.78rem, 0.82vw, 0.88rem);
  line-height: 1.48;
}

.home-logo-marquee {
  width: 100%;
  overflow: hidden;
  padding: 36px 0;
  background: #f5f4ee;
}

.logo-marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 64px;
  padding-inline: 32px;
  animation: logoMarquee 30s linear infinite;
  will-change: transform;
}

.home-logo-marquee:hover .logo-marquee-track {
  animation-play-state: paused;
}

.logo-marquee-item {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-width: 128px;
}

.logo-marquee-item img {
  max-width: 180px;
  max-height: 52px;
  object-fit: contain;
  opacity: 0.78;
  filter: saturate(0.85) contrast(0.96);
  transition: opacity 240ms var(--glass-ease), filter 240ms var(--glass-ease), transform 240ms var(--glass-ease);
}

.logo-marquee-item:hover img {
  opacity: 1;
  filter: saturate(1) contrast(1);
  transform: translateY(-1px);
}

.logo-marquee-item.is-missing::before {
  content: attr(data-logo);
  color: rgba(34, 34, 40, 0.5);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 3.5rem;
}

.section-heading h2 {
  margin-bottom: 1.1rem;
  text-wrap: balance;
}

.section-heading p:not(.eyebrow),
.section-note {
  max-width: 720px;
  color: rgba(77, 77, 77, 0.74);
}

.compact-heading {
  margin-bottom: 2.5rem;
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 1rem;
}

.bento-card {
  position: relative;
  min-height: 320px;
  grid-column: span 2;
  padding: 1.45rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.26)),
    radial-gradient(circle at 80% 15%, rgba(147, 142, 253, 0.24), transparent 16rem);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.bento-card:hover {
  border-color: rgba(147, 142, 253, 0.58);
  box-shadow: 0 28px 80px rgba(147, 142, 253, 0.22);
}

.bento-card h3,
.bento-card p {
  position: relative;
  z-index: 2;
}

.bento-card h3 {
  max-width: 320px;
  margin-bottom: 1rem;
}

.bento-card p {
  max-width: 400px;
  color: rgba(77, 77, 77, 0.74);
}

.bento-wide {
  grid-column: span 3;
}

.card-orbit,
.card-wave,
.card-stack,
.inline-image-mark,
.card-sheen {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  width: 150px;
  height: 150px;
  border-radius: 34px;
  background: linear-gradient(135deg, rgba(147, 142, 253, 0.34), rgba(255, 255, 255, 0.5));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72), 0 20px 54px rgba(147, 142, 253, 0.18);
}

.card-orbit::before,
.card-wave::before,
.card-stack::before,
.inline-image-mark::before,
.card-sheen::before {
  content: "";
  position: absolute;
  inset: 22%;
  border: 1px solid rgba(255, 255, 255, 0.84);
  border-radius: inherit;
}

.card-wave {
  border-radius: 50%;
  background: repeating-radial-gradient(circle at 50% 50%, rgba(147, 142, 253, 0.42) 0 10px, rgba(255, 255, 255, 0.58) 10px 20px);
}

.card-stack {
  transform: rotate(-8deg);
}

.card-stack::after {
  content: "";
  position: absolute;
  inset: 18px -18px -18px 18px;
  border-radius: inherit;
  background: rgba(147, 142, 253, 0.18);
}

.inline-image-mark {
  width: 210px;
  border-radius: 999px;
  background:
    linear-gradient(90deg, rgba(147, 142, 253, 0.82), rgba(152, 204, 191, 0.42)),
    linear-gradient(145deg, rgba(255, 255, 255, 0.8), transparent);
}

.card-sheen {
  width: 220px;
  height: 110px;
  border-radius: 999px;
  transform: rotate(-14deg);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: 4rem;
  align-items: start;
}

.sticky-heading {
  position: sticky;
  top: 8rem;
  margin-bottom: 0;
}

.faq-section {
  background: #f5f4ee;
}

.faq-section .sticky-heading {
  position: relative;
  top: auto;
  padding-top: clamp(1.25rem, 3vw, 3.25rem);
}

.faq-section #faq-title {
  font-size: clamp(2.9rem, 4vw, 3.2rem);
  font-weight: 840;
  line-height: 0.94;
  letter-spacing: 0;
  color: rgba(34, 34, 40, 0.94);
  text-shadow: 0 24px 70px rgba(147, 142, 253, 0.16);
}

.faq-list {
  display: grid;
  gap: 0.85rem;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  background:
    radial-gradient(circle at 8% 18%, rgba(255, 255, 255, 0.72), transparent 28%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(236, 244, 250, 0.16)),
    rgba(255, 255, 255, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 18px 42px rgba(63, 59, 124, 0.08);
  backdrop-filter: blur(18px);
}

.faq-question {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 1.35rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 18px;
  color: var(--ink);
  background: transparent;
  text-align: left;
  font-weight: 790;
  transition: transform 360ms var(--glass-ease), color 360ms var(--glass-ease);
}

.faq-question:hover,
.faq-item.is-open .faq-question {
  color: rgba(34, 34, 40, 0.58);
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  transform: scale(1.01) translateY(-1px);
}

.faq-section .faq-question {
  color: var(--ink);
}

.faq-section .faq-question::before {
  display: none;
}

.faq-section .faq-question:hover,
.faq-section .faq-item.is-open .faq-question {
  color: rgba(34, 34, 40, 0.58);
}

.faq-section .faq-item.is-open:not(:hover) .faq-question {
  color: var(--ink);
}

.faq-question::after {
  content: "+";
  float: right;
  color: var(--purple-deep);
}

.faq-item.is-open .faq-question::after {
  content: "-";
}

.faq-answer {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 520ms var(--ease);
}

.faq-answer p {
  min-height: 0;
  margin: 0;
  padding: 0 1.4rem;
  overflow: hidden;
  color: rgba(77, 77, 77, 0.76);
  background: transparent;
  transition: padding 520ms var(--ease);
}

.faq-item.is-open .faq-answer {
  grid-template-rows: 1fr;
}

.faq-item.is-open .faq-answer p {
  padding-bottom: 1.35rem;
}

.page-hero {
  padding: 10rem 0 5rem;
  min-height: 78vh;
  display: grid;
  align-items: end;
  background:
    radial-gradient(circle at 84% 14%, rgba(147, 142, 253, 0.24), transparent 28rem),
    linear-gradient(180deg, rgba(245, 244, 235, 0.92), rgba(235, 232, 220, 0.5));
}

.page-hero-grid,
.about-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
  gap: 3rem;
  align-items: end;
}

.page-hero h1,
.about-hero h1,
.contact-copy h1 {
  margin-bottom: 1.4rem;
  font-size: 3.9rem;
  text-wrap: balance;
}

.page-hero p:not(.eyebrow),
.about-hero-card p,
.contact-copy p:not(.eyebrow) {
  color: rgba(77, 77, 77, 0.76);
  font-size: 1.15rem;
}

.product-search-panel,
.about-hero-card,
.story-card,
.value-card,
.cta-panel,
.frost-experience {
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.46);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(20px);
}

.product-search-panel {
  padding: 1.2rem;
}

.product-search-panel label {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--ink);
  font-weight: 780;
}

.search-shell input,
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(77, 77, 77, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--ink);
  outline: none;
  transition: border-color 260ms var(--ease), box-shadow 260ms var(--ease), background 260ms var(--ease);
}

.search-shell input {
  min-height: 58px;
  padding: 0 1rem;
}

.search-shell input:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(147, 142, 253, 0.72);
  box-shadow: 0 0 0 5px rgba(147, 142, 253, 0.12);
  background: rgba(255, 255, 255, 0.88);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1rem;
}

.filter-chip {
  position: relative;
  overflow: hidden;
  min-height: 38px;
  padding: 0 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.44);
  border-radius: 999px;
  color: rgba(77, 77, 77, 0.82);
  background:
    radial-gradient(circle at 22% 0%, rgba(255, 255, 255, 0.42), transparent 38%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.28), rgba(230, 241, 249, 0.12)),
    rgba(236, 244, 250, 0.18);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    inset 0 -1px 0 rgba(255, 255, 255, 0.12),
    inset 0 0 14px rgba(255, 255, 255, 0.08),
    0 12px 34px rgba(63, 59, 124, 0.08);
  backdrop-filter: blur(20px) saturate(1.5) brightness(1.06);
  -webkit-backdrop-filter: blur(20px) saturate(1.5) brightness(1.06);
}

.filter-chip.is-active,
.filter-chip:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.66);
  background:
    radial-gradient(circle at 22% 0%, rgba(255, 255, 255, 0.58), transparent 38%),
    linear-gradient(135deg, rgba(147, 142, 253, 0.66), rgba(105, 99, 216, 0.46)),
    rgba(147, 142, 253, 0.34);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.44),
    inset 0 -1px 0 rgba(67, 61, 164, 0.18),
    0 16px 42px rgba(147, 142, 253, 0.26),
    0 0 22px rgba(147, 142, 253, 0.18);
  transform: scale(1.04) translateY(-1px);
}

.product-grid-section {
  padding: 6rem 0 9rem;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.product-card {
  position: relative;
  min-height: 360px;
  padding: 1rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.28)),
    radial-gradient(circle at 72% 14%, color-mix(in srgb, var(--accent) 24%, transparent), transparent 14rem);
  box-shadow: 0 20px 56px rgba(77, 77, 77, 0.1);
  backdrop-filter: blur(18px);
}

.product-card:hover {
  border-color: rgba(147, 142, 253, 0.76);
  box-shadow: 0 28px 76px rgba(147, 142, 253, 0.24);
  transform: translateY(-8px) scale(1.018);
}

.product-visual-wrap {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 220px;
  margin-bottom: 1.05rem;
  overflow: hidden;
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.86), transparent 9rem),
    linear-gradient(145deg, rgba(147, 142, 253, 0.18), rgba(245, 244, 235, 0.82));
  cursor: pointer;
}

.product-card:hover .product-object,
.product-card:hover .product-img {
  transform: translateY(-10px) rotate(-2deg) scale(1.055);
}

.product-img {
  position: absolute;
  z-index: 2;
  max-width: 76%;
  max-height: 76%;
  object-fit: contain;
  transition: transform 480ms var(--ease), opacity 260ms var(--ease);
}

.product-img.is-missing {
  opacity: 0;
}

.has-real-product-image .product-img {
  max-width: 86%;
  max-height: 86%;
  opacity: 1;
}

.product-object {
  position: relative;
  width: 118px;
  height: 148px;
  border-radius: 30px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.76), color-mix(in srgb, var(--accent) 68%, #ffffff)),
    linear-gradient(45deg, rgba(255, 255, 255, 0.5), transparent);
  box-shadow: 0 24px 50px rgba(77, 77, 77, 0.14);
  transition: transform 520ms var(--ease);
}

.product-object::before,
.product-object::after {
  content: "";
  position: absolute;
  background: inherit;
  box-shadow: inherit;
}

.product-object.apparel::before {
  left: -28px;
  top: 28px;
  width: 42px;
  height: 60px;
  border-radius: 18px 8px 18px 18px;
  transform: rotate(22deg);
}

.product-object.apparel::after {
  right: -28px;
  top: 28px;
  width: 42px;
  height: 60px;
  border-radius: 8px 18px 18px 18px;
  transform: rotate(-22deg);
}

.product-object.headwear {
  width: 150px;
  height: 82px;
  border-radius: 80px 80px 28px 28px;
}

.product-object.headwear::before {
  left: 22px;
  bottom: -18px;
  width: 116px;
  height: 34px;
  border-radius: 50%;
}

.product-object.flat {
  width: 154px;
  height: 116px;
  border-radius: 26px;
}

.product-object.flat::before {
  inset: 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 18px;
  box-shadow: none;
}

.product-object.round {
  width: 134px;
  height: 134px;
  border-radius: 50%;
}

.product-object.box {
  width: 138px;
  height: 138px;
  border-radius: 28px;
  transform: rotate(45deg);
}

.product-card:hover .product-object.box {
  transform: translateY(-10px) rotate(38deg) scale(1.055);
}

.product-card h3 {
  margin-bottom: 0.35rem;
  font-size: 1.2rem;
  line-height: 1.08;
}

.product-category {
  margin-bottom: 1rem;
  color: rgba(77, 77, 77, 0.64);
  font-size: 0.88rem;
}

.option-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.82rem;
}

.option-row > span:first-child {
  color: rgba(77, 77, 77, 0.62);
  font-size: 0.82rem;
}

.swatches,
.modal-swatches {
  display: flex;
  gap: 0.35rem;
}

.swatch {
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  background: var(--swatch);
  box-shadow: 0 3px 10px rgba(77, 77, 77, 0.14);
}

.size-list,
.modal-sizes {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.25rem;
}

.size-range {
  color: rgba(77, 77, 77, 0.66);
  font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 390;
  line-height: 1.2;
  white-space: nowrap;
}

.size-pill,
.modal-size {
  padding: 0.18rem 0.42rem;
  border: 1px solid rgba(77, 77, 77, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.48);
  color: rgba(77, 77, 77, 0.76);
  font-size: 0.72rem;
  font-weight: 720;
}

.empty-state {
  padding: 2rem;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.48);
  text-align: center;
}

.product-hero-v2,
.product-category-section,
.product-discovery-section,
.product-value-section,
.custom-sourcing-section,
.product-steps-section,
.product-final-cta {
  position: relative;
  overflow: hidden;
}

.product-hero-v2 {
  min-height: 100dvh;
  padding: 8.5rem 0 4rem;
  display: grid;
  align-items: center;
  background:
    radial-gradient(circle at 78% 18%, rgba(147, 142, 253, 0.26), transparent 32rem),
    radial-gradient(circle at 18% 70%, rgba(159, 198, 187, 0.18), transparent 26rem),
    linear-gradient(180deg, rgba(245, 244, 235, 0.94), rgba(250, 249, 241, 0.62));
}

.product-hero-v2::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(77, 77, 77, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77, 77, 77, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(90deg, transparent, #000 16%, #000 86%, transparent);
  pointer-events: none;
}

.product-hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1380px, calc(100% - 48px));
  grid-template-columns: minmax(620px, 0.9fr) minmax(500px, 1fr);
  gap: clamp(4rem, 6vw, 6.8rem);
  align-items: center;
}

.product-hero-copy h1 {
  max-width: min(16.6em, 92vw);
  margin-bottom: 1.35rem;
  font-size: clamp(3.25rem, 3.7vw, 3.625rem);
  line-height: 1.05;
  text-wrap: balance;
}

.product-hero-copy h1 span {
  display: block;
  white-space: nowrap;
}

.product-hero-lede {
  max-width: 660px;
  margin-bottom: 1.05rem;
  color: rgba(77, 77, 77, 0.78);
  font-size: 1.22rem;
  line-height: 1.55;
}

.product-hero-support {
  width: fit-content;
  margin-bottom: 2.2rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: rgba(77, 77, 77, 0.72);
  background: transparent;
  box-shadow: none;
  font-size: 1.02rem;
  font-weight: 400;
}

.product-hero-actions {
  justify-content: flex-start;
}

.product-hero-actions .button-primary {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(147, 142, 253, 0.84), rgba(105, 99, 216, 0.58)),
    rgba(147, 142, 253, 0.54);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    inset 0 -1px 0 rgba(67, 61, 164, 0.26),
    0 14px 34px rgba(105, 99, 216, 0.26);
}

.product-hero-actions .button-primary:hover {
  color: #fff;
  background:
    linear-gradient(135deg, rgba(147, 142, 253, 0.88), rgba(105, 99, 216, 0.62)),
    rgba(147, 142, 253, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.36),
    inset 0 -1px 0 rgba(67, 61, 164, 0.28),
    0 16px 38px rgba(105, 99, 216, 0.3);
}

.product-hero-collage {
  position: relative;
  min-height: 560px;
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  grid-template-rows: repeat(6, minmax(64px, 1fr));
  gap: 0.9rem;
  perspective: 1000px;
  transform: translateX(3.2rem);
}

.product-hero-collage::before {
  content: "";
  position: absolute;
  inset: 6% 4%;
  border-radius: 42px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.78), transparent 14rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(221, 218, 254, 0.28));
  box-shadow: 0 36px 110px rgba(63, 59, 124, 0.16);
  transform: rotate(-2deg);
}

.hero-product-tile,
.hero-product-stat,
.category-entry-card,
.custom-sourcing-panel,
.product-final-panel,
.product-step,
.value-mini-card {
  border: 1px solid rgba(255, 255, 255, 0.76);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.8), transparent 42%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.24));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.76),
    0 24px 70px rgba(63, 59, 124, 0.12);
  backdrop-filter: blur(20px) saturate(1.28);
  -webkit-backdrop-filter: blur(20px) saturate(1.28);
}

.hero-product-tile {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: space-between;
  justify-items: start;
  padding: 1rem;
  overflow: hidden;
  border-radius: 28px;
  animation: float-soft 7s var(--ease) infinite;
  animation-delay: calc(var(--card-index, 0) * -900ms);
}

.hero-product-tile::before,
.category-entry-card::before {
  content: "";
  position: absolute;
  inset: auto -12% -32% -12%;
  height: 62%;
  background: radial-gradient(circle at 50% 100%, color-mix(in srgb, var(--accent) 34%, transparent), transparent 68%);
  pointer-events: none;
}

.hero-product-tile span,
.hero-product-tile strong {
  position: relative;
  z-index: 2;
}

.hero-product-tile span,
.hero-product-stat span {
  color: rgba(77, 77, 77, 0.64);
  font-size: 0.84rem;
  font-weight: 760;
}

.hero-product-tile strong,
.hero-product-stat strong {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.12;
}

.hero-product-tile .product-object {
  justify-self: center;
  align-self: center;
  transform: scale(0.82);
}

.hero-product-tile .product-object-image {
  width: clamp(128px, 11vw, 190px);
  height: clamp(104px, 10vw, 172px);
  display: grid;
  place-items: center;
  overflow: visible;
  border-radius: 999px;
  background: transparent;
  box-shadow: none;
  isolation: auto;
  transform: scale(0.94);
}

.hero-product-tile .product-object-image::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 15% -8% 6%;
  border-radius: 999px;
  background:
    radial-gradient(circle at 50% 44%, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.18) 42%, transparent 72%),
    radial-gradient(circle at 50% 58%, color-mix(in srgb, var(--accent) 30%, transparent), transparent 68%);
  box-shadow: 0 22px 48px color-mix(in srgb, var(--accent) 18%, transparent);
  filter: blur(2px);
}

.hero-product-tile .product-object-image::after {
  content: none;
}

.hero-product-tile .product-object-image img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  mix-blend-mode: darken;
  opacity: 0.96;
  filter: drop-shadow(0 18px 18px rgba(36, 35, 49, 0.14));
  -webkit-mask-image: radial-gradient(ellipse at center, #000 52%, rgba(0, 0, 0, 0.92) 66%, rgba(0, 0, 0, 0.34) 82%, transparent 94%);
  mask-image: radial-gradient(ellipse at center, #000 52%, rgba(0, 0, 0, 0.92) 66%, rgba(0, 0, 0, 0.34) 82%, transparent 94%);
}

.hero-product-tile-large .product-object-image {
  width: clamp(170px, 15vw, 250px);
  height: clamp(178px, 15.6vw, 258px);
  transform: scale(0.9);
}

.hero-product-tile-wide .product-object-image {
  width: clamp(190px, 18vw, 278px);
  height: clamp(126px, 12vw, 186px);
  transform: scale(0.88);
}

.hero-product-tile-a .product-object-image {
  width: clamp(114px, 10vw, 166px);
  height: clamp(92px, 8.5vw, 142px);
}

.hero-product-tile-b .product-object-image {
  width: clamp(116px, 9.6vw, 156px);
  height: clamp(116px, 9.6vw, 156px);
}

.hero-product-tile-b .product-object-image img {
  mix-blend-mode: normal;
  opacity: 0.86;
  -webkit-mask-image: radial-gradient(circle at center, #000 54%, rgba(0, 0, 0, 0.86) 68%, rgba(0, 0, 0, 0.3) 82%, transparent 94%);
  mask-image: radial-gradient(circle at center, #000 54%, rgba(0, 0, 0, 0.86) 68%, rgba(0, 0, 0, 0.3) 82%, transparent 94%);
}

.hero-product-tile-large {
  --card-index: 1;
  grid-column: 1 / 5;
  grid-row: 1 / 5;
  min-height: 330px;
}

.hero-product-tile-wide {
  --card-index: 2;
  grid-column: 4 / 9;
  grid-row: 4 / 7;
}

.hero-product-tile-a {
  --card-index: 3;
  grid-column: 5 / 8;
  grid-row: 1 / 3;
}

.hero-product-tile-b {
  --card-index: 4;
  grid-column: 6 / 9;
  grid-row: 2 / 4;
}

.hero-product-stat {
  position: absolute;
  z-index: 3;
  right: 4%;
  top: 7%;
  display: grid;
  gap: 0.18rem;
  max-width: 190px;
  padding: 1rem;
  border-radius: 22px;
}

.product-category-section {
  min-height: 100dvh;
  display: grid;
  align-items: center;
  padding: 7.25rem 0 3.25rem;
  background: rgba(251, 250, 243, 0.56);
}

.product-category-section .section-inner {
  width: min(1120px, calc(100% - 40px));
}

.product-category-section .section-heading {
  max-width: 1120px;
  margin-bottom: 2rem;
}

.product-category-section .section-heading h2 {
  margin-bottom: 0.9rem;
  font-size: clamp(3.25rem, 3.7vw, 3.625rem);
  line-height: 1.05;
}

.product-category-section .section-heading p:not(.eyebrow) {
  max-width: 850px;
  font-size: 1.22rem;
  line-height: 1.55;
}

.category-entry-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: minmax(182px, 1fr);
  gap: 1rem;
  width: 100%;
}

.category-entry-card {
  position: relative;
  grid-column: auto;
  display: grid;
  align-content: center;
  gap: 1.2rem;
  min-height: clamp(182px, 19vh, 220px);
  padding: 1.2rem;
  overflow: hidden;
  border-radius: 30px;
  color: inherit;
  text-align: left;
  transition: transform 340ms var(--glass-ease), box-shadow 340ms var(--glass-ease), border-color 340ms var(--glass-ease);
}

.category-entry-large,
.category-entry-wide {
  grid-column: auto;
}

.category-entry-wide {
  grid-column: 1 / -1;
}

.category-entry-card:hover,
.category-entry-card.is-active {
  border-color: rgba(147, 142, 253, 0.58);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 30px 86px rgba(147, 142, 253, 0.22);
  transform: translateY(-7px) scale(1.012);
}

.category-visual {
  position: absolute;
  inset: 50% 1rem auto auto;
  display: grid;
  place-items: center;
  width: clamp(158px, 33%, 210px);
  aspect-ratio: 1;
  border-radius: 28px;
  background:
    radial-gradient(circle at 50% 14%, rgba(255, 255, 255, 0.86), transparent 7rem),
    linear-gradient(145deg, color-mix(in srgb, var(--accent) 18%, transparent), rgba(245, 244, 235, 0.78));
  transform: translateY(-50%);
  transition: transform 420ms var(--ease);
}

.category-entry-card:hover .category-visual {
  transform: translateY(-50%) scale(1.045) rotate(-2deg);
}

.category-visual .product-object {
  transform: scale(0.72);
}

.category-copy {
  position: relative;
  z-index: 2;
  display: grid;
  max-width: calc(100% - 230px);
}

.category-copy strong {
  color: var(--ink);
  font-size: clamp(1.08rem, 1.42vw, 1.36rem);
  line-height: 1.02;
  white-space: nowrap;
}

.category-copy span {
  display: none;
  max-width: 34ch;
  color: rgba(77, 77, 77, 0.72);
  font-size: 0.94rem;
}

.product-discovery-section {
  padding: 7.5rem 0 7.5rem;
  scroll-margin-top: 110px;
  background:
    radial-gradient(circle at 100% 16%, rgba(147, 142, 253, 0.16), transparent 30rem),
    linear-gradient(180deg, rgba(245, 244, 235, 0.18), rgba(235, 232, 220, 0.36));
}

.product-discovery-header {
  display: block;
  margin-bottom: 2.2rem;
}

.product-discovery-header .section-heading {
  margin-bottom: 0;
}

.product-discovery-header h2 {
  font-size: clamp(3rem, 5vw, 5rem);
}

.product-discovery-section .product-filter-panel {
  width: 100%;
  padding: 0.72rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  box-shadow: 0 18px 60px rgba(63, 59, 124, 0.08);
  backdrop-filter: blur(18px) saturate(1.24);
  -webkit-backdrop-filter: blur(18px) saturate(1.24);
}

.product-discovery-section .product-search-panel {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.85rem 1rem;
  align-items: center;
  width: 100%;
  padding: 0.95rem 1.1rem 0.9rem;
}

.product-discovery-section .product-search-panel label {
  margin-bottom: 0;
  white-space: nowrap;
}

.product-discovery-section .search-shell {
  min-width: 0;
}

.product-discovery-section .search-shell input {
  min-height: 48px;
}

.product-discovery-section .filter-row {
  grid-column: 1 / -1;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.42rem;
  margin-top: 0;
  overflow-x: auto;
  padding-bottom: 0.1rem;
}

.product-discovery-section .filter-chip {
  flex: 0 0 auto;
  min-height: 34px;
  padding: 0 0.7rem;
  font-size: 0.92rem;
}

.product-discovery-rows {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.2rem;
}

.product-discovery-row {
  min-width: 0;
}

.discovery-row-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.discovery-row-heading .eyebrow {
  margin-bottom: 0.45rem;
}

.discovery-row-heading h3 {
  margin-bottom: 0;
  font-size: clamp(1.75rem, 3vw, 2.8rem);
}

.discovery-row-heading > span {
  color: rgba(77, 77, 77, 0.62);
  font-size: 0.9rem;
  font-weight: 760;
  white-space: nowrap;
}

.discovery-card-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(248px, 282px);
  gap: 1rem;
  padding: 0.35rem 0.2rem 1.15rem;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  overscroll-behavior-inline: contain;
}

.discovery-card-track::-webkit-scrollbar {
  height: 8px;
}

.discovery-card-track::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: rgba(147, 142, 253, 0.32);
}

.discovery-card-track .product-card {
  scroll-snap-align: start;
}

.product-card {
  display: flex;
  flex-direction: column;
}

.product-card:focus-visible,
.category-entry-card:focus-visible {
  outline: 3px solid rgba(147, 142, 253, 0.42);
  outline-offset: 4px;
}

.product-card-meta {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 0.8rem;
}

.product-card-meta h3 {
  margin-bottom: 0.35rem;
}

.product-price {
  flex: 0 0 auto;
  margin: 0;
  padding: 0.35rem 0.5rem;
  border: 1px solid rgba(147, 142, 253, 0.18);
  border-radius: 999px;
  color: var(--purple-deep);
  background: rgba(221, 218, 254, 0.24);
  font-size: 0.8rem;
  font-weight: 820;
  white-space: nowrap;
}

.page-product .product-discovery-section {
  padding: 8.25rem 0 6rem;
  scroll-margin-top: 112px;
  overflow: visible;
  color: var(--ink);
  background: rgba(251, 250, 243, 0.62);
}

.page-product .product-discovery-section::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(77, 77, 77, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(77, 77, 77, 0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.26), transparent 40rem);
}

@media (max-width: 1799px) and (min-width: 1181px) {
  .page-product .product-discovery-section {
    padding-top: 13rem;
  }
}

.product-catalog-shell {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1900px, calc(100% - 80px));
  grid-template-columns: minmax(210px, 260px) minmax(0, 1fr);
  gap: clamp(2rem, 3vw, 3rem);
  align-items: start;
}

.product-catalog-sidebar {
  position: sticky;
  top: 122px;
  display: grid;
  gap: 2rem;
  min-width: 0;
  overflow: visible;
  padding-top: 0.25rem;
}

.catalog-sidebar-heading {
  display: grid;
  width: max-content;
  gap: 0.55rem;
}

.catalog-sidebar-heading p {
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
  gap: 0.18rem;
  width: max-content;
  margin: 0;
  color: rgba(77, 77, 77, 0.68);
  font-family: "SF Pro Text", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: 0.94rem;
  font-weight: 330;
  white-space: nowrap;
}

.catalog-sidebar-heading h1 {
  margin: 0;
  color: var(--ink);
  font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: clamp(1.32rem, 1.34vw, 1.72rem);
  font-weight: 330;
  line-height: 1.08;
  letter-spacing: 0;
  white-space: nowrap;
}

.catalog-sidebar-heading h1.is-single-line-title {
  white-space: nowrap;
}

.catalog-breadcrumb-reset {
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  font-weight: inherit;
  text-align: left;
  cursor: pointer;
  transition: color 180ms var(--ease);
}

.catalog-breadcrumb-reset:hover,
.catalog-breadcrumb-reset:focus-visible {
  color: var(--ink);
}

.catalog-breadcrumb-reset:focus-visible,
.catalog-collection-item:focus-visible {
  outline: 2px solid rgba(147, 142, 253, 0.62);
  outline-offset: 3px;
}

.catalog-breadcrumb-separator {
  color: rgba(77, 77, 77, 0.48);
}

@media (min-width: 1181px) {
  .page-product .catalog-sidebar-heading {
    margin-top: -2rem;
  }
}

.catalog-nav-group {
  display: grid;
  gap: 0.24rem;
}

.catalog-nav-group h2 {
  margin: 0 0 0.48rem;
  color: var(--ink);
  font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: 1.05rem;
  line-height: 1.15;
  font-weight: 330;
}

.catalog-nav-category {
  display: grid;
  gap: 0.24rem;
}

.catalog-nav-back,
.catalog-nav-item,
.catalog-subnav-item {
  width: fit-content;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: rgba(77, 77, 77, 0.78);
  background: transparent;
  font-family: "SF Pro Text", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: 1.02rem;
  font-weight: 330;
  line-height: 1.45;
  text-align: left;
  transition: color 180ms var(--ease), transform 180ms var(--ease);
}

.catalog-nav-back {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.catalog-nav-back span[aria-hidden="true"] {
  font-size: 1.32rem;
  line-height: 1;
}

.catalog-nav-item.is-active,
.catalog-subnav-item.is-active,
.catalog-nav-category.is-open > .catalog-nav-item,
.catalog-nav-back.is-active,
.catalog-nav-back:hover,
.catalog-nav-item:hover,
.catalog-subnav-item:hover {
  color: var(--ink);
}

.catalog-nav-back:hover,
.catalog-nav-item:hover,
.catalog-subnav-item:hover {
  transform: translateX(2px);
}

.catalog-subnav {
  display: grid;
  gap: 0.12rem;
  padding-left: 1.2rem;
}

.catalog-subnav-item {
  color: rgba(77, 77, 77, 0.68);
  font-size: 0.96rem;
  font-weight: 330;
}

.catalog-collections {
  margin-top: 1rem;
}

.catalog-collection-item {
  width: fit-content;
  padding: 0;
  border: 0;
  color: rgba(77, 77, 77, 0.72);
  background: transparent;
  font-family: "SF Pro Text", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: 0.98rem;
  font-weight: 330;
  line-height: 1.45;
  text-align: left;
  cursor: pointer;
  transition: color 180ms var(--ease), transform 180ms var(--ease);
}

.catalog-collection-item:hover,
.catalog-collection-item.is-active {
  color: var(--ink);
}

.catalog-collection-item:hover {
  transform: translateX(2px);
}

.product-catalog-main {
  min-width: 0;
}

.product-catalog-topline {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2rem;
  margin-bottom: 2rem;
}

.product-catalog-breadcrumb {
  margin-bottom: 0.32rem;
  color: rgba(245, 244, 235, 0.68);
  font-size: 0.94rem;
  font-weight: 520;
}

.product-catalog-topline h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(1.65rem, 1.9vw, 2.25rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.product-catalog-sort {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--ink);
  font-size: 0.98rem;
  white-space: nowrap;
}

.catalog-sort-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.34rem;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.catalog-sort-trigger strong {
  color: var(--ink);
  font-weight: inherit;
}

.catalog-sort-trigger span[aria-hidden="true"] {
  display: inline-block;
  transform: translateY(-2px);
  color: var(--ink);
  font-size: 0.95rem;
  line-height: 1;
}

.catalog-sort-menu {
  position: absolute;
  top: calc(100% + 0.6rem);
  right: 0;
  z-index: 4;
  display: grid;
  min-width: 178px;
  padding: 0.45rem;
  border: 1px solid rgba(147, 142, 253, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 18px 44px rgba(34, 34, 40, 0.12);
  backdrop-filter: blur(18px) saturate(1.22);
  -webkit-backdrop-filter: blur(18px) saturate(1.22);
}

.catalog-sort-menu[hidden] {
  display: none;
}

.catalog-sort-menu button {
  padding: 0.68rem 0.8rem;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: rgba(77, 77, 77, 0.78);
  font-size: 0.94rem;
  font-weight: 560;
  text-align: left;
  cursor: pointer;
}

.catalog-sort-menu button:hover,
.catalog-sort-menu button:focus-visible {
  outline: 0;
  color: var(--ink);
  background: rgba(147, 142, 253, 0.12);
}

.product-catalog-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 2.45rem 2rem;
}

.product-catalog-grid .product-card {
  display: grid;
  grid-template-rows: auto 3.95rem 1.25rem 4.25rem 1.25rem 1.9rem;
  min-height: auto;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.product-catalog-grid .product-card:hover {
  border-color: transparent;
  box-shadow: none;
  transform: translateY(-4px);
}

.product-catalog-grid .product-card:focus-visible {
  outline: 2px solid rgba(147, 142, 253, 0.82);
  outline-offset: 8px;
}

.product-catalog-grid .product-visual-wrap {
  min-height: 0;
  aspect-ratio: 1 / 1;
  margin-bottom: 0;
  border-radius: 7px;
  background:
    radial-gradient(circle at 52% 12%, rgba(255, 255, 255, 0.92), transparent 8rem),
    linear-gradient(145deg, rgba(244, 244, 244, 0.95), rgba(226, 226, 226, 0.86));
}

.product-catalog-grid .product-card-badge {
  position: absolute;
  top: 0.48rem;
  left: 0.48rem;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 0.18rem 0.44rem;
  border-radius: 7px;
  color: #fff;
  background: #111;
  font-family: "SF Pro Text", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 720;
  line-height: 1;
  pointer-events: none;
}

.product-catalog-grid .product-object {
  width: clamp(92px, 40%, 146px);
  height: clamp(112px, 47%, 176px);
}

.product-catalog-grid .has-real-product-image .product-img {
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  border-radius: inherit;
  object-fit: cover;
  mix-blend-mode: normal;
  filter: none;
}

.product-catalog-grid .has-real-product-image .product-visual-wrap {
  background: transparent;
}

.product-catalog-grid .has-real-product-image .product-visual-wrap::after {
  display: none;
}

.product-catalog-grid .has-real-product-image:hover .product-img {
  transform: translateY(-4px) scale(1.012);
}

.product-catalog-grid [data-product-id="catalog-63"].has-real-product-image .product-img {
  background: #fff;
  filter: brightness(1.03) contrast(1.08);
}

.product-catalog-grid .product-object.round,
.product-catalog-grid .product-object.box {
  width: clamp(108px, 44%, 156px);
  height: clamp(108px, 44%, 156px);
}

.product-catalog-grid .product-card-meta {
  display: block;
  min-height: 3.95rem;
  padding-top: 0.92rem;
}

.product-catalog-grid .product-card h3 {
  display: -webkit-box;
  width: 100%;
  margin: 0;
  overflow: hidden;
  color: var(--ink);
  font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: clamp(1rem, 1.05vw, 1.18rem);
  font-weight: 390;
  line-height: 1.12;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-catalog-grid [data-product-id="catalog-183"] h3 {
  -webkit-line-clamp: 3;
}

.product-catalog-grid [data-product-id="catalog-183"] {
  grid-template-rows: auto 5.15rem 1.25rem 4.25rem 1.25rem 1.9rem;
}

.product-catalog-grid [data-product-id="catalog-183"] .product-card-meta {
  min-height: 5.15rem;
}

.product-catalog-grid .product-card.is-card-compact-detail .option-row {
  display: none;
}

.product-catalog-grid .product-card.is-card-compact-detail .product-price {
  max-width: 100%;
  white-space: normal;
}

.product-catalog-grid .product-card-sku,
.product-catalog-grid .option-row > span:first-child {
  color: rgba(77, 77, 77, 0.56);
  font-family: "SF Pro Text", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 330;
  line-height: 18px;
}

.product-catalog-grid .product-card-sku {
  margin: 0;
}

.product-catalog-grid .product-price {
  align-self: start;
  justify-self: start;
  width: fit-content;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: rgba(77, 77, 77, 0.56);
  background: transparent;
  box-shadow: none;
  font-family: "SF Pro Text", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 330;
  line-height: 18px;
  letter-spacing: 0;
}

.product-catalog-grid .option-row {
  align-items: start;
  min-height: 1.25rem;
  margin-top: 0;
}

.product-catalog-grid .product-card-meta + .option-row {
  min-height: 4.25rem;
  padding-top: 0.12rem;
}

.product-catalog-grid .product-card-sku + .option-row {
  min-height: 4.25rem;
  padding-top: 0.12rem;
}

.product-catalog-grid .size-pill {
  border-color: rgba(77, 77, 77, 0.1);
  background: rgba(255, 255, 255, 0.62);
  color: rgba(77, 77, 77, 0.66);
  font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-weight: 390;
}

.product-catalog-grid .swatch {
  border-color: rgba(255, 255, 255, 0.72);
  box-shadow: 0 4px 12px rgba(34, 34, 40, 0.1);
}

.product-catalog-grid .swatches {
  flex-wrap: wrap;
  justify-content: flex-end;
  max-width: calc((18px * 8) + (0.35rem * 7));
  line-height: 0;
}

.product-catalog-grid .size-range {
  color: rgba(77, 77, 77, 0.66);
  font-size: 0.78rem;
  font-weight: 390;
}

.product-catalog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin-top: 4rem;
  color: rgba(77, 77, 77, 0.78);
  font-size: 1rem;
}

.catalog-page-button,
.catalog-page-input {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(77, 77, 77, 0.12);
  border-radius: 5px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  text-align: center;
}

.catalog-page-button {
  font-size: 1.8rem;
  line-height: 1;
  transition: background 180ms var(--ease), color 180ms var(--ease), transform 180ms var(--ease), opacity 180ms var(--ease);
}

.catalog-page-button:not(:disabled):hover {
  background: rgba(147, 142, 253, 0.14);
  transform: translateY(-1px);
}

.catalog-page-button:disabled {
  cursor: default;
  opacity: 0.28;
}

.catalog-page-input {
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  font-weight: 650;
}

.product-catalog-pagination span {
  color: rgba(77, 77, 77, 0.72);
}

.product-catalog-pagination strong {
  color: var(--ink);
}

.page-product .product-discovery-section .empty-state {
  margin-top: 2rem;
  color: rgba(77, 77, 77, 0.78);
  background: rgba(255, 255, 255, 0.62);
}


.product-value-section {
  padding: clamp(4.5rem, 7vw, 6.5rem) 0;
  background: rgba(251, 250, 243, 0.62);
}

.product-value-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.8fr);
  gap: clamp(2rem, 7vw, 6rem);
  align-items: center;
}

.product-value-copy h2 {
  max-width: 620px;
  margin-bottom: 1.2rem;
  font-size: clamp(3.25rem, 3.7vw, 3.625rem);
  line-height: 1.05;
}

.product-value-copy p:not(.eyebrow) {
  max-width: 700px;
  color: rgba(77, 77, 77, 0.76);
  font-size: 1.22rem;
  line-height: 1.55;
}

.value-proof-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.8rem;
}

.value-proof-row span {
  padding: 0.6rem 0.8rem;
  border: 1px solid rgba(147, 142, 253, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.52);
  color: rgba(34, 34, 40, 0.76);
  font-size: 0.9rem;
  font-weight: 780;
}

.value-card-stack {
  position: relative;
  min-height: 430px;
}

.value-mini-card {
  position: absolute;
  display: grid;
  place-items: center;
  width: min(280px, 70%);
  aspect-ratio: 1 / 1;
  min-height: 0;
  overflow: hidden;
  padding: 0;
  border-radius: 30px;
  animation: float-soft 8s var(--ease) infinite;
}

.value-mini-card img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: contain;
  object-position: center;
}

.value-mini-card:nth-child(1) {
  top: 0;
  left: 4%;
  transform: rotate(-6deg);
}

.value-mini-card:nth-child(2) {
  top: 30%;
  right: 0;
  animation-delay: -2s;
}

.value-mini-card:nth-child(3) {
  left: 18%;
  bottom: 0;
  animation-delay: -4s;
}

.value-mini-card .product-object {
  transform: scale(0.78);
}

.value-mini-card span {
  color: var(--ink);
  font-weight: 840;
}

.custom-sourcing-section {
  padding: 5.5rem 0 6rem;
  scroll-margin-top: 110px;
}

.custom-sourcing-section .section-inner {
  width: min(1320px, calc(100% - 40px));
}

.custom-sourcing-panel {
  display: block;
  padding: clamp(2.25rem, 4.4vw, 4rem);
  border-radius: 36px;
  background:
    radial-gradient(circle at 86% 18%, rgba(147, 142, 253, 0.24), transparent 25rem),
    linear-gradient(135deg, rgba(255, 255, 255, 0.64), rgba(245, 244, 235, 0.36));
}

.custom-sourcing-panel > div {
  max-width: 1120px;
}

.custom-sourcing-panel h2,
.product-final-panel h2 {
  max-width: 820px;
  margin-bottom: 1rem;
  font-size: clamp(2.4rem, 4.6vw, 4.8rem);
}

.custom-sourcing-panel p:not(.eyebrow),
.product-final-panel p {
  max-width: 760px;
  color: rgba(77, 77, 77, 0.76);
  font-size: 1.05rem;
  line-height: 1.65;
}

.custom-sourcing-panel h2 {
  max-width: 1120px;
  font-size: clamp(3.25rem, 3.7vw, 3.625rem);
  line-height: 1.05;
}

.custom-sourcing-panel h2 span {
  display: block;
  white-space: nowrap;
}

.custom-sourcing-panel p:not(.eyebrow) {
  max-width: 1080px;
  font-size: 1.22rem;
  line-height: 1.55;
}

.custom-sourcing-panel .button {
  width: fit-content;
  margin-top: 1.55rem;
}

.product-steps-section {
  padding: 5.5rem 0 6rem;
  background: rgba(245, 244, 235, 0.46);
}

.product-step-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr 1.22fr;
  gap: 1rem;
}

#product-steps-title {
  max-width: 920px;
  font-size: clamp(3.25rem, 3.7vw, 3.625rem);
  line-height: 1.05;
}

#product-steps-title span {
  display: block;
}

.product-step {
  min-height: 220px;
  padding: 1.35rem;
  border-radius: 28px;
}

.product-step span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 2.2rem;
  border-radius: 50%;
  color: #fff;
  background: var(--purple);
  font-size: 0.86rem;
  font-weight: 860;
}

.product-step h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(1.35rem, 2vw, 2rem);
}

.product-step p {
  max-width: 34ch;
  color: rgba(77, 77, 77, 0.72);
}

.product-final-cta {
  padding: 5.5rem 0 8rem;
}

.product-final-panel {
  display: grid;
  justify-items: center;
  max-width: var(--max);
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: 38px;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(147, 142, 253, 0.24), transparent 24rem),
    linear-gradient(145deg, rgba(255, 255, 255, 0.62), rgba(255, 255, 255, 0.24));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.78),
    0 32px 90px rgba(63, 59, 124, 0.14);
}

.product-final-panel h2 {
  max-width: none;
  margin-bottom: 1rem;
  font-size: clamp(3.25rem, 3.7vw, 3.625rem);
  line-height: 1.05;
  white-space: nowrap;
}

.product-final-panel p:not(.eyebrow) {
  max-width: none;
  margin-bottom: 1.8rem;
  font-size: 1.22rem;
  line-height: 1.55;
  white-space: nowrap;
}

.product-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1.2rem;
  opacity: 0;
  pointer-events: none;
  transition: none;
}

.product-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(34, 34, 40, 0.36);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.modal-card {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(420px, 520px) minmax(280px, 340px);
  align-items: start;
  justify-content: center;
  gap: clamp(2.6rem, 4vw, 4.2rem);
  width: min(1120px, calc(100vw - 40px));
  max-height: calc(100dvh - 40px);
  overflow: auto;
  padding: clamp(1.2rem, 1.6vw, 1.45rem);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 34px;
  background: rgba(245, 244, 235, 0.84);
  box-shadow: 0 34px 110px rgba(34, 34, 40, 0.24);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
}

.modal-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  z-index: 3;
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  min-height: 0;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 50%;
  color: rgba(34, 34, 40, 0.68);
  background: rgba(255, 255, 255, 0.38);
  font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: 1.55rem;
  font-weight: 330;
  line-height: 1;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  transition: color 180ms var(--ease), background 180ms var(--ease);
}

.modal-close:hover {
  color: var(--ink);
  background: rgba(147, 142, 253, 0.12);
  transform: none;
}

.modal-close:focus-visible {
  outline: 0;
  color: var(--ink);
  background: rgba(147, 142, 253, 0.12);
  transform: none;
}

.modal-close::before {
  display: none;
}

.modal-visual-shell {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  place-items: center;
  gap: 0.9rem;
  width: 100%;
  aspect-ratio: auto;
  min-height: min(600px, calc(100dvh - 104px));
  overflow: visible;
  border-radius: 26px;
  background: transparent;
}

.modal-visual-shell.has-real-image {
  background: transparent;
}

@media (min-width: 861px) {
  .page-product .modal-visual-shell {
    transform: translateX(-4.8rem);
  }
}

.modal-visual {
  align-self: start;
  display: grid;
  place-items: center;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 26px;
  background:
    radial-gradient(circle at 50% 10%, rgba(255, 255, 255, 0.88), transparent 12rem),
    linear-gradient(145deg, rgba(147, 142, 253, 0.2), rgba(255, 255, 255, 0.38));
  transition: none;
}

.modal-visual.has-real-image {
  background: transparent;
}

.modal-gallery-frame {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  transition: none;
}

.modal-product-img {
  position: relative;
  z-index: 2;
  width: min(100%, 460px);
  height: min(100%, 460px);
  object-fit: contain;
  filter: drop-shadow(0 22px 30px rgba(34, 34, 40, 0.12));
  transition: none;
}

.modal-gallery-frame.has-real-image {
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  border-radius: inherit;
  transform: none;
}

.modal-gallery-frame.has-real-image::before {
  display: none;
}

.modal-gallery-frame.has-real-image .modal-product-img {
  position: absolute;
  inset: 50% auto auto 50%;
  display: block;
  width: 100%;
  height: 100% !important;
  min-width: 0;
  min-height: 0;
  max-height: 100%;
  border-radius: inherit;
  object-fit: cover;
  object-position: center center;
  mix-blend-mode: normal;
  opacity: 1;
  filter: none;
  -webkit-mask-image: none;
  mask-image: none;
  transform: translate(-50%, -50%);
}

.modal-gallery-frame.has-real-image::after {
  display: none;
}

.modal-gallery-frame::after {
  content: "";
  position: absolute;
  inset: 16% 12% auto auto;
  width: 34%;
  aspect-ratio: 1;
  border-radius: 28%;
  background: color-mix(in srgb, var(--accent) 16%, transparent);
  filter: blur(18px);
  opacity: 0.7;
  transform: translateZ(-12px);
}

.modal-gallery-frame-1 {
  transform: none;
}

.modal-gallery-frame-2 {
  transform: none;
}

.modal-gallery-frame-3 {
  transform: none;
}

.modal-gallery-frame-4 {
  transform: none;
}

.modal-visual .product-object {
  width: clamp(176px, 54%, 240px);
  height: clamp(210px, 64%, 286px);
}

.modal-gallery-controls {
  position: static;
  z-index: 8;
  grid-row: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
}

.modal-gallery-arrow {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.64);
  border-radius: 999px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.56), rgba(221, 218, 254, 0.26)),
    rgba(255, 255, 255, 0.42);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.72),
    0 12px 26px rgba(34, 34, 40, 0.1);
  font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: 1.2rem;
  font-weight: 390;
  line-height: 1;
  cursor: pointer;
  transition: transform 220ms var(--ease), opacity 220ms var(--ease), box-shadow 220ms var(--ease);
}

.modal-gallery-arrow:not(:disabled):hover {
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 16px 34px rgba(147, 142, 253, 0.18);
  transform: translateY(-1px) scale(1.04);
}

.modal-gallery-arrow:disabled {
  cursor: default;
  opacity: 0.34;
}

.modal-gallery-count {
  min-width: 3.2rem;
  color: rgba(77, 77, 77, 0.58);
  font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: 0.82rem;
  font-weight: 390;
  text-align: center;
}

.modal-content {
  align-self: start;
  width: min(100%, 304px);
  max-width: 304px;
  padding: clamp(0.2rem, 0.6vw, 0.4rem) 0 1rem;
}

.modal-content h2 {
  margin: 0 0 1.1rem;
  font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: clamp(1.55rem, 2vw, 2.05rem);
  font-weight: 390;
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: pretty;
}

.modal-content p,
.modal-content li,
.modal-product-detail h3 {
  color: rgba(77, 77, 77, 0.76);
  font-family: "SF Pro Text", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: clamp(0.95rem, 0.95vw, 1.05rem);
  font-weight: 330;
  line-height: 1.45;
}

.modal-content .modal-swatches {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 0.46rem;
  width: 100%;
  margin: 0 0 1.15rem;
}

.product-modal.is-custom-product-detail [data-modal-colors],
.product-modal.is-custom-product-detail .modal-size-guide-line,
.product-modal.is-custom-product-detail .modal-print-line,
.product-modal.is-custom-product-detail .modal-fulfillment {
  display: none !important;
}

.modal-swatch {
  width: 28px;
  height: 28px;
  border-color: rgba(255, 255, 255, 0.92);
  cursor: pointer;
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease), transform 180ms var(--ease);
}

.modal-swatch:hover,
.modal-swatch.is-active {
  border-color: rgba(34, 34, 40, 0.72);
  box-shadow:
    0 0 0 2px rgba(245, 244, 235, 0.9),
    0 0 0 4px rgba(34, 34, 40, 0.24);
  transform: scale(1.03);
}

.modal-size-guide-line,
.modal-print-line,
.modal-price,
.modal-fulfillment {
  width: 100%;
  margin: 0;
}

.modal-size-guide-line {
  margin-bottom: 0.78rem;
}

.modal-print-line {
  margin-bottom: 1.15rem;
}

.modal-size-guide-line a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.24em;
  transition: color 180ms var(--ease);
}

.modal-size-guide-line a:hover,
.modal-size-guide-line a:focus-visible {
  color: #938efd;
  outline: 0;
}

.modal-price {
  font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-weight: 390;
}

.modal-print-line a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 0.88rem;
  border: 1px solid rgba(255, 255, 255, 0.46);
  border-radius: 999px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(147, 142, 253, 0.82), rgba(105, 99, 216, 0.56)),
    rgba(147, 142, 253, 0.5);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    0 10px 24px rgba(105, 99, 216, 0.18);
  font-family: "SF Pro Text", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms var(--ease), background 180ms var(--ease), border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}

.modal-print-line a:hover,
.modal-print-line a:focus-visible {
  outline: 0;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.68);
  background:
    linear-gradient(135deg, rgba(154, 150, 255, 0.9), rgba(119, 113, 244, 0.66)),
    rgba(147, 142, 253, 0.62);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.48),
    0 12px 28px rgba(105, 99, 216, 0.22);
  transform: translateY(-1px);
}

.modal-content .modal-price {
  margin-bottom: 0.45rem;
  color: var(--ink);
  font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: clamp(1.55rem, 2vw, 2.05rem);
  font-style: normal;
  font-weight: 390;
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: pretty;
}

.modal-fulfillment {
  margin-bottom: 1.45rem;
}

.modal-product-detail h3 {
  margin: 0 0 0.54rem;
  color: var(--ink);
}

.modal-product-detail ul {
  display: grid;
  gap: 0.3rem;
  margin: 0;
  padding-left: 1.05rem;
}

.modal-custom-detail {
  display: grid;
  gap: 1rem;
  width: 100%;
  margin-top: 0.25rem;
}

.modal-custom-detail p {
  margin: 0;
  color: rgba(77, 77, 77, 0.76);
  font-family: "SF Pro Text", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: clamp(0.95rem, 0.95vw, 1.05rem);
  font-weight: 330;
  line-height: 1.45;
}

.modal-custom-detail strong {
  color: var(--ink);
  font-weight: 560;
}

.modal-custom-divider {
  width: 100%;
  height: 1px;
  margin-top: 0.1rem;
  background: rgba(77, 77, 77, 0.22);
}

.modal-custom-detail .modal-custom-moq {
  margin-top: -0.1rem;
}

.page-product .product-catalog-grid .size-pill,
.page-product .modal-options .modal-size {
  font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-weight: 390;
}

.product-detail-popover-layer {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: grid;
  place-items: center;
  padding: 1.2rem;
}

.product-detail-popover-layer[hidden] {
  display: none;
}

.product-detail-popover {
  position: relative;
  width: min(860px, calc(100vw - 40px));
  max-height: min(720px, calc(100dvh - 56px));
  overflow: auto;
  padding: clamp(1.35rem, 2.2vw, 2rem);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 28px;
  background: rgba(245, 244, 235, 0.92);
  box-shadow: 0 30px 92px rgba(34, 34, 40, 0.22);
  backdrop-filter: blur(24px) saturate(1.12);
  -webkit-backdrop-filter: blur(24px) saturate(1.12);
}

.product-detail-popover:has(.print-method-panel.is-compact) {
  width: min(390px, calc(100vw - 40px));
}

.product-detail-popover-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  color: rgba(34, 34, 40, 0.68);
  background: rgba(255, 255, 255, 0.38);
  font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: 1.55rem;
  font-weight: 330;
  line-height: 1;
  cursor: pointer;
}

.product-detail-popover-close:hover,
.product-detail-popover-close:focus-visible {
  outline: 0;
  color: var(--ink);
  background: rgba(147, 142, 253, 0.12);
}

.size-guide-panel h3,
.print-method-panel h3,
.print-method-card h4 {
  margin: 0;
  color: var(--ink);
  font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-weight: 390;
  line-height: 1.1;
}

.size-guide-panel h3,
.print-method-panel h3 {
  margin-bottom: 1.35rem;
  padding-right: 3rem;
  font-size: clamp(1.45rem, 2vw, 2rem);
}

.size-guide-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(77, 77, 77, 0.1);
  border-radius: 18px;
}

.size-guide-table {
  width: 100%;
  min-width: 660px;
  border-collapse: collapse;
  color: rgba(77, 77, 77, 0.78);
  font-family: "SF Pro Text", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: clamp(0.9rem, 1vw, 1rem);
  font-weight: 330;
}

.size-guide-table th,
.size-guide-table td {
  padding: 1rem 1.15rem;
  border-bottom: 1px solid rgba(77, 77, 77, 0.09);
  text-align: left;
}

.size-guide-table thead th {
  background: rgba(255, 255, 255, 0.34);
  color: rgba(77, 77, 77, 0.7);
  font-weight: 390;
}

.size-guide-table tbody th {
  color: var(--ink);
  font-weight: 390;
}

.size-guide-table tr:last-child th,
.size-guide-table tr:last-child td {
  border-bottom: 0;
}

.print-method-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid rgba(77, 77, 77, 0.11);
  border-radius: 18px;
  overflow: hidden;
}

.print-method-panel.is-compact .print-method-grid {
  grid-template-columns: minmax(0, 1fr);
}

.print-method-card {
  min-height: 280px;
  padding: clamp(1rem, 1.4vw, 1.35rem);
  border-right: 1px solid rgba(77, 77, 77, 0.11);
  background: rgba(255, 255, 255, 0.22);
}

.print-method-panel.is-compact .print-method-card {
  border-right: 0;
}

.print-method-card:last-child {
  border-right: 0;
}

.print-method-card.is-recommended {
  background: rgba(255, 255, 255, 0.22);
  box-shadow: none;
}

.print-method-badge {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.28rem 0.58rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 390;
  text-transform: none;
}

.print-method-card h4 {
  margin-bottom: 0.8rem;
  font-size: clamp(1.12rem, 1.3vw, 1.35rem);
}

.print-method-card p,
.print-method-card li {
  color: rgba(77, 77, 77, 0.76);
  font-family: "SF Pro Text", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: clamp(0.86rem, 0.9vw, 0.96rem);
  font-weight: 330;
  line-height: 1.45;
}

.print-method-card p {
  margin: 0;
}

.print-method-card ul {
  display: grid;
  gap: 0.62rem;
  margin: 0;
  padding-left: 1rem;
}

@media (max-width: 640px) {
  .product-modal {
    align-items: start;
    padding: 0.75rem;
    overflow: auto;
  }

  .modal-card {
    width: min(100%, 430px);
    max-height: none;
    padding: 0.85rem;
    border-radius: 26px;
  }

  .modal-close {
    top: 0.72rem;
    right: 0.72rem;
    width: 38px;
    height: 38px;
    min-height: 0;
    padding: 0;
  }

  .modal-visual-shell {
    min-height: auto;
    border-radius: 20px;
    transform: none;
  }

  .modal-visual {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
  }

  .modal-visual .product-object {
    width: clamp(142px, 54%, 186px);
    height: clamp(170px, 64%, 224px);
  }

  .modal-gallery-arrow {
    width: 38px;
    height: 38px;
  }

  .modal-content h2 {
    font-size: clamp(1.42rem, 7vw, 1.85rem);
  }

  .modal-content .modal-price {
    font-size: clamp(1.42rem, 7vw, 1.85rem);
  }

  .product-detail-popover-layer {
    position: fixed;
    padding: 0.75rem;
  }

  .product-detail-popover {
    width: min(100%, 430px);
    max-height: calc(100dvh - 32px);
    padding: 1rem;
    border-radius: 22px;
  }

  .size-guide-panel h3,
  .print-method-panel h3 {
    margin-bottom: 1rem;
    font-size: 1.35rem;
  }

  .size-guide-table {
    min-width: 560px;
  }

  .size-guide-table th,
  .size-guide-table td {
    padding: 0.78rem 0.88rem;
  }

  .print-method-grid {
    grid-template-columns: 1fr;
  }

  .print-method-card,
  .print-method-card:nth-child(2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(77, 77, 77, 0.11);
  }

  .print-method-card:last-child {
    border-bottom: 0;
  }
}

.about-hero-card {
  padding: 1.4rem;
}

.story-column {
  display: grid;
  gap: 1rem;
}

.story-card {
  padding: 1.5rem;
}

.story-card h3 {
  margin-bottom: 0.9rem;
}

.story-card p {
  color: rgba(77, 77, 77, 0.74);
}

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

.value-card {
  min-height: 310px;
  padding: 1.4rem;
  overflow: hidden;
}

.value-card span {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 3.8rem;
  border-radius: 50%;
  background:
    linear-gradient(135deg, rgba(147, 142, 253, 0.92), rgba(255, 255, 255, 0.44)),
    radial-gradient(circle at 68% 28%, rgba(255, 255, 255, 0.86), transparent 1.4rem);
  font-weight: 800;
  box-shadow: var(--shadow-purple);
}

.value-card span::after {
  content: "";
  width: 18px;
  height: 18px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  border-radius: 7px;
  transform: rotate(45deg);
}

.value-card p {
  color: rgba(77, 77, 77, 0.74);
}

.cta-panel {
  display: grid;
  justify-items: start;
  max-width: 980px;
  padding: 3rem;
  background:
    linear-gradient(135deg, rgba(77, 77, 77, 0.96), rgba(65, 61, 92, 0.96)),
    radial-gradient(circle at 85% 15%, rgba(147, 142, 253, 0.34), transparent 18rem);
}

.cta-panel h2,
.cta-panel p {
  color: #fff;
}

.cta-panel h2 {
  max-width: 830px;
  margin-bottom: 1rem;
}

.cta-panel p {
  max-width: 620px;
  margin-bottom: 1.8rem;
  opacity: 0.78;
}

.page-contact {
  background: #f5f4ee;
}

.contact-hero {
  display: grid;
  align-items: center;
  min-height: 100dvh;
  overflow: visible;
  padding: clamp(6.2rem, 8vh, 8.4rem) 0 clamp(2rem, 4vh, 3rem);
  background: #f5f4ee;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(620px, 0.96fr) minmax(520px, 0.82fr);
  gap: clamp(3rem, 5vw, 5.4rem);
  align-items: center;
  width: min(1440px, calc(100% - 48px));
}

.contact-copy {
  display: grid;
  align-content: center;
}

.contact-copy h1 {
  max-width: none;
  margin: 0 0 clamp(2.2rem, 3.8vh, 3.2rem);
  color: var(--ink);
  font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: clamp(2.4rem, 3vw, 3rem);
  font-weight: 330;
  line-height: 1.05;
  letter-spacing: 0;
  white-space: nowrap;
  text-wrap: nowrap;
}

.contact-benefits {
  display: grid;
  gap: clamp(1rem, 1.85vh, 1.42rem);
  text-align: left;
}

.contact-benefit {
  max-width: 680px;
}

.contact-benefit h2 {
  margin: 0 0 0.44rem;
  color: var(--ink);
  font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: clamp(1.45rem, 1.6vw, 1.78rem);
  font-weight: 390;
  line-height: 1.16;
  letter-spacing: 0;
  white-space: nowrap;
}

.contact-benefit p {
  max-width: 660px;
  margin: 0;
  color: rgba(77, 77, 77, 0.72);
  font-family: "SF Pro Text", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: clamp(1.04rem, 1.16vw, 1.28rem);
  font-weight: 330;
  line-height: 1.42;
  letter-spacing: 0;
  text-wrap: pretty;
}

.contact-form-shell {
  display: grid;
  gap: 0.55rem;
}

.contact-form-kicker {
  margin: 0;
  color: var(--ink);
  font-family: "SF Pro Text", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: clamp(1.04rem, 1.16vw, 1.28rem);
  font-weight: 330;
  line-height: 1.42;
  letter-spacing: 0;
}

.frost-experience {
  position: relative;
  min-height: auto;
  padding: 1.2rem;
  overflow: hidden;
}

.contact-card {
  padding: clamp(1rem, 1.3vw, 1.2rem);
}

.contact-form {
  position: relative;
  z-index: 1;
  display: grid;
  gap: clamp(0.62rem, 1vh, 0.78rem);
  padding: 0;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.62rem, 1vh, 0.78rem) 1rem;
}

.contact-form label,
.contact-field > span,
.contact-select-options label {
  display: grid;
  gap: 0.45rem;
  color: var(--ink);
  font-family: "SF Pro Text", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: clamp(0.94rem, 1vw, 1.08rem);
  font-weight: 330;
  line-height: 1.42;
  letter-spacing: 0;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.contact-single-select summary,
.contact-multi-select summary {
  width: 100%;
  min-height: 44px;
  padding: 0.55rem 0.86rem;
  color: var(--ink);
  font-family: "SF Pro Text", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: clamp(0.94rem, 1vw, 1.08rem);
  font-weight: 330;
  line-height: 1.42;
  letter-spacing: 0;
  resize: vertical;
}

.contact-form textarea {
  min-height: 150px;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(77, 77, 77, 0.42);
}

.contact-single-select,
.contact-multi-select {
  position: relative;
  display: grid;
  gap: 0.45rem;
}

.contact-single-select details,
.contact-multi-select details {
  position: relative;
}

.contact-single-select summary,
.contact-multi-select summary {
  position: relative;
  display: flex;
  align-items: center;
  list-style: none;
  cursor: pointer;
  border: 1px solid rgba(77, 77, 77, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.68);
  outline: none;
}

.contact-single-select summary.is-placeholder,
.contact-multi-select summary.is-placeholder {
  color: rgba(77, 77, 77, 0.42);
}

.contact-single-select summary::-webkit-details-marker,
.contact-multi-select summary::-webkit-details-marker {
  display: none;
}

.contact-single-select summary::after,
.contact-multi-select summary::after {
  content: "";
  position: absolute;
  right: 1rem;
  width: 0.52rem;
  height: 0.52rem;
  border-right: 2px solid rgba(34, 34, 40, 0.64);
  border-bottom: 2px solid rgba(34, 34, 40, 0.64);
  transform: rotate(45deg) translateY(-2px);
}

.contact-single-select details[open] summary,
.contact-multi-select details[open] summary {
  border-color: rgba(147, 142, 253, 0.72);
  box-shadow: 0 0 0 5px rgba(147, 142, 253, 0.12);
  background: rgba(255, 255, 255, 0.88);
}

.contact-select-options {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  z-index: 8;
  display: grid;
  gap: 0.55rem;
  overflow: visible;
  padding: 0.85rem;
  border: 1px solid rgba(77, 77, 77, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 54px rgba(63, 59, 124, 0.18);
}

.contact-select-options label {
  display: flex;
  align-items: center;
  gap: 0.62rem;
}

.contact-select-options input {
  appearance: none;
  display: block;
  width: 16px;
  height: 16px;
  min-height: 16px;
  margin: 0;
  padding: 0;
  border: 1.5px solid rgba(77, 77, 77, 0.56);
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.86);
  flex: 0 0 auto;
}

.contact-select-options input:checked {
  border-color: var(--purple);
  background: var(--purple) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M2.2 6.1 4.8 8.7 9.9 3.3' fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 12px 12px no-repeat;
}

.contact-field-error {
  margin: -0.1rem 0 0;
  color: var(--purple-deep);
  font-size: 0.88rem;
  font-weight: 700;
}

.contact-form .button-primary {
  width: 100%;
  min-height: 52px;
  margin-top: 0.1rem;
  color: #fff;
  font-family: "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1;
}

.form-success {
  margin: 0;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(147, 142, 253, 0.36);
  border-radius: 18px;
  color: var(--ink);
  background: rgba(147, 142, 253, 0.14);
}

.frost-canvas {
  display: none;
}

.frost-instruction {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 4;
  padding: 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  color: #fff;
  background: rgba(77, 77, 77, 0.36);
  box-shadow: 0 18px 50px rgba(77, 77, 77, 0.16);
  backdrop-filter: blur(18px);
  transform: translate(-50%, -50%);
  pointer-events: none;
  transition: opacity 300ms var(--ease), transform 300ms var(--ease);
}

.frost-instruction.is-hidden {
  opacity: 0;
  transform: translate(-50%, -45%);
}

.pricing-hero {
  display: grid;
  align-items: end;
  min-height: 72vh;
  padding: 9rem 0 4.5rem;
  background:
    radial-gradient(circle at 50% 18%, rgba(147, 142, 253, 0.18), transparent 30rem),
    linear-gradient(180deg, rgba(245, 244, 238, 0.96), #fff);
}

.pricing-hero-inner {
  display: grid;
  justify-items: center;
  text-align: center;
}

.pricing-hero h1 {
  max-width: 980px;
  margin-bottom: 1.1rem;
  color: #090909;
  font-size: clamp(3.4rem, 8vw, 7.8rem);
  line-height: 0.92;
  text-wrap: balance;
}

.pricing-hero p:not(.eyebrow) {
  max-width: 680px;
  color: rgba(45, 45, 48, 0.74);
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  line-height: 1.45;
}

.billing-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 2.2rem 0 0.8rem;
  padding: 0.42rem;
  border-radius: 999px;
  background: rgba(77, 77, 77, 0.08);
}

.billing-toggle span,
.billing-toggle strong {
  padding: 0.72rem 1.35rem;
  border-radius: 999px;
  color: var(--ink);
  font-size: clamp(1rem, 1.5vw, 1.22rem);
  line-height: 1;
}

.billing-toggle strong {
  color: #fff;
  background: #11110f;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
}

.pricing-note {
  margin: 0;
  color: var(--purple-deep) !important;
  font-size: 1rem !important;
  font-weight: 820;
}

.pricing-plans {
  padding: 1rem 0 6rem;
  background: #fff;
}

.pricing-card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.6rem, 4vw, 3.5rem);
  align-items: stretch;
}

.pricing-card {
  position: relative;
  display: grid;
  align-content: start;
  gap: 1.55rem;
  min-height: 760px;
  padding: clamp(2rem, 4vw, 3.25rem);
  border: 2px solid rgba(77, 77, 77, 0.18);
  border-radius: 28px;
  background:
    radial-gradient(circle at 86% 12%, rgba(147, 142, 253, 0.12), transparent 16rem),
    #fff;
  box-shadow: 0 28px 76px rgba(77, 77, 77, 0.08);
}

.pricing-card-featured {
  border-color: rgba(147, 142, 253, 0.86);
  box-shadow:
    0 30px 86px rgba(147, 142, 253, 0.18),
    0 0 0 1px rgba(147, 142, 253, 0.16);
}

.plan-badge {
  position: absolute;
  left: 3rem;
  top: -1.05rem;
  display: inline-grid;
  place-items: center;
  min-width: 86px;
  min-height: 38px;
  padding: 0 1rem;
  border-radius: 999px;
  color: rgba(77, 77, 77, 0.72);
  background: #efefed;
  font-size: 1rem;
  font-weight: 840;
  text-transform: uppercase;
}

.pricing-card-featured .plan-badge {
  color: #fff;
  background: linear-gradient(135deg, #938efd, #6e38b8);
}

.plan-price {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.2rem;
}

.plan-price strong {
  color: #050505;
  font-size: clamp(4.6rem, 8vw, 6.8rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.plan-price span {
  max-width: 180px;
  color: rgba(77, 77, 77, 0.74);
  font-size: clamp(1.05rem, 2vw, 1.55rem);
  line-height: 1.18;
}

.pricing-card p {
  max-width: 560px;
  margin: 0;
  color: rgba(34, 34, 40, 0.82);
  font-size: clamp(1.1rem, 1.7vw, 1.32rem);
  line-height: 1.45;
}

.pricing-card .button {
  width: 100%;
  justify-content: center;
  margin: 0.4rem 0 0.65rem;
  min-height: 60px;
  font-size: 1.08rem;
}

.pricing-card ul {
  display: grid;
  gap: 1rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pricing-card li {
  position: relative;
  padding-left: 2rem;
  color: #11110f;
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
  font-weight: 760;
  line-height: 1.32;
}

.pricing-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--purple-deep);
  font-weight: 900;
}

.enterprise-note {
  margin: 2.4rem 0 0;
  text-align: center;
  color: rgba(77, 77, 77, 0.68);
  font-size: 1.1rem;
}

.enterprise-note a {
  color: rgba(34, 34, 40, 0.9);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 220ms var(--ease);
}

.enterprise-note a:hover {
  color: var(--purple-deep);
}

.pricing-compare {
  background: #fff;
}

.compare-table {
  overflow: hidden;
  border: 1px solid rgba(77, 77, 77, 0.12);
  border-radius: 18px;
  background: #fff;
}

.compare-row {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(160px, 0.45fr) minmax(160px, 0.45fr);
  min-height: 132px;
  border-top: 1px solid rgba(77, 77, 77, 0.1);
}

.compare-row:nth-child(even) {
  background: #f2f2f1;
}

.compare-row:first-child {
  border-top: 0;
}

.compare-row > div {
  display: grid;
  align-content: center;
  gap: 0.45rem;
  padding: 1.5rem 2rem;
  border-left: 1px solid rgba(77, 77, 77, 0.1);
}

.compare-row > div:first-child {
  border-left: 0;
}

.compare-row strong {
  color: #101010;
  font-size: clamp(1.15rem, 1.8vw, 1.55rem);
  line-height: 1.18;
}

.compare-row span {
  max-width: 600px;
  color: rgba(77, 77, 77, 0.7);
  font-size: 0.98rem;
  line-height: 1.45;
}

.compare-head {
  min-height: 82px;
  background: #fff !important;
  color: #101010;
  font-size: clamp(1.25rem, 2vw, 1.85rem);
  font-weight: 840;
}

.compare-head > div:nth-child(3) {
  color: var(--purple-deep);
}

.page-blog {
  background: #f5f4ee;
}

.blog-index {
  min-height: 100vh;
  padding: 8rem 0 7rem;
  background: #f5f4ee;
}

.blog-index-inner {
  display: grid;
  gap: clamp(3.8rem, 5vw, 5rem);
}

.blog-featured-card,
.blog-card {
  display: grid;
  color: #11110f;
  outline-offset: 8px;
}

.blog-featured-card {
  grid-template-columns: minmax(0, 1.58fr) minmax(300px, 0.92fr);
  gap: clamp(2rem, 5vw, 4.25rem);
  align-items: center;
}

.blog-card-image {
  display: block;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: rgba(255, 255, 255, 0.48);
}

.blog-featured-image {
  aspect-ratio: 1.88 / 1;
}

.blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-featured-copy {
  display: grid;
  align-content: center;
  gap: 1.25rem;
}

.blog-card-title {
  display: block;
  color: #11110f;
  font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: clamp(1.45rem, 1.6vw, 1.78rem);
  font-weight: 390;
  line-height: 1.16;
  letter-spacing: 0;
  text-wrap: pretty;
  transition: color 220ms var(--ease);
}

.blog-featured-card .blog-card-title {
  max-width: 560px;
  font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: clamp(2.4rem, 3vw, 3rem);
  font-weight: 330;
  line-height: 1.05;
  letter-spacing: 0;
}

.blog-card-subtitle {
  max-width: 620px;
  color: rgba(17, 17, 15, 0.8);
  font-family: "SF Pro Text", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: clamp(1.04rem, 1.16vw, 1.28rem);
  font-weight: 330;
  line-height: 1.42;
  letter-spacing: 0;
}

.blog-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  color: rgba(77, 77, 77, 0.76);
  font-family: "SF Pro Text", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: clamp(0.94rem, 1vw, 1.08rem);
  font-weight: 330;
  line-height: 1.42;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
}

.blog-card {
  gap: 1rem;
}

.blog-card .blog-card-title {
  margin-top: 0.08rem;
}

.blog-featured-card:hover .blog-card-title,
.blog-featured-card:focus-visible .blog-card-title,
.blog-card:hover .blog-card-title,
.blog-card:focus-visible .blog-card-title {
  color: #938efd;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(2rem, 4.2vw, 4rem) clamp(1.5rem, 3vw, 2rem);
}

.page-blog-article {
  background: #fff;
}

.blog-detail {
  padding: 9.5rem 0 6.5rem;
  background: #fff;
}

.blog-detail-shell {
  width: min(850px, calc(100% - 40px));
}

.blog-detail-header {
  display: grid;
  gap: 1.55rem;
}

.blog-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.48rem;
  align-items: center;
  color: rgba(77, 77, 77, 0.76);
  font-family: "SF Pro Text", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: clamp(0.94rem, 1vw, 1.08rem);
  font-weight: 330;
  line-height: 1.42;
  letter-spacing: 0;
  font-variant-numeric: tabular-nums;
}

.blog-back-link {
  color: rgba(34, 34, 40, 0.72);
  transition: color 220ms var(--ease);
}

.blog-back-link:hover,
.blog-back-link:focus-visible {
  color: #938efd;
}

.blog-detail-header h1,
.blog-detail-empty h1 {
  max-width: 760px;
  margin: 0;
  color: #101010;
  font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: clamp(2.4rem, 3vw, 3rem);
  font-weight: 330;
  line-height: 1.05;
  letter-spacing: 0;
  text-wrap: balance;
}

.blog-detail-header p,
.blog-detail-empty p {
  max-width: 760px;
  margin: 0;
  color: rgba(17, 17, 15, 0.86);
  font-family: "SF Pro Text", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: clamp(1.04rem, 1.16vw, 1.28rem);
  font-weight: 330;
  line-height: 1.42;
  letter-spacing: 0;
}

.blog-detail-hero {
  overflow: hidden;
  width: 100%;
  margin: 3.2rem 0 2.6rem;
  aspect-ratio: 1.67 / 1;
  background: #f5f4ee;
}

.blog-detail-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-detail-body {
  display: grid;
  gap: 2rem;
}

.blog-detail-body p {
  max-width: 780px;
  margin: 0;
  color: #1d1d1b;
  font-family: "SF Pro Text", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: clamp(1.04rem, 1.16vw, 1.28rem);
  font-weight: 330;
  line-height: 1.42;
  letter-spacing: 0;
}

.blog-detail-empty {
  display: grid;
  gap: 1.2rem;
}

.site-footer {
  position: relative;
  padding: 5rem 0 2rem;
  background: #938efd;
  color: rgba(255, 255, 255, 0.82);
}

.site-footer .footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.4fr) minmax(220px, 0.72fr) minmax(180px, 0.58fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: start;
  padding: 0 0 4.2rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.site-footer .footer-brand img {
  width: auto;
  height: 36px;
  max-width: 156px;
  margin-bottom: 3.2rem;
  filter: brightness(0) invert(1);
}

.site-footer .footer-brand-block p,
.site-footer .footer-contact p,
.site-footer .footer-links p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer .footer-brand-block p {
  max-width: 320px;
  font-size: 1.05rem;
  line-height: 1.45;
}

.site-footer .footer-contact,
.site-footer .footer-links {
  display: grid;
  align-content: start;
  gap: 0.86rem;
}

.site-footer .footer-contact a,
.site-footer .footer-links a,
.site-footer .footer-links button {
  width: fit-content;
  overflow: visible;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #fff;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  font-size: clamp(1.08rem, 1.35vw, 1.28rem);
  font-weight: 820;
  line-height: 1.24;
  transition: color 220ms var(--glass-ease), transform 220ms var(--glass-ease);
}

.site-footer .footer-contact a:hover,
.site-footer .footer-links a:hover,
.site-footer .footer-links button:hover {
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

.site-footer .footer-links a::before,
.site-footer .footer-links button::before,
.site-footer .footer-contact a::before {
  display: none;
}

.site-footer .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.site-footer .copyright {
  width: auto;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.98rem;
  font-weight: 650;
}

@media (max-width: 860px) {
  .site-footer {
    padding: 4rem 0 1.6rem;
  }

  .site-footer .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.35rem;
    padding: 0 0 3rem;
  }

  .site-footer .footer-brand img {
    height: 32px;
    margin-bottom: 2rem;
  }

  .site-footer .footer-brand-block p {
    max-width: 360px;
  }
}

@media (max-width: 580px) {
  .site-footer {
    padding: 3.4rem 0 1.4rem;
  }

  .site-footer .footer-grid {
    gap: 2rem;
    padding: 0 0 2.35rem;
  }

  .site-footer .footer-contact,
  .site-footer .footer-links {
    gap: 0.7rem;
  }

  .site-footer .footer-contact a,
  .site-footer .footer-links a,
  .site-footer .footer-links button {
    font-size: 1.08rem;
  }

  .site-footer .footer-bottom {
    align-items: flex-start;
  }
}

.page-home .site-footer {
  padding: 5rem 0 2rem;
  background: #938efd;
  color: rgba(255, 255, 255, 0.82);
}

.page-home .footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.4fr) minmax(220px, 0.72fr) minmax(180px, 0.58fr);
  gap: clamp(2.5rem, 7vw, 7rem);
  align-items: start;
  padding: 0 0 4.2rem;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.page-home .footer-brand img {
  width: auto;
  height: 36px;
  max-width: 156px;
  margin-bottom: 3.2rem;
  filter: brightness(0) invert(1);
}

.page-home .footer-brand-block p,
.page-home .footer-contact p,
.page-home .footer-links p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
}

.page-home .footer-brand-block p {
  max-width: 320px;
  font-size: 1.05rem;
  line-height: 1.45;
}

.page-home .footer-contact,
.page-home .footer-links {
  display: grid;
  align-content: start;
  gap: 0.86rem;
}

.page-home .footer-contact a,
.page-home .footer-links a,
.page-home .footer-links button {
  width: fit-content;
  overflow: visible;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: #fff;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  font-size: clamp(1.08rem, 1.35vw, 1.28rem);
  font-weight: 820;
  line-height: 1.24;
  transition: color 220ms var(--glass-ease), transform 220ms var(--glass-ease);
}

.page-home .footer-contact a:hover,
.page-home .footer-links a:hover,
.page-home .footer-links button:hover {
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

.page-home .footer-links a::before,
.page-home .footer-links button::before,
.page-home .footer-contact a::before {
  display: none;
}

.page-home .footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.page-home .copyright {
  width: auto;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.98rem;
  font-weight: 650;
}

@media (max-width: 860px) {
  .page-home .site-footer {
    padding: 4rem 0 1.6rem;
  }

  .page-home .footer-grid {
    grid-template-columns: 1fr;
    gap: 2.35rem;
    padding: 0 0 3rem;
  }

  .page-home .footer-brand img {
    height: 32px;
    margin-bottom: 2rem;
  }

  .page-home .footer-brand-block p {
    max-width: 360px;
  }
}

@media (max-width: 580px) {
  .page-home .site-footer {
    padding: 3.4rem 0 1.4rem;
  }

  .page-home .footer-grid {
    gap: 2rem;
    padding: 0 0 2.35rem;
  }

  .page-home .footer-contact,
  .page-home .footer-links {
    gap: 0.7rem;
  }

  .page-home .footer-contact a,
  .page-home .footer-links a,
  .page-home .footer-links button {
    font-size: 1.08rem;
  }

  .page-home .footer-bottom {
    align-items: flex-start;
  }
}

.site-footer .footer-brand-block p,
.site-footer .footer-contact p,
.site-footer .footer-links p,
.page-home .footer-brand-block p,
.page-home .footer-contact p,
.page-home .footer-links p {
  color: #fff;
  font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: clamp(1.04rem, 1.16vw, 1.28rem);
  font-weight: 390;
  line-height: 1.42;
  letter-spacing: 0;
}

.site-footer .footer-contact a,
.site-footer .footer-links a,
.site-footer .footer-links button,
.page-home .footer-contact a,
.page-home .footer-links a,
.page-home .footer-links button {
  color: rgba(255, 255, 255, 0.68);
  font-family: "SF Pro Text", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: clamp(0.94rem, 1vw, 1.08rem);
  font-weight: 330;
  line-height: 1.42;
  letter-spacing: 0;
}

.site-footer .footer-contact a:hover,
.site-footer .footer-links a:hover,
.site-footer .footer-links button:hover,
.page-home .footer-contact a:hover,
.page-home .footer-links a:hover,
.page-home .footer-links button:hover {
  color: #fff;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 720ms var(--ease), transform 720ms var(--ease);
}

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

@keyframes slow-drift {
  0% { transform: translate3d(-2%, -1%, 0) rotate(0deg) scale(1); }
  100% { transform: translate3d(2%, 1%, 0) rotate(4deg) scale(1.04); }
}

@keyframes float-soft {
  0%, 100% { transform: translateY(0) rotate(var(--float-rotate, 0deg)); }
  50% { transform: translateY(-18px) rotate(var(--float-rotate, 0deg)); }
}

@keyframes ray-shift {
  from { opacity: 0.28; }
  to { opacity: 0.78; }
}

@keyframes logoMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (max-width: 1180px) {
  .page-product .product-header-search {
    top: 92px;
    right: 16px;
    width: min(360px, calc(100vw - 32px));
    min-width: 0;
    max-width: none;
  }

  .page-product .product-discovery-section {
    padding-top: 13rem;
  }
}

@media (max-width: 1120px) {
  h1 {
    font-size: 4.9rem;
  }

  h2 {
    font-size: 3.45rem;
  }

  .products-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .product-hero-layout,
  .product-discovery-header,
  .product-value-layout,
  .custom-sourcing-panel {
    grid-template-columns: 1fr;
  }

  .product-final-panel h2,
  .product-final-panel p:not(.eyebrow) {
    white-space: normal;
  }

  .product-hero-v2 {
    min-height: 100dvh;
    padding-bottom: 5rem;
  }

  .product-hero-collage {
    min-height: 520px;
  }

  .product-discovery-header {
    align-items: start;
  }

  .product-search-panel {
    max-width: 680px;
  }

  .how-inner,
  .page-hero-grid,
  .about-hero-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-hero {
    height: auto;
    min-height: 100vh;
    overflow: visible;
    padding: 8.5rem 0 4.5rem;
  }

  .contact-layout {
    width: min(var(--max), calc(100% - 48px));
    gap: 2.6rem;
    transform: none;
  }

  .contact-copy,
  .contact-benefits,
  .contact-benefit {
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .contact-copy h1 {
    width: auto;
    max-width: 100%;
    white-space: normal;
  }

  .contact-benefit {
    max-width: 760px;
  }

  .product-universe-scroll {
    height: 260vh;
    min-height: 1360px;
  }

  .scroll-card {
    width: clamp(360px, 36vw, 430px);
    height: clamp(190px, 22vh, 230px);
  }

  .scroll-card p {
    font-size: 0.92rem;
  }

  .tilt-showcase-inner {
    width: min(1180px, calc(100% - 48px));
  }

  .tilt-title-panel h3 {
    font-size: clamp(0.95rem, 1.45vw, 1.12rem);
  }

  .tilt-feature-card-large .tilt-title-panel h3 {
    font-size: clamp(1.12rem, 1.9vw, 1.48rem);
  }

  .feature-showcase-inner {
    width: min(1180px, calc(100% - 48px));
  }

  .feature-card-copy h3 {
    font-size: clamp(0.95rem, 1.45vw, 1.12rem);
  }

  .feature-media-card-large .feature-card-copy h3 {
    font-size: clamp(1.12rem, 1.9vw, 1.48rem);
  }

  .tilt-description-panel p {
    font-size: 0.78rem;
  }

  .tilt-feature-card-large .tilt-description-panel p {
    font-size: 0.9rem;
  }

  .how-copy,
  .how-title,
  .how-step-body p {
    max-width: 760px;
  }

  .how-flip-stage {
    width: 100%;
    min-height: 520px;
    aspect-ratio: 1.32 / 1;
  }

}

@media (max-width: 860px) {
  :root {
    --header-height: 74px;
  }

  .site-header {
    top: 12px;
    width: calc(100% - 24px);
  }

  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    display: grid;
    width: min(300px, calc(100vw - 24px));
    padding: 0.6rem;
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 24px;
    background:
      linear-gradient(135deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.24)),
      rgba(242, 244, 252, 0.82);
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.42),
      0 18px 54px rgba(9, 8, 22, 0.18);
    backdrop-filter: blur(22px) saturate(1.45);
    -webkit-backdrop-filter: blur(22px) saturate(1.45);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 260ms var(--ease), transform 260ms var(--ease);
  }

  .page-product .site-nav {
    top: calc(100% + 68px);
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a,
  .site-nav button {
    padding: 1rem;
  }

  .home-hero {
    min-height: 880px;
    padding-top: 8rem;
  }

  .features-hero {
    --hero-carousel-gap: clamp(1rem, 3vw, 1.5rem);
    --hero-card-width: clamp(200px, 30vw, 270px);
    gap: clamp(1.8rem, 4vh, 3rem);
    padding-top: 7.4rem;
  }

  .features-hero h1 {
    font-size: clamp(3.25rem, 7vw, 3.625rem);
    white-space: normal;
    text-wrap: balance;
  }

  .features-hero__actions {
    gap: 1rem;
  }

  .product-universe-scroll {
    height: 250vh;
    min-height: 1200px;
  }

  .scroll-card {
    width: min(390px, calc(100vw - 32px));
    height: clamp(190px, 24vh, 230px);
    border-radius: 24px;
  }

  .tilt-showcase-section {
    padding: 5rem 0 5.5rem;
  }

  .tilt-showcase-inner {
    width: min(var(--max), calc(100% - 32px));
  }

  .tilt-card-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .tilt-feature-card {
    min-height: 430px;
    aspect-ratio: 16 / 11;
    border-radius: 28px;
  }

  .tilt-card-overlay {
    padding: 1rem;
  }

  .tilt-title-panel h3 {
    font-size: clamp(1.05rem, 4.2vw, 1.35rem);
  }

  .tilt-description-panel p {
    font-size: 0.88rem;
    line-height: 1.5;
  }

  .tilt-title-panel,
  .tilt-description-panel {
    max-width: 100%;
  }

  .feature-showcase-section {
    padding: 5rem 0 5.5rem;
  }

  .feature-showcase-inner {
    width: min(var(--max), calc(100% - 32px));
  }

  .feature-card-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }

  .feature-media-frame,
  .feature-media-card-large .feature-media-frame,
  .feature-media-card:not(.feature-media-card-large) .feature-media-frame {
    aspect-ratio: 16 / 10;
  }

  .feature-card-copy,
  .feature-media-card-large .feature-card-copy {
    min-height: auto;
    padding: 0 0 0.35rem;
  }

  .feature-card-copy h3,
  .feature-media-card-large .feature-card-copy h3 {
    font-size: clamp(1.05rem, 4vw, 1.32rem);
    white-space: normal;
  }

  .home-logo-marquee {
    padding: 32px 0;
  }

  .logo-marquee-track {
    gap: 48px;
  }

  .logo-marquee-item img {
    max-width: 156px;
    max-height: 46px;
  }

  .how-section {
    padding: 5rem 0 6rem;
  }

  .how-title {
    margin-bottom: 1.8rem;
    font-size: clamp(2.8rem, 10vw, 3.2rem);
  }

  .how-step-header {
    padding: 1.25rem 0;
  }

  .how-step-title {
    font-size: 1.42rem;
  }

  .how-step.is-active .how-step-body {
    max-height: 420px;
  }

  .how-flip-stage {
    min-height: 420px;
    border-radius: 22px;
  }

  .how-flip-card,
  .how-flip-face {
    border-radius: 22px;
  }

  h1,
  .page-hero h1,
  .about-hero h1,
  .contact-copy h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.8rem;
  }

  .chapter-section {
    padding: 6.5rem 0;
  }

  .bento-grid,
  .values-grid,
  .footer-grid,
  .split-section {
    grid-template-columns: 1fr;
  }

  .bento-card,
  .bento-wide {
    grid-column: span 1;
  }

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

  .product-hero-v2 {
    padding: 8.5rem 0 4.5rem;
  }

  .product-hero-copy h1 {
    font-size: clamp(3.25rem, 3.7vw, 3.625rem);
  }

  .product-hero-collage {
    min-height: 500px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-template-rows: repeat(8, minmax(54px, 1fr));
  }

  .hero-product-tile-large {
    grid-column: 1 / 4;
    grid-row: 1 / 5;
  }

  .hero-product-tile-wide {
    grid-column: 2 / 5;
    grid-row: 5 / 9;
  }

  .hero-product-tile-a {
    grid-column: 3 / 5;
    grid-row: 1 / 3;
  }

  .hero-product-tile-b {
    grid-column: 1 / 3;
    grid-row: 4 / 6;
  }

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

  .category-entry-card,
  .category-entry-large {
    grid-column: auto;
  }

  .category-entry-wide {
    grid-column: 1 / -1;
  }

  .category-entry-card {
    min-height: 180px;
  }

  .discovery-card-track {
    grid-auto-columns: minmax(236px, 74vw);
  }

  .product-step-grid {
    grid-template-columns: 1fr;
  }

  .value-card-stack {
    min-height: 360px;
  }

  .sticky-heading {
    position: relative;
    top: auto;
    margin-bottom: 2rem;
  }

  .faq-section #faq-title {
    font-size: clamp(2.8rem, 10vw, 3.2rem);
    line-height: 0.94;
  }

  .modal-card {
    grid-template-columns: 1fr;
    width: min(680px, calc(100vw - 28px));
    gap: 1.35rem;
    max-height: calc(100vh - 32px);
    overflow: auto;
  }

  .modal-visual-shell {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
  }

  .modal-content {
    width: min(100%, 304px);
    max-width: 304px;
    margin: 0 auto;
    padding: 0 0 1rem;
  }

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

  .print-method-card:nth-child(2) {
    border-right: 0;
  }

  .print-method-card:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(77, 77, 77, 0.11);
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .pricing-hero {
    min-height: 62vh;
    padding: 8rem 0 3.8rem;
  }

  .pricing-card-grid {
    grid-template-columns: 1fr;
  }

  .blog-featured-card {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

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

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

  .compare-table {
    overflow-x: auto;
    border-radius: 16px;
  }

  .compare-row {
    min-width: 760px;
  }
}

@media (max-width: 580px) {
  .section-inner {
    width: min(var(--max), calc(100% - 28px));
  }

  .site-header {
    left: 12px;
    width: min(366px, calc(100% - 24px));
    transform: none;
  }

  .page-product .product-header-search {
    top: 88px;
    right: 12px;
    width: calc(100% - 24px);
  }

  .brand-mark img {
    width: auto;
    height: 28px;
    max-width: 128px;
  }

  .hero-inner {
    align-items: center;
    width: min(350px, calc(100% - 40px));
    max-width: 350px;
    margin-left: 20px;
    margin-right: 20px;
    text-align: center;
  }

  .home-hero {
    justify-items: center;
  }

  .features-hero {
    --hero-carousel-gap: 0.9rem;
    --hero-card-width: clamp(190px, 62vw, 236px);
    height: auto;
    min-height: 100vh;
    gap: 1.7rem;
    padding: 7.2rem 0 3rem;
  }

  .features-hero__content {
    width: min(390px, calc(100% - 28px));
    padding-top: 0;
  }

  .features-hero h1 {
    font-size: 3rem;
    line-height: 1.05;
  }

  .features-hero__actions {
    flex-direction: column;
    margin-top: 2.2rem;
  }

  .features-hero__actions p {
    font-size: clamp(2rem, 8vw, 2.45rem);
  }

  .hero-inner h1 {
    max-width: 350px;
    font-size: 3rem;
    text-wrap: wrap;
  }

  h1,
  .page-hero h1,
  .about-hero h1,
  .contact-copy h1 {
    font-size: 2.15rem;
    line-height: 1.02;
  }

  .contact-hero {
    padding: 7.4rem 0 3.4rem;
  }

  .contact-layout {
    width: min(var(--max), calc(100% - 28px));
    gap: 2.1rem;
  }

  .contact-copy h1,
  .contact-benefit h2 {
    white-space: normal;
  }

  .contact-benefits {
    gap: 1rem;
  }

  .contact-benefit p {
    font-size: 0.96rem;
  }

  .contact-card {
    padding: 1rem;
  }

  .eyebrow {
    max-width: 100%;
    font-size: 0.78rem;
    line-height: 1.25;
  }

  .home-hero .eyebrow {
    font-size: 0.96rem;
  }

  .home-hero .hero-trust-badge {
    --trust-avatar-size: 18px;
    padding: 0.3rem 0.58rem 0.3rem 0.34rem;
    font-size: clamp(0.7rem, 2.9vw, 0.82rem);
  }

  .hero-trust-avatars {
    margin-right: 0.42rem;
  }

  .hero-trust-text {
    overflow: visible;
    text-overflow: clip;
  }

  .hero-copy {
    max-width: 100%;
    font-size: 1rem;
  }

  .how-section {
    padding: 4.25rem 0 5rem;
  }

  .how-inner {
    gap: 2.2rem;
  }

  .how-title {
    font-size: 2.45rem;
  }

  .faq-section #faq-title {
    font-size: 2.45rem;
  }

  .how-step::before {
    inset: 0 -0.45rem;
    border-radius: 18px;
  }

  .how-step-header {
    gap: 0.9rem;
    padding: 1.05rem 0;
  }

  .how-step-title {
    font-size: 1.16rem;
  }

  .how-step-icon {
    flex-basis: 30px;
    width: 30px;
    height: 30px;
  }

  .how-step-body p {
    padding: 0 0 1.2rem;
    font-size: 0.95rem;
    line-height: 1.62;
  }

  .how-flip-stage {
    min-height: 280px;
    aspect-ratio: 1 / 0.92;
  }

  .product-universe-scroll {
    height: 230vh;
    min-height: 1080px;
  }

  .scroll-card {
    width: min(88vw, 360px);
    height: auto;
    min-height: 190px;
    padding: 1rem;
  }

  .scroll-card p {
    font-size: 0.88rem;
    line-height: 1.48;
  }

  .scroll-card-button {
    width: fit-content;
    justify-content: center;
  }

  .tilt-showcase-section {
    padding: 4.25rem 0 4.75rem;
  }

  .tilt-showcase-inner {
    width: min(var(--max), calc(100% - 28px));
  }

  .tilt-card-grid {
    gap: 1rem;
  }

  .tilt-feature-card {
    min-height: 460px;
    aspect-ratio: 4 / 5;
    border-radius: 26px;
  }

  .tilt-card-overlay {
    gap: 0.55rem;
    padding: 0.8rem;
  }

  .tilt-title-panel {
    padding: 0.68rem 0.9rem;
    border-radius: 20px;
  }

  .tilt-title-panel h3 {
    font-size: clamp(0.98rem, 5.6vw, 1.32rem);
    line-height: 1.08;
  }

  .tilt-description-panel {
    padding: 0.82rem 0.9rem;
    border-radius: 20px;
  }

  .tilt-description-panel p {
    font-size: 0.86rem;
    line-height: 1.45;
  }

  .feature-showcase-section {
    padding: 4.25rem 0 4.75rem;
  }

  .feature-showcase-inner {
    width: min(var(--max), calc(100% - 28px));
  }

  .feature-card-grid {
    gap: 1rem;
  }

  .feature-media-card {
    border-radius: 20px;
  }

  .feature-media-frame {
    border-radius: 20px;
  }

  .feature-card-copy p {
    font-size: 0.92rem;
    line-height: 1.55;
  }

  .home-logo-marquee {
    padding: 28px 0;
  }

  .logo-marquee-track {
    gap: 36px;
    padding-inline: 20px;
    animation-duration: 26s;
  }

  .logo-marquee-item {
    min-width: 96px;
  }

  .logo-marquee-item img {
    max-width: 132px;
    max-height: 38px;
  }

  h2 {
    font-size: 2.25rem;
  }

  .hero-actions {
    width: 100%;
    justify-content: center;
  }

  .button {
    width: 100%;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }

  .product-hero-v2 {
    min-height: 100dvh;
    padding: 8rem 0 4.6rem;
    align-items: start;
  }

  .product-hero-layout {
    display: block;
  }

  .product-hero-copy {
    position: relative;
    z-index: 2;
  }

  .product-hero-copy h1 span {
    white-space: normal;
  }

  .product-hero-actions,
  .product-final-panel .hero-actions {
    justify-content: stretch;
  }

  .product-hero-support {
    width: 100%;
  }

  .product-hero-collage {
    position: absolute;
    z-index: 1;
    top: 22.5rem;
    right: -5.2rem;
    width: 360px;
    min-height: 330px;
    gap: 0.7rem;
    opacity: 0.54;
    pointer-events: none;
    transform: none;
  }

  .hero-product-tile {
    border-radius: 22px;
  }

  .hero-product-tile strong {
    font-size: 0.88rem;
  }

  .hero-product-tile span,
  .hero-product-tile .product-object,
  .category-visual .product-object,
  .value-mini-card .product-object {
    transform: scale(0.6);
  }

  .category-entry-grid {
    grid-template-columns: 1fr;
  }

  .category-entry-card {
    min-height: 230px;
    border-radius: 24px;
  }

  .category-copy {
    max-width: calc(100% - 150px);
  }

  .category-copy strong {
    font-size: clamp(1.12rem, 5.2vw, 1.42rem);
  }

  .category-visual {
    width: min(48%, 160px);
    border-radius: 22px;
  }

  .product-discovery-header h2,
  .product-value-copy h2,
  .custom-sourcing-panel h2,
  .product-final-panel h2 {
    font-size: clamp(2.15rem, 11vw, 3.4rem);
  }

  #product-steps-title {
    font-size: clamp(2.15rem, 11vw, 3.4rem);
  }

  .discovery-row-heading {
    display: grid;
    align-items: start;
  }

  .discovery-row-heading > span {
    white-space: normal;
  }

  .product-card {
    min-height: 380px;
  }

  .product-card-meta {
    display: grid;
  }

  .product-price {
    width: fit-content;
  }

  .product-value-section,
  .custom-sourcing-section,
  .product-steps-section,
  .product-final-cta {
    padding: 4.5rem 0;
  }

  .value-card-stack {
    min-height: 430px;
  }

  .value-mini-card {
    width: 78%;
    min-height: 210px;
  }

  .custom-sourcing-panel,
  .product-final-panel {
    border-radius: 28px;
  }

  .custom-sourcing-panel h2 span {
    white-space: normal;
  }

  .footer-grid,
  .cta-panel {
    padding: 1.25rem;
  }

  .frost-experience {
    min-height: 840px;
    padding: 0.6rem;
  }

  .pricing-hero h1 {
    font-size: clamp(2.55rem, 14vw, 4.1rem);
  }

  .billing-toggle {
    width: 100%;
    justify-content: center;
  }

  .billing-toggle span,
  .billing-toggle strong {
    padding: 0.68rem 1rem;
  }

  .pricing-card {
    padding: 2rem 1.3rem 1.6rem;
    border-radius: 24px;
  }

  .plan-badge {
    left: 1.4rem;
  }

  .plan-price {
    display: grid;
    gap: 0.5rem;
  }

  .plan-price strong {
    font-size: 4rem;
  }

  .pricing-card .button {
    min-height: 56px;
  }

  .blog-index {
    padding: 8.5rem 0 4.8rem;
  }

  .blog-index-inner {
    gap: 2.3rem;
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: 2.7rem;
  }

  .blog-featured-card .blog-card-title {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .blog-detail {
    padding: 8.4rem 0 4.8rem;
  }

  .blog-detail-shell {
    width: min(100% - 32px, 850px);
  }

  .blog-detail-header {
    gap: 1.2rem;
  }

  .blog-detail-meta {
    font-size: 0.94rem;
  }

  .blog-detail-hero {
    margin: 2.2rem 0 2rem;
  }
}

.page-home .how-title,
.page-home .product-hero-v2 .product-hero-copy h1,
.page-home .faq-section #faq-title {
  font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: clamp(3.45rem, 4.2vw, 5.2rem);
  font-weight: 330;
  line-height: 1.05;
  letter-spacing: 0;
}

.page-home .how-step-title,
.page-home .product-hero-v2 .product-hero-lede,
.page-home .faq-question {
  font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: clamp(1.45rem, 1.6vw, 1.78rem);
  font-weight: 390;
  line-height: 1.16;
  letter-spacing: 0;
}

.page-home .how-step-body p,
.page-home .scroll-card p,
.page-home .product-hero-v2 .product-hero-support,
.page-home .faq-answer p {
  font-family: "SF Pro Text", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: clamp(1.04rem, 1.16vw, 1.28rem);
  font-weight: 330;
  line-height: 1.42;
  letter-spacing: 0;
}

.page-home .faq-answer p {
  width: min(100%, 72rem);
  max-width: 72rem;
  text-wrap: pretty;
}

.page-home .product-hero-v2 .product-hero-actions .button,
.page-home .product-hero-v2 .hero-product-tile span,
.page-home .product-hero-v2 .hero-product-tile strong {
  font-family: "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.page-home .product-hero-v2 {
  background: #f5f4ee;
}

.page-home .product-hero-v2 .product-hero-collage::before {
  background: transparent;
  box-shadow: none;
}

.page-home .product-hero-v2 .hero-product-tile {
  background: #fff;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 24px 70px rgba(63, 59, 124, 0.1);
}

.page-home .product-hero-v2 .hero-product-tile::before {
  background: radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.74), transparent 70%);
}

.page-home .product-hero-v2 .product-object-image::before {
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.78) 46%, transparent 76%);
  box-shadow: none;
  filter: blur(4px);
}

.page-home .product-hero-v2 .product-hero-actions .button-soft,
.page-home .product-hero-v2 .product-hero-actions .button-soft:hover {
  border-color: rgba(34, 34, 40, 0.9);
}

.page-home .product-hero-v2 .hero-product-tile strong {
  color: rgba(77, 77, 77, 0.64);
}

@media (min-width: 1121px) {
  .page-home .how-visual {
    display: flex;
    justify-content: flex-end;
  }

  .page-home .how-flip-stage {
    width: min(100%, 650px);
    min-height: 0;
    aspect-ratio: 1 / 1;
  }

  .page-home .product-hero-v2 .product-hero-layout {
    width: min(1540px, calc(100% - 72px));
    grid-template-columns: minmax(650px, 0.9fr) minmax(540px, 1fr);
    gap: clamp(5.5rem, 7.4vw, 8rem);
  }

  .page-home .product-hero-v2 .product-hero-copy {
    transform: translateX(-2.5rem);
  }

  .page-home .product-hero-v2 .product-hero-lede {
    max-width: none;
    white-space: nowrap;
  }

  .page-home .product-hero-v2 .product-hero-collage {
    transform: translateX(4.25rem);
  }

  .page-home .how-inner {
    width: min(1420px, calc(100% - 72px));
    grid-template-columns: minmax(560px, 620px) minmax(420px, 650px);
    justify-content: space-between;
    gap: clamp(2.75rem, 4.2vw, 4.8rem);
  }

  .page-home .how-step-title {
    max-width: none;
    white-space: nowrap;
  }

  .page-home .faq-section .split-section {
    width: min(1680px, calc(100% - 72px));
    grid-template-columns: minmax(230px, 0.2fr) minmax(0, 1fr);
    gap: clamp(3rem, 4vw, 4.5rem);
  }

  .page-home .faq-section .sticky-heading {
    padding-top: 1.65rem;
  }

  .page-home .faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.6rem;
    white-space: nowrap;
  }

  .page-home .faq-question::after {
    flex: 0 0 auto;
    float: none;
  }

  .page-home .faq-answer p {
    text-wrap: pretty;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-hero {
    --reveal-x: 50%;
    --reveal-y: 48%;
    --reveal-size: 178px;
    --reveal-opacity: 0.34;
  }

  .hero-product-reveal,
  .hero-ambient-glow,
  .how-flip-card,
  .how-step::before,
  .how-step-title,
  .how-step-icon::before,
  .how-step-icon::after,
  .how-step-body,
  .scroll-card,
  .features-growth-product-card,
  .features-growth-product-shape,
  .features-growth-product-float,
  .tilt-feature-card,
  .tilt-card-image,
  .tilt-card-overlay {
    transition: none;
    animation: none;
  }

  .product-universe-scroll {
    height: auto;
    min-height: 100vh;
  }

  .product-universe-sticky {
    position: relative;
    min-height: 100vh;
  }

  .tilt-card-grid {
    perspective: none;
  }

  .tilt-feature-card,
  .tilt-feature-card.is-tilting,
  .features-growth-product-card,
  .features-growth-product-card.is-tilting,
  .features-growth-product-shape,
  .features-growth-product-float,
  .tilt-feature-card.is-tilting .tilt-card-image,
  .tilt-feature-card.is-tilting .tilt-card-overlay {
    transform: none;
    filter: none;
  }

  .logo-marquee-track {
    animation: none;
    transform: none;
  }

  .site-nav a,
  .site-nav button,
  .footer-links a,
  .footer-links button,
  .button,
  .filter-chip,
  .modal-close,
  .faq-question,
  .interactive-lift {
    transition-duration: 1ms;
  }

  .site-nav a:hover,
  .site-nav button:hover,
  .footer-links a:hover,
  .footer-links button:hover,
  .button:hover,
  .filter-chip:hover,
  .modal-close:hover,
  .faq-question:hover,
  .interactive-lift:hover {
    transform: none;
  }

  .site-nav a::before,
  .site-nav button::before,
  .footer-links a::before,
  .footer-links button::before,
  .filter-chip::before,
  .modal-close::before {
    transition: none;
  }

  .faq-question::before {
    transition: none;
  }
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .site-header,
  .site-nav,
  .site-nav a,
  .site-nav button,
  .footer-links a,
  .footer-links button,
  .button,
  .filter-chip,
  .modal-close,
  .faq-question,
  .nav-toggle {
    background: rgba(255, 255, 255, 0.88);
  }

  .button-primary {
    color: #fff;
    background: rgba(147, 142, 253, 0.88);
  }

  .home-hero .button-soft {
    background: rgba(36, 35, 49, 0.88);
  }
}

@media (max-width: 1320px) {
  .product-catalog-shell {
    width: min(1380px, calc(100% - 48px));
    grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
    gap: 1.6rem;
  }

  .product-catalog-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem 1.2rem;
  }
}

@media (max-width: 1180px) {
  .product-catalog-shell {
    grid-template-columns: 1fr;
  }

  .product-catalog-sidebar {
    position: relative;
    top: auto;
    display: grid;
    gap: 1.1rem;
    overflow: visible;
    padding: 0 0 0.6rem;
    white-space: normal;
  }

  .catalog-sidebar-heading {
    gap: 0.38rem;
  }

  .catalog-sidebar-heading h1 {
    font-size: clamp(1.45rem, 4vw, 2.1rem);
  }

  .catalog-nav-group {
    display: block;
  }

  .catalog-nav-group h2 {
    margin-bottom: 0.58rem;
  }

  .catalog-nav-category {
    display: inline-block;
    margin: 0 0.42rem 0.5rem 0;
    vertical-align: top;
  }

  .catalog-subnav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.42rem;
    padding-left: 0;
    margin-top: 0.48rem;
  }

  .catalog-nav-back,
  .catalog-nav-item,
  .catalog-subnav-item {
    padding: 0.45rem 0.72rem;
    border: 1px solid rgba(77, 77, 77, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.62);
    font-size: 0.92rem;
  }

  .catalog-collections {
    display: flex;
    flex-wrap: wrap;
    gap: 0.42rem;
    margin-top: 0.3rem;
  }

  .catalog-collections h2 {
    flex: 0 0 100%;
  }

  .catalog-collection-item {
    padding: 0.45rem 0.72rem;
    border: 1px solid rgba(77, 77, 77, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.42);
    font-size: 0.9rem;
  }

  .product-catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .page-product .product-discovery-section {
    padding-top: 12rem;
  }

  .product-catalog-shell {
    width: min(100% - 28px, 640px);
  }

  .product-catalog-topline {
    display: grid;
    justify-items: end;
    gap: 0.9rem;
    margin-bottom: 1.5rem;
  }

  .product-catalog-sort {
    justify-content: flex-end;
    font-size: 0.9rem;
  }

  .product-catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.6rem 0.9rem;
  }

  .product-catalog-grid .product-card-meta {
    display: block;
  }

  .product-catalog-grid .product-price {
    width: fit-content;
  }
}

@media (max-width: 460px) {
  .product-catalog-grid {
    grid-template-columns: 1fr;
  }

  .product-catalog-pagination {
    margin-top: 3rem;
  }
}

.page-product .product-value-copy h2,
.page-product .custom-sourcing-panel h2,
.page-product .product-final-panel h2 {
  font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: clamp(2.4rem, 3vw, 3rem);
  font-weight: 330;
  line-height: 1.05;
  letter-spacing: 0;
}

.page-product .product-value-copy h2 {
  max-width: none;
  white-space: nowrap;
}

.page-product .product-value-copy p:not(.eyebrow),
.page-product .custom-sourcing-panel p:not(.eyebrow),
.page-product .product-final-panel p:not(.eyebrow) {
  font-family: "SF Pro Text", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: clamp(1.04rem, 1.16vw, 1.28rem);
  font-weight: 330;
  line-height: 1.42;
  letter-spacing: 0;
}

.page-product .value-mini-card span {
  color: rgba(77, 77, 77, 0.64);
  font-family: "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.page-product .custom-sourcing-panel .button,
.page-product .product-final-panel .button {
  font-family: "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
}

.page-product #product-steps-title,
.page-product .product-step span,
.page-product .product-step h3 {
  font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-weight: 330;
  letter-spacing: 0;
}

.page-product .product-catalog-pagination,
.page-product .catalog-page-button,
.page-product .catalog-page-input,
.page-product .product-catalog-pagination strong {
  font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-weight: 390;
  letter-spacing: 0;
}

.page-product .product-final-panel .button-soft {
  border-color: rgba(34, 34, 40, 0.9);
}

.page-product .product-final-panel .button-soft:hover {
  border-color: rgba(34, 34, 40, 0.9);
}

@media (max-width: 760px) {
  .page-product .product-value-copy h2,
  .page-product .custom-sourcing-panel h2 span,
  .page-product .product-final-panel h2,
  .page-product .product-final-panel p:not(.eyebrow) {
    white-space: normal;
  }
}

.page-product .product-value-section,
.page-product .custom-sourcing-section,
.page-product .product-steps-section,
.page-product .product-final-cta {
  background: #f5f4ee;
}

.page-product .custom-sourcing-panel,
.page-product .product-final-panel {
  background: #fff;
}

button,
.button,
.site-nav .nav-cta,
.site-nav .nav-cta:hover,
.site-nav .nav-cta.is-active,
.page-home .site-header.is-over-dark .site-nav .nav-cta,
.page-home .site-header.is-over-dark .site-nav .nav-cta:hover,
.page-home .site-header.is-over-dark .site-nav .nav-cta.is-active,
.features-hero__cta,
.features-hero__cta:hover,
.features-growth-button,
.features-growth-button:hover,
.home-hero .hero-actions .button-primary:first-child,
.home-hero .hero-actions .button-primary:first-child:hover,
.home-hero .hero-actions .button-primary:nth-child(2),
.home-hero .hero-actions .button-primary:nth-child(2):hover,
.home-hero .button-soft,
.home-hero .button-soft:hover,
.product-hero-actions .button-primary,
.product-hero-actions .button-primary:hover,
.contact-form .button-primary,
.pricing-card .button,
.catalog-page-button,
.catalog-page-button:not(:disabled):hover,
.catalog-sort-trigger,
.catalog-sort-menu button,
.catalog-breadcrumb-reset,
.catalog-nav-item,
.catalog-subnav-item,
.catalog-collection-item,
.filter-chip,
.filter-chip:hover,
.filter-chip.is-active,
.modal-close,
.modal-close:hover,
.modal-gallery-arrow,
.modal-gallery-arrow:hover,
.nav-toggle {
  box-shadow: none !important;
}

.page-home .site-nav .nav-cta,
.page-home .site-nav .nav-cta.is-active,
.page-home .site-header.is-over-dark .site-nav .nav-cta,
.page-home .site-header.is-over-dark .site-nav .nav-cta.is-active {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  height: 52px;
  padding: 0 1.35rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(147, 142, 253, 0.68), rgba(105, 99, 216, 0.46)),
    rgba(147, 142, 253, 0.36);
  box-shadow: none !important;
  backdrop-filter: blur(22px) saturate(1.55) brightness(1.08);
  -webkit-backdrop-filter: blur(22px) saturate(1.55) brightness(1.08);
  font-family: "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: 1.12rem;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
}

.page-home .site-nav .nav-cta:hover,
.page-home .site-header.is-over-dark .site-nav .nav-cta:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.66);
  background:
    linear-gradient(135deg, rgba(154, 150, 255, 0.78), rgba(119, 113, 244, 0.56)),
    rgba(147, 142, 253, 0.48);
  box-shadow: none !important;
  transform: scale(1.04) translateY(-1px);
}

.site-footer .footer-bottom,
.page-home .footer-bottom {
  gap: 1.5rem;
}

.footer-legal-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(1rem, 2.4vw, 2rem);
  margin-left: auto;
}

.site-footer .footer-legal-links a,
.page-home .footer-legal-links a {
  width: fit-content;
  overflow: visible;
  padding: 0;
  border: 0;
  border-radius: 0;
  color: rgba(255, 255, 255, 0.68);
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  font-family: "SF Pro Text", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: clamp(0.94rem, 1vw, 1.08rem);
  font-weight: 330;
  line-height: 1.42;
  letter-spacing: 0;
  transition: color 220ms var(--glass-ease), transform 220ms var(--glass-ease);
}

.site-footer .footer-legal-links a:hover,
.page-home .footer-legal-links a:hover {
  color: #fff;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  transform: none;
}

.footer-legal-links a::before {
  display: none;
}

.page-legal {
  background: #f5f4ee;
  color: #1f1f24;
}

.legal-main {
  padding: clamp(8rem, 10vw, 10.5rem) 0 clamp(4rem, 7vw, 6rem);
  background: #f5f4ee;
}

.legal-document {
  width: min(820px, calc(100% - 48px));
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.legal-document-header {
  margin-bottom: 1.35rem;
}

.legal-document-header p {
  margin: 0;
  color: #222226;
  font-family: Arial, "Helvetica Neue", "SF Pro Text", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Manrope", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.35;
  letter-spacing: 0;
}

.legal-document-header h1 {
  margin: 0 0 2.2rem;
  color: #151519;
  font-family: Arial, "Helvetica Neue", "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Manrope", system-ui, sans-serif;
  font-size: clamp(2.45rem, 3vw, 3.15rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: 0;
}

.legal-document-body {
  color: #202024;
  font-family: Arial, "Helvetica Neue", "SF Pro Text", "SF Pro Display", -apple-system, BlinkMacSystemFont, "Manrope", system-ui, sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.42;
  letter-spacing: 0;
}

.legal-document-body h2,
.legal-document-body h3 {
  color: #151519;
  font-family: Arial, "Helvetica Neue", "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Manrope", system-ui, sans-serif;
  font-weight: 800;
  line-height: 1.28;
  letter-spacing: 0;
}

.legal-document-body h2 {
  margin: 1.55rem 0 0.85rem;
  font-size: 1rem;
}

.legal-document-body h3 {
  margin: 1.25rem 0 0.65rem;
  font-size: 1rem;
}

.page-terms .legal-summary-title {
  text-align: center;
}

.legal-document-body p {
  margin: 0 0 0.95rem;
}

.legal-document-body strong {
  color: inherit;
  font-weight: 800;
}

.legal-document-body a {
  color: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.16em;
}

.legal-document-body ul {
  margin: 0.1rem 0 1rem 1.4rem;
  padding-left: 1rem;
}

.legal-document-body li {
  margin: 0 0 0.55rem;
  padding-left: 0.18rem;
}

.legal-callout {
  margin: 0 0 0.95rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

@media (max-width: 760px) {
  .site-footer .footer-bottom,
  .page-home .footer-bottom {
    flex-wrap: wrap;
  }

  .footer-legal-links {
    justify-content: flex-start;
    width: 100%;
    margin-left: 0;
  }

  .legal-document {
    width: min(100% - 32px, 820px);
  }
}

@media (max-width: 480px) {
  .footer-legal-links {
    display: grid;
    gap: 0.62rem;
  }

  .legal-document {
    width: min(100% - 28px, 820px);
  }

  .legal-document-header h1 {
    font-size: 2.05rem;
  }

  .legal-document-body,
  .legal-document-header p {
    font-size: 0.96rem;
  }
}

@media (max-width: 420px) {
  .home-hero .hero-trust-badge {
    --trust-avatar-size: 15px;
    padding: 0.27rem 0.5rem 0.27rem 0.3rem;
    font-size: clamp(0.58rem, 2.7vw, 0.72rem);
  }

  .hero-trust-avatars {
    margin-right: 0.32rem;
  }
}

.page-product .product-catalog-topline {
  padding-right: 0;
}

.page-product.product-search-expanded {
  --product-search-layer-height: clamp(116px, 12vw, 148px);
}

.page-product.product-search-expanded .site-header {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-8px);
}

.page-product.product-search-expanded .product-header-search {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 80;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 1rem;
  width: 100%;
  min-width: 0;
  max-width: none;
  min-height: var(--product-search-layer-height);
  padding: clamp(1.2rem, 2vw, 1.75rem) clamp(1rem, 3vw, 2rem) 1.35rem;
  border-bottom: 1px solid rgba(77, 77, 77, 0.08);
  background: rgba(247, 246, 240, 0.94);
  box-shadow: 0 18px 50px rgba(34, 34, 40, 0.08);
  backdrop-filter: blur(24px) saturate(1.2);
  -webkit-backdrop-filter: blur(24px) saturate(1.2);
}

.page-product.product-search-expanded .product-header-search .search-shell {
  width: min(760px, calc(100vw - 132px));
  margin: 0 auto;
}

.page-product.product-search-expanded .product-header-search .search-shell input {
  min-height: 58px;
  padding-right: 1.2rem;
  border: 1px solid rgba(147, 142, 253, 0.34);
  background: rgba(255, 255, 255, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    0 18px 42px rgba(63, 59, 124, 0.1);
}

.page-product.product-search-expanded .product-search-close {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-top: 0.45rem;
  border: 0;
  border-radius: 50%;
  color: rgba(34, 34, 40, 0.66);
  background: transparent;
  font-family: "SF Pro Display", "SF Pro Text", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, "Manrope", system-ui, sans-serif;
  font-size: 1.9rem;
  font-weight: 300;
  line-height: 1;
  cursor: pointer;
}

.page-product.product-search-expanded .product-search-close:hover,
.page-product.product-search-expanded .product-search-close:focus-visible {
  outline: 0;
  color: var(--ink);
  background: rgba(77, 77, 77, 0.06);
}

@media (max-width: 860px) {
  .page-product.product-search-expanded .site-header {
    transform: translateY(-8px);
  }

  .page-product.product-search-expanded .product-header-search {
    min-height: 112px;
    padding: 1rem 0.85rem 1rem;
  }

  .page-product.product-search-expanded .product-header-search .search-shell {
    width: min(100%, calc(100vw - 76px));
  }

  .page-product.product-search-expanded .product-header-search .search-shell input {
    min-height: 54px;
  }

  .page-product.product-search-expanded .product-search-close {
    width: 38px;
    height: 38px;
    margin-top: 0.5rem;
    font-size: 1.65rem;
  }
}

@media (max-width: 580px) {
  .page-product.product-search-expanded .product-header-search {
    grid-template-columns: 1fr auto;
    min-height: 96px;
    padding: 0.8rem 0.75rem;
  }

  .page-product.product-search-expanded .product-header-search .search-shell {
    width: min(100%, calc(100vw - 66px));
  }

  .page-product.product-search-expanded .product-header-search .search-shell input {
    min-height: 50px;
    font-size: 1rem;
  }
}

@media (max-width: 640px) {
  .page-product .product-modal {
    align-items: start;
    padding: 0.75rem;
    overflow: auto;
  }

  .page-product .modal-card {
    width: min(100%, 430px);
    max-height: none;
    gap: 1.1rem;
    padding: 0.85rem;
    border-radius: 26px;
  }

  .page-product .modal-content {
    width: min(100%, 304px);
    max-width: 304px;
    margin: 0 auto;
    padding: 0 0 1rem;
  }

  .page-product .product-detail-popover-layer {
    position: fixed;
    padding: 0.75rem;
  }

  .page-product .product-detail-popover {
    width: min(100%, 430px);
    max-height: calc(100dvh - 32px);
    padding: 1rem;
    border-radius: 22px;
  }

  .page-product .print-method-grid {
    grid-template-columns: 1fr;
  }

  .page-product .print-method-card,
  .page-product .print-method-card:nth-child(2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(77, 77, 77, 0.11);
  }

  .page-product .print-method-card:last-child {
    border-bottom: 0;
  }
}
