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

:root {
  --primary: #B8FF2C;
  --primary-dark: #92DB00;
  --black: #0A0A0A;
  --off-white: #F7F7F3;
  --white: #FFFFFF;
  --gray-text: #666666;
  --text-muted: #8A8A84;
  --border: #E5E5E1;
  --green: var(--primary);
  --green-dark: var(--primary-dark);
  --card-radius: 32px;
  --font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
  --section-major: 96px;
  --section-compact: 76px;
  --section-major-mobile: 60px;
  --section-compact-mobile: 52px;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family);
  font-weight: 400;
  background: var(--off-white);
  color: var(--black);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* Homepage must use normal document scroll on iOS (no overflow traps). */
html:has(body.home-page),
body.home-page {
  overflow-x: visible;
  overflow-y: visible;
  overscroll-behavior-y: auto;
  height: auto;
  max-height: none;
}

/* Beat UA a:visited blue/purple (common on iOS) */
a,
a:link,
a:visited,
a:active {
  color: inherit;
  text-decoration: none;
}

a[x-apple-data-detectors],
a[x-apple-data-detectors]:link,
a[x-apple-data-detectors]:visited,
a[x-apple-data-detectors]:hover,
a[x-apple-data-detectors]:active {
  color: inherit !important;
  -webkit-text-fill-color: currentColor !important;
  text-decoration: none !important;
}

/* iOS often auto-links qty/price digits as phone numbers */
.qty-card,
.qty-card__amount,
.qty-card__price,
.addon-chip,
.addon-chip__qty,
.addon-chip__price,
.addon-post-chip,
.addon-post-chip__num,
.account-post-split,
.vol-price,
.vol-price__now,
.vol-price__was {
  -webkit-text-fill-color: currentColor;
}

.qty-card a,
.qty-card a:link,
.qty-card a:visited,
.qty-card a:active,
.qty-card__amount a,
.qty-card__price a,
.addon-chip a,
.addon-chip__qty a,
.addon-chip__price a,
.addon-post-chip a,
.addon-post-chip a:link,
.addon-post-chip a:visited,
.addon-post-chip a:active,
.account-post-split a,
.account-post-split a:link,
.account-post-split a:visited,
.account-post-split a:active,
.vol-price a,
.vol-price__now a,
.vol-price__was a {
  color: inherit !important;
  -webkit-text-fill-color: currentColor !important;
  text-decoration: none !important;
  pointer-events: none;
}

.page-wrapper {
  min-height: 100vh;
  padding: 16px;
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.main-card {
  background: var(--white);
  border-radius: var(--card-radius);
  width: 100%;
  max-width: min(1440px, calc(100vw - 32px));
  padding: 32px 56px 48px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  --home-gutter: 56px;
}

/* Homepage: full page, no floating card chrome */
.home-page {
  background: var(--white);
}

.home-page .page-wrapper {
  padding: 0;
  display: block;
}

.home-page .main-card {
  max-width: 1440px;
  width: 100%;
  margin-inline: auto;
  min-height: 100vh;
  border-radius: 0;
  box-shadow: none;
  background: var(--white);
  padding: 28px clamp(20px, 4vw, 72px) 48px;
  --home-gutter: clamp(20px, 4vw, 72px);
}

.home-page .navbar {
  display: flex;
  justify-content: center;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 28px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(10, 10, 10, 0.06);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(10, 10, 10, 0.06);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.home-page .navbar .logo {
  justify-self: center;
}

.home-page .navbar .logo-mark {
  width: 48px;
  height: 48px;
  border-radius: 13px;
}

@media (min-width: 1025px) {
  .home-page .navbar {
    margin-bottom: 40px;
  }

  .home-page .hero {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.85fr);
    gap: 12px 40px;
    align-items: center;
    padding-top: 48px;
  }

  .home-page .hero-content {
    max-width: none;
    align-self: center;
  }

  .home-page .hero-visual {
    justify-content: center;
    align-items: center;
    align-self: center;
    min-width: 0;
    min-height: 0;
    background: transparent;
  }

  .home-page .hero-config {
    max-width: 340px;
    width: min(100%, 340px);
  }

  .home-page .hero-visual-shot {
    max-width: 700px;
    width: min(100%, 700px);
  }
}

@media (max-width: 1024px) {
  .home-page .hero {
    grid-template-columns: 1fr;
    gap: 8px;
    align-items: stretch;
    padding-top: 8px;
    text-align: center;
  }

  .home-page .hero-content {
    max-width: 100%;
    margin: 0 auto;
  }

  .home-page .hero-trust {
    margin-left: auto;
    margin-right: auto;
    align-items: center;
  }

  .home-page .hero-social-proof {
    align-items: center;
  }

  .home-page .hero-visual {
    justify-content: center;
    min-height: auto;
    min-width: 0;
    margin-top: 48px;
    background: transparent;
  }

  .home-page .hero-config {
    max-width: min(100%, 420px);
    width: 100%;
    margin: 0 auto;
    text-align: left;
  }

  .home-page .hero-visual-shot {
    max-width: min(100%, 600px);
    width: 100%;
    margin: 0 auto;
  }
}

.home-page .home-section,
.home-page .home-platform {
  max-width: none;
  width: 100%;
}

/* ── Navbar ── */
.navbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin-bottom: 48px;
  position: relative;
}

.logo,
.logo:link,
.logo:visited,
.logo:active {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--black);
  justify-self: start;
}

.logo-mark {
  display: block;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  object-fit: cover;
  flex-shrink: 0;
}

.logo-text {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-self: center;
}

.nav-link,
.nav-link:link,
.nav-link:visited,
.nav-link:active {
  display: flex;
  align-items: center;
  gap: 4px;
  text-decoration: none;
  color: var(--black);
  font-size: 0.875rem;
  font-weight: 500;
  transition: opacity 0.2s;
}

.nav-link:hover {
  opacity: 0.6;
}

.chevron {
  opacity: 0.5;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  justify-self: end;
}

.login-link,
.login-link:link,
.login-link:visited,
.login-link:active {
  text-decoration: none;
  color: var(--black);
  font-size: 0.875rem;
  font-weight: 500;
}

.login-link:hover {
  opacity: 0.6;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-family);
  text-decoration: none;
  font-weight: 600;
  border-radius: 14px;
  transition: transform 0.15s, box-shadow 0.15s;
  cursor: pointer;
  border: none;
  line-height: 1;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.btn-dark,
.btn-dark:link,
.btn-dark:visited,
.btn-dark:active {
  background: var(--black);
  color: var(--white);
}

.btn-light,
.btn-light:link,
.btn-light:visited,
.btn-light:active {
  background: var(--white);
  color: var(--black);
}

.btn-light .btn-arrow {
  background: var(--primary);
}

.btn-sm {
  font-size: 1.125rem;
  font-weight: 600;
  padding: 4px 4px 4px 16px;
  gap: 20px;
  min-height: 44px;
}

.btn-nav {
  font-size: 0.875rem;
  font-weight: 600;
  padding: 3px 3px 3px 12px;
  gap: 10px;
  min-height: 36px;
}

.btn-nav .btn-arrow {
  width: 28px;
  height: 28px;
}

.btn-nav .btn-arrow svg {
  width: 10px;
  height: 10px;
}

.btn-lg,
.hero-cta {
  font-size: 1.125rem;
  font-weight: 700;
  padding: 4px 4px 4px 16px;
  gap: 20px;
  min-height: 56px;
}

.btn-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 12px;
  flex-shrink: 0;
  transition: background 0.15s;
}

.btn:hover .btn-arrow {
  background: var(--primary-dark);
}

.btn-lg .btn-arrow,
.hero-cta .btn-arrow {
  width: 48px;
  height: 48px;
  border-radius: 14px;
}

.btn-label {
  display: inline-block;
}

/* Homepage CTAs: arrow starts left, slides right on hover + color swap */
.home-page .btn.btn-dark,
.home-page .btn.btn-light {
  --btn-arrow-size: 48px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: auto;
  max-width: 100%;
  gap: 0;
  /* Extra left padding matches right arrow zone so label centers in the black area */
  padding: 4px calc(var(--btn-arrow-size) + 4px) 4px 4px;
  min-height: 56px;
  overflow: hidden;
  transition:
    transform 0.2s ease,
    box-shadow 0.25s ease,
    background-color 0.35s ease,
    color 0.35s ease,
    padding 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-page .btn.btn-dark .btn-label,
.home-page .btn.btn-light .btn-label {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 auto;
  min-width: 0;
  padding: 0 18px;
  text-align: center;
  white-space: nowrap;
}

.home-page .btn.btn-dark .btn-arrow,
.home-page .btn.btn-light .btn-arrow {
  position: absolute;
  top: 50%;
  left: calc(100% - 4px - var(--btn-arrow-size));
  width: var(--btn-arrow-size);
  height: var(--btn-arrow-size);
  transform: translateY(-50%);
  transition:
    left 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    background-color 0.35s ease,
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  z-index: 2;
}

.home-page .btn.btn-dark .btn-arrow svg path,
.home-page .btn.btn-light .btn-arrow svg path {
  transition: stroke 0.35s ease;
}

.home-page .btn.btn-dark:hover,
.home-page .btn.btn-light:hover {
  padding: 4px 4px 4px calc(var(--btn-arrow-size) + 4px);
}

.home-page .btn.btn-dark:hover {
  background: var(--primary);
  color: var(--black);
  box-shadow: 0 6px 20px rgba(184, 255, 44, 0.35);
}

.home-page .btn.btn-dark:hover .btn-arrow {
  left: 4px;
  background: var(--black);
  transform: translateY(-50%);
}

.home-page .btn.btn-dark:hover .btn-arrow svg path {
  stroke: var(--primary);
}

.home-page .btn.btn-light:hover {
  background: var(--primary);
  color: var(--black);
  box-shadow: 0 6px 20px rgba(184, 255, 44, 0.28);
}

.home-page .btn.btn-light:hover .btn-arrow {
  left: 4px;
  background: var(--black);
  transform: translateY(-50%);
}

.home-page .btn.btn-light:hover .btn-arrow svg path {
  stroke: var(--primary);
}

.home-page .home-sample__cta,
.home-page .home-band .btn {
  width: auto;
  align-self: center;
}

/* ── Hero ── */
.hero {
  display: grid;
  grid-template-columns: minmax(0, 682px) minmax(0, 1fr);
  gap: 12px 32px;
  align-items: start;
  margin-bottom: 8px;
  width: 100%;
}

.hero-content {
  max-width: 682px;
  width: 100%;
  padding-top: 8px;
}

.hero-title {
  font-family: var(--font-family);
  font-size: clamp(2.5rem, 4.5vw, 4.5rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
}

.hero-title-line {
  display: block;
}

.hero-title .serif {
  font-family: var(--font-family);
  font-style: normal;
  font-weight: 700;
}

.hero-title .serif.day {
  text-transform: lowercase;
  font-weight: 700;
}

.hero-highlight {
  display: inline-block;
  padding: 0.22em 0.28em 0.08em;
  background: var(--primary);
  border-radius: 0.14em;
  color: var(--black);
  line-height: 1;
  vertical-align: baseline;
}

.hero-subtitle {
  font-size: 1.125rem;
  font-weight: 400;
  color: var(--gray-text);
  line-height: 1.65;
  margin-bottom: 32px;
  max-width: 432px;
}

.hero-trust {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  width: fit-content;
  max-width: 100%;
  margin: 20px 0 0 4px;
  padding: 0;
}

.hero-content > .hero-cta {
  display: inline-flex;
}

.hero-content > .hero-trust {
  display: flex;
}

.hero-social-proof {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  width: fit-content;
  max-width: 100%;
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  box-shadow: none;
}

.hero-social-proof__row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.hero-social-proof__row:has(.hero-social-proof__icon) {
  gap: 4px;
}

.hero-social-proof__stars {
  display: flex;
  align-items: center;
  gap: 2px;
  color: #F0B429;
  flex-shrink: 0;
}

.hero-social-proof__stars svg {
  width: 16px;
  height: 16px;
  display: block;
  overflow: visible;
}

.hero-social-proof__text {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: #1A1A1A;
  white-space: nowrap;
}

.hero-social-proof__text strong {
  font-weight: 800;
  color: #0A0A0A;
}

.hero-social-proof__muted {
  color: #3F3F3B;
  font-weight: 500;
}

.hero-social-proof__icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  padding: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(10, 10, 10, 0.04);
  box-shadow: 0 4px 12px rgba(10, 10, 10, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-sizing: border-box;
  line-height: 0;
}

.hero-social-proof__icon svg {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}

.hero-cta {
  margin-bottom: 0;
  width: fit-content;
  max-width: 100%;
  justify-content: flex-start;
  gap: 12px;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trust-badges--hero {
  margin: 0;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.trust-badges--hero .trust-badge {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: #666666;
  gap: 6px;
  line-height: 1.2;
}

.trust-badges--hero .trust-badge__check {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: #666666;
}

.trust-badges--hero .trust-badge__dot {
  display: none;
}

.trust-badges--summary {
  margin-top: 6px;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 6px;
  width: 100%;
}

.trust-badges--summary .trust-badge {
  font-size: 0.5625rem;
  gap: 3px;
  letter-spacing: 0;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 0;
  border: none;
  background: transparent;
  font-size: 0.6875rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--gray-text);
  white-space: nowrap;
}

.trust-badge__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.42;
  flex-shrink: 0;
}

.social-proof {
  margin-top: 56px;
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.2;
}

.rating {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stars {
  display: flex;
  gap: 0;
  color: #f97316;
}

.rating-text {
  color: var(--black);
  font-weight: 500;
}

.reviews {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatars {
  display: flex;
}

.avatars img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--white);
  margin-left: -8px;
  object-fit: cover;
}

.avatars img:first-child {
  margin-left: 0;
}

.reviews-text {
  color: var(--gray-text);
  font-weight: 400;
}

/* ── Hero Visual ── */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  min-height: 520px;
  background: transparent;
  background-color: transparent;
  box-shadow: none;
}

.hero-visual::before,
.hero-visual::after {
  content: none !important;
  display: none !important;
}

/* ── Hero image mockup (trial) ── */
.hero-visual-shot {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 640px;
  margin-inline: auto;
  background: transparent;
  background-color: transparent;
  box-shadow: none;
  border: none;
  overflow: visible;
}

.hero-visual-shot::before,
.hero-visual-shot::after {
  content: none !important;
  display: none !important;
}

.hero-visual-shot__img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  background: transparent;
  background-color: transparent;
  border: none;
  box-shadow: none;
  mix-blend-mode: normal;
  user-select: none;
  -webkit-user-drag: none;
}

.hero-config.is-hidden,
.hero-config[hidden] {
  display: none !important;
}

/* ── Hero mini configurator (Step 1: Followers) ── */
.hero-config {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 340px;
  padding: 20px 18px 18px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 18px 48px rgba(10, 10, 10, 0.08);
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-config__header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.hero-config__platform-icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 11px;
  background: var(--black);
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 1px;
}

.hero-config__heading {
  min-width: 0;
}

.hero-config__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--black);
  line-height: 1.2;
}

.hero-config__subtitle {
  margin: 4px 0 0;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray-text);
  line-height: 1.35;
}

.hero-config__section {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.hero-config__question {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.015em;
  color: var(--black);
}

.hero-config.is-ready .hero-config__section,
.hero-config.is-ready .hero-config__price-block,
.hero-config.is-ready .hero-config__meta,
.hero-config.is-ready .hero-config__cta {
  animation: hero-config-fade-up 0.42s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-config.is-ready .hero-config__section { animation-delay: 0.02s; }
.hero-config.is-ready .hero-config__price-block { animation-delay: 0.07s; }
.hero-config.is-ready .hero-config__meta { animation-delay: 0.11s; }
.hero-config.is-ready .hero-config__cta { animation-delay: 0.15s; }

@keyframes hero-config-fade-up {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-config__qty-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.hero-config__chip {
  position: relative;
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  background: var(--white);
  border-radius: 14px;
  min-height: 52px;
  padding: 10px 8px;
  font-family: inherit;
  color: var(--gray-text);
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
  animation: hero-config-chip-in 0.34s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: calc(var(--chip-i, 0) * 0.03s);
}

.hero-config__chip-qty {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  line-height: 1;
}

.hero-config__chip.has-badge {
  padding-top: 16px;
}

.hero-config__chip-badge {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
}

.hero-config__chip:hover {
  border-color: #C8C8C2;
  transform: translateY(-1px);
}

.hero-config__chip.is-active {
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(10, 10, 10, 0.14);
}

.hero-config__chip.is-active .hero-config__chip-badge {
  color: rgba(255, 255, 255, 0.72);
}

.hero-config__chip.is-pop {
  animation: hero-config-pop 0.34s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.hero-config__chip--other {
  min-height: 52px;
  border-style: dashed;
  border-radius: 14px;
  background: transparent;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-muted);
  line-height: 1;
}

.hero-config__chip--other.is-active {
  background: var(--off-white);
  border-style: dashed;
  border-color: var(--black);
  color: var(--black);
  box-shadow: none;
}

@keyframes hero-config-chip-in {
  from {
    opacity: 0;
    transform: translateY(6px) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes hero-config-pop {
  0% { transform: scale(0.94); }
  55% { transform: scale(1.05); }
  100% { transform: scale(1); }
}

.hero-config__price-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-top: 2px;
}

.hero-config__price-value {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--black);
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
  display: inline-block;
}

.hero-config__price-value.is-pulse {
  animation: hero-config-price-pulse 0.32s ease;
}

@keyframes hero-config-price-pulse {
  0% { transform: scale(1); }
  40% { transform: scale(1.04); }
  100% { transform: scale(1); }
}

.hero-config__meta {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.hero-config__meta li {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-text);
}

.hero-config__meta svg {
  flex-shrink: 0;
  color: var(--black);
}

.hero-config__cta {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 48px;
  padding: 0 18px;
  border: none;
  border-radius: 999px;
  background: var(--primary);
  color: var(--black);
  font-family: inherit;
  font-size: 0.9375rem;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.hero-config__cta:hover {
  transform: translateY(-1px);
  background: var(--primary-dark);
  box-shadow: 0 6px 18px rgba(184, 255, 44, 0.35);
}

.hero-config__cta.is-pop {
  animation: hero-config-pop 0.34s cubic-bezier(0.34, 1.4, 0.64, 1);
}

@media (prefers-reduced-motion: reduce) {
  .hero-config.is-ready .hero-config__section,
  .hero-config.is-ready .hero-config__price-block,
  .hero-config.is-ready .hero-config__meta,
  .hero-config.is-ready .hero-config__cta,
  .hero-config__chip,
  .hero-config__chip.is-pop,
  .hero-config__price-value.is-pulse,
  .hero-config__cta.is-pop {
    animation: none !important;
  }
}

.hero-profile-scene {
  position: relative;
  width: 100%;
  max-width: 400px;
  min-height: 560px;
}

.hero-profile-glow {
  position: absolute;
  inset: 12% 8% 18%;
  background: radial-gradient(circle at 50% 50%, rgba(184, 255, 44, 0.28) 0%, rgba(184, 255, 44, 0) 68%);
  filter: blur(18px);
  animation: hero-glow-pulse 4.5s ease-in-out infinite;
}

.hero-profile-device {
  position: relative;
  z-index: 1;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: var(--white);
  box-shadow: 0 24px 60px rgba(10, 10, 10, 0.1);
  overflow: hidden;
}

.hero-profile-device__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--border);
  background: var(--off-white);
}

.hero-profile-device__ig {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--black);
}

.hero-profile-device__live {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--primary);
  padding: 4px 8px;
  border-radius: 999px;
}

.hero-profile-card {
  padding: 26px 22px 28px;
}

.hero-profile-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.hero-profile-avatar {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 16px;
  background: transparent;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  overflow: hidden;
}

.hero-profile-avatar__icon {
  display: block;
  color: var(--primary);
}

.hero-profile-avatar__logo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: inherit;
}

.hero-profile-avatar__ring {
  position: absolute;
  inset: -5px;
  border: 2px solid var(--primary);
  border-radius: 20px;
  animation: hero-ring-pulse 2.8s ease-out infinite;
  pointer-events: none;
}

.hero-profile-meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.hero-profile-handle {
  font-size: 1rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.02em;
}

.hero-profile-name {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray-text);
}

.hero-profile-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.hero-profile-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  text-align: center;
}

.hero-profile-stat strong {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--black);
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}

.hero-profile-stat span {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--gray-text);
  text-transform: lowercase;
}

.hero-profile-stat--grow strong {
  color: var(--black);
}

.hero-profile-followers {
  display: inline-block;
  border-radius: 6px;
  padding: 0 2px;
  transform-origin: center bottom;
}

.hero-profile-followers.is-ticking {
  animation: hero-followers-pop 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes hero-followers-pop {
  0% {
    transform: translateY(0) scale(1);
    background: transparent;
  }
  30% {
    transform: translateY(-3px) scale(1.06);
    background: var(--primary);
  }
  100% {
    transform: translateY(0) scale(1);
    background: transparent;
  }
}

.hero-growth-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-text);
}

.hero-growth-badge {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--black);
  background: #F2FFD8;
  border: 1px solid var(--black);
  padding: 4px 8px;
  border-radius: 999px;
}

.hero-growth-bars {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 88px;
}

.hero-growth-bars span {
  flex: 1;
  height: var(--bar-h);
  border-radius: 6px 6px 2px 2px;
  background: linear-gradient(180deg, var(--primary) 0%, #D4FF7A 100%);
  transform-origin: bottom center;
  animation: hero-bar-grow 7s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.hero-growth-bars span:nth-child(2) { animation-delay: 0.15s; }
.hero-growth-bars span:nth-child(3) { animation-delay: 0.3s; }
.hero-growth-bars span:nth-child(4) { animation-delay: 0.45s; }
.hero-growth-bars span:nth-child(5) { animation-delay: 0.6s; }
.hero-growth-bars span:nth-child(6) { animation-delay: 0.75s; }
.hero-growth-bars span:nth-child(7) { animation-delay: 0.9s; }

.hero-notif {
  position: absolute;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(10, 10, 10, 0.08);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--black);
  white-space: nowrap;
  opacity: 0;
  animation: hero-notif-rise 6s cubic-bezier(0.22, 1, 0.36, 1) infinite;
}

.hero-notif__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}

.hero-notif--1 {
  top: 8%;
  right: -4%;
  animation-delay: 0s;
}

.hero-notif--2 {
  top: 42%;
  left: -8%;
  animation-delay: 2s;
}

.hero-notif--3 {
  bottom: 10%;
  right: 2%;
  animation-delay: 4s;
}

@keyframes hero-glow-pulse {
  0%, 100% { opacity: 0.65; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}

@keyframes hero-ring-pulse {
  0% { transform: scale(1); opacity: 1; }
  70%, 100% { transform: scale(1.18); opacity: 0; }
}

@keyframes hero-bar-grow {
  0%, 100% { transform: scaleY(0.55); opacity: 0.55; }
  45% { transform: scaleY(1); opacity: 1; }
  70% { transform: scaleY(0.82); opacity: 0.88; }
}

@keyframes hero-notif-rise {
  0%, 8% {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }
  16%, 42% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
  52%, 100% {
    opacity: 0;
    transform: translateY(-10px) scale(0.98);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-profile-glow,
  .hero-profile-avatar__ring,
  .hero-profile-followers.is-ticking,
  .hero-growth-bars span,
  .hero-notif {
    animation: none !important;
  }

  .hero-notif--3 {
    opacity: 1;
    transform: none;
  }
}

/* ── Platform Picker ── */
.platform-picker {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 0;
  padding: var(--section-compact) 8px;
}

.home-platform {
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.home-platform .home-eyebrow {
  text-align: center;
}

.platform-picker-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
  text-align: center;
  color: var(--black);
}

.platform-picker-subtitle {
  font-size: 1.0625rem;
  font-weight: 400;
  color: var(--gray-text);
  text-align: center;
  margin-bottom: 36px;
  max-width: 420px;
  line-height: 1.55;
}

.platform-picker-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  width: 100%;
  max-width: 560px;
}

.platform-picker-card,
.platform-picker-card:link,
.platform-picker-card:visited,
.platform-picker-card:active {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 28px 24px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  text-decoration: none;
  color: var(--black);
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}

.platform-picker-card:hover {
  border-color: var(--black);
  box-shadow: 0 8px 24px rgba(10, 10, 10, 0.08);
  transform: translateY(-2px);
}

.platform-picker-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  background: var(--primary);
  border-radius: 14px;
  color: var(--black);
  overflow: visible;
}

.platform-picker-icon svg {
  display: block;
  overflow: visible;
  flex-shrink: 0;
}

.platform-picker-name {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.platform-picker-cta {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--gray-text);
}

.platform-picker-card:hover .platform-picker-cta {
  color: var(--black);
}

.platform-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  pointer-events: none;
}

.platform-modal[hidden] {
  display: none;
}

.platform-modal.is-open,
.platform-modal.is-closing {
  pointer-events: auto;
}

.platform-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.45);
  opacity: 0;
  transition: opacity 0.36s ease;
}

.platform-modal.is-open .platform-modal__backdrop {
  opacity: 1;
}

.platform-modal.is-closing .platform-modal__backdrop {
  opacity: 0;
}

.platform-modal__panel {
  position: relative;
  width: min(100%, 720px);
  padding: 28px 24px 24px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(10, 10, 10, 0.18);
  opacity: 0;
  transform: translateY(14px) scale(0.98);
  transition: opacity 0.36s ease, transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}

.platform-modal.is-open .platform-modal__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.platform-modal.is-closing .platform-modal__panel {
  opacity: 0;
  transform: translateY(10px) scale(0.985);
}

.platform-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--gray-text);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.platform-modal__close:hover {
  background: rgba(10, 10, 10, 0.06);
  color: var(--black);
}

.platform-modal__title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
  padding-right: 36px;
}

.platform-modal__subtitle {
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--gray-text);
  margin-bottom: 20px;
}

.platform-modal__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

@media (max-width: 640px) {
  .platform-modal__grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .platform-modal__backdrop,
  .platform-modal__panel {
    transition: none;
  }
}

@media (max-width: 720px) {
  .platform-picker-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Homepage sections ── */
.home-section {
  max-width: 960px;
  margin: 0 auto;
  padding: var(--section-major) 8px;
}

.home-how {
  padding-top: var(--section-compact);
  padding-bottom: var(--section-compact);
}

.home-how .home-section-title {
  max-width: none;
}

.home-why {
  padding-top: var(--section-major);
  padding-bottom: var(--section-major);
}

.home-demo {
  padding-top: var(--section-major);
  padding-bottom: var(--section-major);
}

.home-faq {
  padding-top: var(--section-compact);
  padding-bottom: var(--section-compact);
}

.home-eyebrow {
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.home-section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: var(--black);
  margin-bottom: 36px;
  max-width: 16ch;
}

.home-highlight {
  display: inline-block;
  padding: 0.04em 0.28em 0.08em;
  background: var(--primary);
  border-radius: 0.14em;
  color: var(--black);
  line-height: 1;
}

.home-highlight--dark {
  background: var(--primary);
  color: var(--black);
}

.home-band {
  margin-left: calc(-1 * var(--home-gutter));
  margin-right: calc(-1 * var(--home-gutter));
  padding: var(--section-major) var(--home-gutter);
  margin-bottom: 0;
}

.home-band--dark {
  background: var(--black);
  color: var(--white);
  border-radius: 24px;
}

.home-band__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.home-band__title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
  margin-bottom: 14px;
}

.home-band__text {
  font-size: 1.0625rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
  margin-bottom: 32px;
}

.home-band .btn {
  margin: 0 auto;
  width: auto;
  max-width: 100%;
}

.home-how .btn,
.home-demo .btn {
  width: fit-content;
  max-width: 100%;
}

.home-steps {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 0;
}

.home-step {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 22px 20px;
  border: 1.5px solid var(--border);
  border-radius: 18px;
  background: var(--white);
  min-height: 100%;
}

.home-step__num {
  font-size: 0.8125rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  color: var(--text-muted);
}

.home-step__title {
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--black);
  margin-bottom: 6px;
}

.home-step__text {
  font-size: 1rem;
  color: var(--gray-text);
  line-height: 1.55;
}

.home-sample__note {
  margin-top: 16px;
  font-size: 0.8125rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.5;
}

.home-why .home-section-title {
  max-width: none;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.home-why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.home-why-card {
  padding: 24px 22px;
  border: 1.5px solid var(--border);
  border-radius: 18px;
  background: var(--white);
}

.home-why-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 14px;
  border-radius: 10px;
  background: var(--off-white);
  color: var(--black);
}

.home-why-card__icon svg {
  display: block;
}

.home-why-card__title {
  font-size: 1.1875rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.home-why-card__text {
  font-size: 1rem;
  color: var(--gray-text);
  line-height: 1.55;
}

.home-demo {
  text-align: center;
}

.home-demo .home-section-title,
.home-demo .home-eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.home-demo .home-section-title {
  max-width: none;
}

/* ── FLEX projection card ── */
.flex-card {
  padding: 24px 20px 20px;
  border: 1.5px solid var(--border);
  border-radius: 20px;
  background: var(--off-white);
  text-align: left;
}

.home-demo-growth {
  max-width: 420px;
  margin: 0 auto 24px;
  text-align: left;
}

.home-demo-growth .profile-growth__disclaimer {
  text-align: center;
}

.flex-card__handle {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.flex-card__flow {
  --flex-card-value-size: clamp(1.125rem, 3vw, 1.5rem);
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin-bottom: 18px;
}

.flex-card__node {
  flex: 0 0 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.flex-card__label {
  display: block;
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-text);
  margin-bottom: 4px;
  line-height: 1.2;
}

.flex-card__value {
  display: inline-block;
  font-size: var(--flex-card-value-size);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  padding: 0.12em 0.32em 0.18em;
}

.flex-card__value--lime {
  color: var(--black);
  background: var(--primary);
  border-radius: 0.2em;
}

.flex-card__arrow {
  flex: 1 1 0;
  display: block;
  min-width: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  color: var(--gray-text);
  margin-top: calc(0.6875rem * 1.2 + 4px + 0.5 * var(--flex-card-value-size) + 0.15em - 0.5em);
}

.flex-card__bar {
  height: 6px;
  border-radius: 999px;
  background: var(--border);
  overflow: hidden;
}

.flex-card__bar-fill {
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--primary) 0%, var(--primary-dark) 100%);
  transition: width 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}

.flex-card__bar-fill.is-filled {
  width: 100%;
}

@media (prefers-reduced-motion: reduce) {
  .flex-card__bar-fill {
    transition: none;
  }
}

.home-demo .btn {
  margin: 0 auto;
}

.home-faq .home-section-title {
  max-width: none;
}

.home-faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.home-faq-item {
  border: 1.5px solid var(--border);
  border-radius: 14px;
  background: var(--white);
  overflow: hidden;
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
}

.home-faq-item.is-open {
  border-color: rgba(10, 10, 10, 0.12);
  box-shadow: 0 8px 24px rgba(10, 10, 10, 0.04);
}

.home-faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 18px;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition: color 0.22s ease;
}

.home-faq-item summary::-webkit-details-marker {
  display: none;
}

.home-faq-item summary::after {
  content: '+';
  float: right;
  font-weight: 500;
  color: var(--gray-text);
  display: inline-block;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), color 0.22s ease;
}

.home-faq-item.is-open summary::after {
  transform: rotate(45deg);
  color: var(--black);
}

.home-faq-item__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.home-faq-item__inner {
  overflow: hidden;
}

.home-faq-item p {
  padding: 0 18px 16px;
  font-size: 1rem;
  color: var(--gray-text);
  line-height: 1.6;
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.24s ease, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-faq-item.is-open p {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.05s;
}

.home-faq-item.is-closing p {
  opacity: 0;
  transform: translateY(-4px);
  transition-delay: 0s;
}

@media (prefers-reduced-motion: reduce) {
  .home-faq-item,
  .home-faq-item summary,
  .home-faq-item summary::after,
  .home-faq-item__body,
  .home-faq-item p {
    transition: none;
  }

  .home-faq-item p {
    opacity: 1;
    transform: none;
  }
}

.home-final-cta__title {
  font-size: clamp(1.625rem, 4.6vw, 3.25rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1.02;
  margin-bottom: 12px;
  white-space: nowrap;
}

.home-final-cta {
  margin-bottom: 0;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.home-footer {
  margin-left: calc(-1 * var(--home-gutter));
  margin-right: calc(-1 * var(--home-gutter));
  margin-bottom: calc(-1 * var(--home-gutter, 48px));
  padding: 28px var(--home-gutter) 36px;
  background: var(--black);
  color: rgba(255, 255, 255, 0.72);
  border-bottom-left-radius: var(--card-radius);
  border-bottom-right-radius: var(--card-radius);
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.home-footer__brand .logo-text {
  color: var(--white);
  display: block;
  margin-bottom: 6px;
}

.home-footer__tagline {
  font-size: 0.875rem;
  max-width: 28ch;
}

.home-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
}

.home-footer__nav a,
.home-footer__nav a:link,
.home-footer__nav a:visited,
.home-footer__nav a:active {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
}

.home-footer__nav a:hover {
  color: var(--white);
}

.home-footer__copy {
  width: 100%;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.45);
  margin-top: 4px;
}

@media (max-width: 768px) {
  .home-steps {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .home-why-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .home-section {
    padding-top: var(--section-major-mobile);
    padding-bottom: var(--section-major-mobile);
  }

  .home-how,
  .home-faq,
  .platform-picker {
    padding-top: var(--section-compact-mobile);
    padding-bottom: var(--section-compact-mobile);
  }

  .home-band {
    padding-top: var(--section-major-mobile);
    padding-bottom: var(--section-major-mobile);
    border-radius: 18px;
  }

  .home-sample {
    border-radius: 0;
  }

  .home-final-cta {
    border-radius: 18px 18px 0 0;
    margin-bottom: -28px;
    padding-bottom: calc(var(--section-major-mobile) + 28px);
    position: relative;
    z-index: 0;
  }

  .home-page .main-card {
    padding-bottom: 0;
  }

  .home-footer {
    position: relative;
    z-index: 1;
    margin-top: 0;
    margin-bottom: 0;
    border-radius: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
  }

  .home-final-cta__title {
    font-size: clamp(1.5rem, 7.2vw, 2rem);
  }

  .home-eyebrow {
    margin-bottom: 10px;
  }

  .home-section-title {
    max-width: none;
    margin-bottom: 28px;
  }

  .platform-picker-title {
    margin-bottom: 10px;
  }

  .platform-picker-subtitle {
    margin-bottom: 28px;
    font-size: 1rem;
  }

  .platform-picker-grid {
    gap: 14px;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .trust-badges--hero {
    gap: 8px 16px;
  }
}

/* ── Service Selector ── */
.service-selector {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 48px;
}

.service-selector-title {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 28px;
  text-align: center;
}

.platform-tabs {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 999px;
  margin-bottom: 32px;
  width: fit-content;
  max-width: 100%;
}

.platform-tab {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-family);
  font-size: 0.9375rem;
  font-weight: 600;
  padding: 10px 20px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--gray-text);
  cursor: pointer;
  transition: background 0.15s, color 0.15s, box-shadow 0.15s;
}

.platform-tab-icon {
  flex-shrink: 0;
}

.platform-tab:hover {
  color: var(--black);
}

.platform-tab.active {
  background: var(--black);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(10, 10, 10, 0.12);
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  width: 100%;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 20px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}

.service-card:hover {
  border-color: var(--black);
  box-shadow: 0 8px 24px rgba(10, 10, 10, 0.08);
  transform: translateY(-2px);
}

.service-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 12px;
  color: var(--black);
  flex-shrink: 0;
}

.service-card-title {
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.service-card-desc {
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--gray-text);
  line-height: 1.55;
  flex: 1;
}

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 8px;
  margin-top: auto;
}

.service-price {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--black);
}

.service-link {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--black);
  white-space: nowrap;
}

.service-card:hover .service-link {
  color: var(--primary-dark);
}

/* ── Trust Bar ── */
.trust-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 32px 0;
  margin-bottom: 64px;
  text-align: center;
}

.trust-text {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray-text);
  margin-bottom: 24px;
}

.trust-logos {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 24px;
  width: 100%;
  overflow-x: auto;
  scrollbar-width: none;
}

.trust-logos::-webkit-scrollbar {
  display: none;
}

/* ── Desktop ── */
@media (min-width: 768px) {
  .hero-title-line--lead {
    display: block;
    white-space: nowrap;
  }

  .hero-title-line--tail {
    display: block;
    white-space: nowrap;
  }
}

@media (min-width: 1280px) {
  .page-wrapper {
    padding: 20px 24px;
  }

  .home-page .page-wrapper {
    padding: 0;
  }

  .main-card {
    padding: 36px 72px 52px;
    --home-gutter: 72px;
  }

  .home-page .main-card {
    max-width: 1520px;
    padding: 36px clamp(32px, 5vw, 88px) 56px;
    --home-gutter: clamp(32px, 5vw, 88px);
  }

  .navbar {
    margin-bottom: 56px;
  }

  .hero {
    gap: 12px 48px;
  }

  .hero-title {
    font-size: 4.5rem;
    letter-spacing: -0.03em;
  }

  .hero-subtitle {
    max-width: 432px;
    font-size: 1.125rem;
  }

  .hero-visual {
    min-height: 520px;
  }

  .hero-profile-scene {
    max-width: 400px;
  }

  .home-page .hero-config {
    max-width: 340px;
  }

  .trust-logo {
    font-size: 0.9375rem;
  }
}

@media (min-width: 1536px) {
  .main-card {
    max-width: min(1520px, calc(100vw - 48px));
    padding: 40px 88px 56px;
  }

  .home-page .main-card {
    max-width: 1520px;
    padding: 40px clamp(40px, 6vw, 96px) 56px;
  }

  .hero-title {
    font-size: 4.5rem;
  }
}

.trust-logo {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--gray-text);
  letter-spacing: 0.02em;
  white-space: nowrap;
  opacity: 0.55;
  transition: opacity 0.2s;
  flex-shrink: 0;
}

.trust-logo:hover {
  opacity: 1;
}

.trust-logo.clutch {
  font-style: italic;
  font-weight: 800;
  letter-spacing: 0.05em;
}

@media (max-width: 900px) {
  .service-cards {
    grid-template-columns: 1fr;
  }
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .trust-logos {
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px 32px;
  }

  .main-card {
    padding: 24px 32px 36px;
    --home-gutter: 32px;
  }

  .navbar {
    display: flex;
    justify-content: space-between;
  }

  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
    margin: 0 auto;
  }

  .hero-subtitle {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-content .btn {
    margin: 0 auto;
    width: fit-content;
    max-width: 100%;
  }

  .hero-trust {
    align-items: center;
  }

  .hero-social-proof {
    align-items: center;
  }

  .trust-badges--hero {
    justify-content: center;
  }

  .hero-content {
    max-width: 100%;
    padding-top: 0;
  }

  .social-proof {
    justify-content: center;
    margin-top: 48px;
  }

  .hero-visual {
    min-height: auto;
    justify-content: center;
    margin-top: 16px;
  }

  .hero-profile-scene {
    max-width: min(100%, 360px);
    min-height: 420px;
    margin: 0 auto;
  }

  .hero-config {
    max-width: min(100%, 100%);
    margin: 0 auto;
  }

  .hero-config__cta {
    width: 100%;
  }

  .hero-notif--1 {
    right: 0;
  }

  .hero-notif--2 {
    left: 0;
  }

  .service-cards {
    grid-template-columns: 1fr;
    max-width: 420px;
  }

  .service-selector-title {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .page-wrapper {
    padding: 12px;
  }

  .main-card {
    padding: 20px 20px 28px;
    border-radius: 20px;
  }

  .home-page .page-wrapper {
    padding: 0;
  }

  .home-page .main-card {
    border-radius: 0;
    max-width: 1440px;
    padding: 20px clamp(16px, 5vw, 28px) 0;
  }

  .nav-actions .login-link {
    display: none;
  }

  .hero-title {
    font-size: clamp(1.9rem, 8.2vw, 2.8rem);
    letter-spacing: -0.042em;
    line-height: 1.08;
  }

  .hero-title-line--lead,
  .hero-title-line--tail {
    display: block;
    white-space: nowrap;
  }

  .hero-highlight {
    padding: 0.18em 0.22em 0.06em;
  }

  .hero-trust {
    margin-top: 18px;
    gap: 16px;
    align-items: center;
  }

  .hero-social-proof {
    gap: 16px;
  }

  .hero-social-proof__stars svg {
    width: 15px;
    height: 15px;
  }

  .hero-social-proof__icon {
    width: 26px;
    height: 26px;
  }

  .hero-social-proof__text {
    font-size: 0.8125rem;
  }

  .trust-badges--hero {
    justify-content: center;
    gap: 8px 14px;
    max-width: 100%;
  }

  .trust-badges--hero .trust-badge {
    font-size: 0.75rem;
  }

  .hero-config {
    padding: 18px 16px 16px;
    gap: 14px;
    border-radius: 20px;
  }

  .hero-config__chip {
    min-height: 48px;
  }

  .hero-config__chip-qty {
    font-size: 0.9375rem;
  }

  .hero-config__price-value {
    font-size: 1.25rem;
  }

  .social-proof {
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 40px;
  }

  .trust-logos {
    gap: 20px 24px;
  }

  .trust-logo {
    font-size: 0.75rem;
  }

  .service-cards {
    max-width: none;
  }

  .platform-tab {
    padding: 10px 18px;
    font-size: 0.875rem;
  }
}

/* ── Order Page ── */
.main-card--order {
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.navbar--minimal {
  justify-content: center;
  padding-bottom: 0;
}

.logo--flex .logo-text {
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.navbar--minimal .nav-links,
.navbar--minimal .nav-actions,
.navbar--minimal .mobile-menu-btn {
  display: none;
}

.order-page {
  display: flex;
  flex-direction: column;
  padding: 8px 24px 48px;
  width: 100%;
}

.order-back {
  display: inline-flex;
  align-items: center;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--gray-text);
  text-decoration: none;
  margin-bottom: 24px;
  width: fit-content;
  transition: color 0.15s;
}

.order-back:hover {
  color: var(--black);
}

.order-header {
  margin-bottom: 28px;
}

.order-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 8px;
}

.order-title-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--black);
}

.order-subtitle {
  font-size: 1rem;
  font-weight: 400;
  color: var(--gray-text);
  line-height: 1.5;
  transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.order-subtitle.is-exiting,
.order-subtitle.is-entering {
  opacity: 0;
}

.order-subtitle.is-exiting {
  transform: translateY(-8px);
}

.order-subtitle.is-entering {
  transform: translateY(8px);
}

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

.package-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 0;
  padding: 2px;
}

.package-option {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 18px 20px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 16px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-family);
  box-sizing: border-box;
  transition:
    background-color 0.28s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.28s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.28s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.package-option:hover {
  border-color: var(--black);
}

.package-option.selected {
  border-color: var(--black);
  background: #F7FFE5;
}

.package-option.selected:hover {
  transform: none;
}

.package-option.is-selecting {
  animation: package-select 0.38s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.package-option.is-deselecting {
  animation: package-deselect 0.24s ease forwards;
}

@keyframes package-select {
  0% {
    transform: scale(0.98);
  }
  55% {
    transform: scale(1.015);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes package-deselect {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0.99);
  }
}

.package-option-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  width: 100%;
}

.package-qty {
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--black);
}

.package-badge {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--black);
  background: var(--primary);
  padding: 4px 8px;
  border-radius: 999px;
}

.package-price {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--black);
}

.order-field {
  margin-bottom: 24px;
}

.order-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.order-input-wrap {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  background: var(--white);
  overflow: hidden;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.order-input-wrap:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(184, 255, 44, 0.35);
}

.order-input-prefix {
  padding: 14px 0 14px 16px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--gray-text);
  user-select: none;
}

.order-input {
  flex: 1;
  min-width: 0;
  padding: 14px 16px 14px 4px;
  border: none;
  background: transparent;
  font-family: var(--font-family);
  font-size: 1rem;
  font-weight: 500;
  color: var(--black);
  outline: none;
}

.order-input-wrap--submit {
  padding: 4px 4px 4px 0;
}

.order-input-wrap--submit .order-input {
  padding-right: 10px;
}

.username-search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.username-search-btn .btn-arrow {
  width: 40px;
  height: 40px;
  border-radius: 12px;
}

.username-search-btn:hover:not(:disabled) .btn-arrow {
  background: var(--primary-dark);
}

.username-search-btn:disabled {
  cursor: default;
  opacity: 0.45;
}

.username-modal__error {
  margin: 10px 0 0;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4;
  color: #c2410c;
}

.username-modal__error.is-hidden {
  display: none;
}

.order-input::placeholder {
  color: #B0B0B0;
}

.account-preview {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: var(--off-white);
  border: 1px solid var(--border);
}

.account-preview.is-hidden {
  display: none;
}

.account-preview:not(.is-hidden) {
  animation: preview-in 0.32s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes preview-in {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.account-preview-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--white);
  border: 1px solid var(--border);
}

.account-preview-user {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--black);
}

.account-preview-confirm {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray-text);
  margin-left: auto;
}

.order-cta {
  width: 100%;
  justify-content: center;
  margin-bottom: 14px;
}

.order-trust {
  font-size: 0.875rem;
  font-weight: 600;
  color: #454545;
  text-align: center;
  line-height: 1.5;
}

/* ── FLEX Builder ── */
.flex-builder {
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 20px;
  background: var(--white);
}

.flex-builder-label {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 20px;
}

.builder-section {
  margin-bottom: 20px;
}

.builder-section--primary {
  margin-bottom: 24px;
}

.builder-section-title {
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--gray-text);
}

.builder-section-title--primary {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--black);
  letter-spacing: -0.02em;
}

.builder-divider-label {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--gray-text);
  margin-bottom: 16px;
}

.builder-addons {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.builder-section--addon .builder-section-title {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 8px;
}

.builder-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.builder-chip {
  font-family: var(--font-family);
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 8px 14px;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.builder-chip--primary {
  font-size: 0.9375rem;
  padding: 10px 16px;
}

.builder-chip:hover {
  border-color: var(--black);
}

.builder-chip.selected {
  border: 2px solid var(--black);
  background: #F7FFE5;
  padding: 7px 13px;
}

.builder-chip--primary.selected {
  padding: 9px 15px;
}

.flex-upsell {
  padding: 14px 16px;
  margin-bottom: 20px;
  border-radius: 14px;
  background: var(--off-white);
  border: 1px solid var(--border);
}

.flex-upsell.is-hidden {
  display: none;
}

.flex-upsell-title {
  font-size: 0.875rem;
  font-weight: 800;
  margin-bottom: 4px;
}

.flex-upsell-desc {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray-text);
  margin-bottom: 12px;
}

.flex-upsell-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.flex-upsell-btn {
  font-family: var(--font-family);
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 8px 14px;
  border: 1.5px solid var(--black);
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  transition: background 0.15s;
}

.flex-upsell-btn:hover {
  background: #F7FFE5;
}

.builder-divider {
  height: 1px;
  background: var(--border);
  margin: 4px 0 20px;
}

.builder-field {
  margin-bottom: 20px;
}

.flex-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  padding-top: 4px;
}

.flex-total-summary {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.4;
}

.flex-total-price {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--black);
  white-space: nowrap;
}

.flex-builder .order-cta {
  margin-bottom: 0;
}

/* ── Step Wizard ── */
.step-progress {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
}

.step-dot {
  flex: 1;
  height: 4px;
  border-radius: 999px;
  background: var(--border);
  transform-origin: center;
  transition:
    background 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.step-dot.active {
  background: var(--black);
  transform: scaleY(1.6);
}

.step-dot.done {
  background: var(--black);
}

.step-counter {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 20px;
  transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

.step-counter.is-exiting,
.step-counter.is-entering {
  opacity: 0;
  transform: translateY(-4px);
}

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

.step-stage {
  overflow: visible;
  margin-bottom: 20px;
}

.step-panel {
  transition: opacity 0.28s cubic-bezier(0.4, 0, 0.2, 1), transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: opacity, transform;
}

.step-panel.is-exiting-forward {
  opacity: 0;
  transform: translateX(-28px);
}

.step-panel.is-exiting-back {
  opacity: 0;
  transform: translateX(28px);
}

.step-panel.is-entering-forward {
  opacity: 0;
  transform: translateX(28px);
}

.step-panel.is-entering-back {
  opacity: 0;
  transform: translateX(-28px);
}

.step-panel.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.step-metric-title {
  font-size: 1.125rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  animation: step-title-in 0.35s cubic-bezier(0.4, 0, 0.2, 1) both;
}

@keyframes step-title-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.package-grid--animate-in .package-option {
  opacity: 0;
  transform: translateY(12px);
  animation: grid-item-in 0.38s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes grid-item-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.flex-total--checkout {
  animation: step-title-in 0.35s cubic-bezier(0.4, 0, 0.2, 1) 0.08s both;
}

.order-field {
  animation: step-title-in 0.35s cubic-bezier(0.4, 0, 0.2, 1) both;
}

#step-continue {
  width: 100%;
  justify-content: center;
  margin-bottom: 14px;
  transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
}

#step-continue.is-exiting,
#step-continue.is-entering {
  opacity: 0;
  transform: translateY(6px);
}

#step-continue.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .step-panel,
  .order-subtitle,
  .step-counter,
  #step-continue,
  .package-option,
  .step-dot,
  .package-grid--animate-in .package-option,
  .step-metric-title,
  .account-preview:not(.is-hidden),
  .flex-total--checkout,
  .order-field {
    animation: none !important;
    transition: none !important;
  }

  .step-panel.is-visible,
  .order-subtitle.is-visible,
  .step-counter.is-visible,
  #step-continue.is-visible {
    opacity: 1;
    transform: none;
  }
}

.package-option--none .package-qty {
  color: var(--gray-text);
}

.package-option--none .package-price {
  color: var(--gray-text);
  font-weight: 600;
}

.flex-total--checkout {
  padding: 16px 0 4px;
  border-top: 1px solid var(--border);
  margin-top: 4px;
}

@media (max-width: 480px) {
  .order-page {
    padding-left: 16px;
    padding-right: 16px;
  }

  .package-grid {
    grid-template-columns: 1fr;
  }

  .account-preview {
    flex-wrap: wrap;
  }

  .account-preview-confirm {
    margin-left: 42px;
  }
}

/* ══════════════════════════════════════════
   FLEX Configurator
   ══════════════════════════════════════════ */

.configurator-page {
  --font-heading: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
  font-family: var(--font-body);
}

.page-wrapper--config {
  padding: 12px 12px 96px;
  align-items: flex-start;
}

.config-shell {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 28px 32px 36px;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.config-shell.is-loaded {
  opacity: 1;
  transform: translateY(0);
}

.config-header-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.configurator-page .logo--flex .logo-mark {
  width: 40px;
  height: 40px;
  border-radius: 11px;
}

.configurator-page .logo--flex .logo-text {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.config-back {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-text);
  text-decoration: none;
  transition: color 0.2s;
}

.config-back:hover {
  color: var(--black);
}

.platform-switcher {
  display: inline-flex;
  gap: 4px;
  padding: 4px;
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: 999px;
  margin-bottom: 24px;
}

.platform-switch {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 9px 16px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--gray-text);
  cursor: pointer;
  transition: background 0.32s ease, color 0.32s ease;
}

.platform-switch__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.platform-switch__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.platform-switch:active {
  opacity: 0.85;
}

.platform-switch:hover {
  color: var(--black);
}

.platform-switch.is-active {
  background: var(--black);
  color: var(--white);
}

.platform-switch.is-locked,
.platform-switch:disabled {
  opacity: 0.42;
  cursor: not-allowed;
  pointer-events: none;
}

.platform-switch.is-locked:hover,
.platform-switch:disabled:hover {
  color: inherit;
}

.config-intro {
  margin-bottom: 18px;
}

.config-page-title {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.config-progress-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--black);
  color: var(--white);
  font-size: 0.6875rem;
  font-weight: 700;
  flex-shrink: 0;
}

.config-progress {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-bottom: 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
}

.config-progress-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-text);
  transition: color 0.18s ease;
}

.config-progress-item.is-clickable {
  padding: 0;
  border: none;
  background: none;
  font-family: var(--font-body);
  cursor: pointer;
}

.config-progress-item.is-clickable:hover {
  color: var(--black);
}

.config-progress-item.is-clickable:hover .config-progress-num {
  border-color: var(--black);
}

.config-progress-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 1.5px solid var(--border);
  font-size: 0.6875rem;
  font-weight: 700;
  transition: background 0.22s ease, border-color 0.22s ease, color 0.22s ease, transform 0.22s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.config-progress-item.is-active {
  color: var(--black);
}

.config-progress-item.is-active .config-progress-num {
  background: var(--primary);
  border-color: var(--black);
  color: var(--black);
}

.config-progress-item:not(.is-active) .config-progress-num {
  background: var(--white);
  border-color: var(--border);
  color: var(--gray-text);
}

.config-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 40px;
  align-items: start;
}

.config-step-panel {
  opacity: 1;
  transform: translateX(0);
  transition: opacity 0.38s cubic-bezier(0.22, 1, 0.36, 1), transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.config-step-panel.is-exiting-forward {
  opacity: 0;
  transform: translateX(-28px);
}

.config-step-panel.is-exiting-back {
  opacity: 0;
  transform: translateX(28px);
}

.config-step-panel.is-entering-forward {
  opacity: 0;
  transform: translateX(28px);
}

.config-step-panel.is-entering-back {
  opacity: 0;
  transform: translateX(-28px);
}

.config-step-panel.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.step-block.is-entering .step-heading {
  animation: flex-fade-up 0.42s ease both;
}

.step-block.is-entering .step-subheading {
  animation: flex-fade-up 0.42s ease 0.05s both;
}

.step-block.is-entering .step-back-btn {
  animation: flex-fade-up 0.36s ease both;
}

.step-block.is-entering .qty-grid,
.step-block.is-entering .addons-list,
.step-block.is-entering .account-user-trigger,
.step-block.is-entering .order-field,
.step-block.is-entering .account-post-split {
  animation: flex-fade-up 0.42s ease 0.1s both;
}

.step-block.is-entering .step-skip,
.step-block.is-entering .step-skip-btn {
  animation: flex-fade-up 0.42s ease 0.18s both;
}

@keyframes flex-fade-up {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.anim-in {
  animation: flex-fade-up 0.36s ease both;
}

.step-block {
  max-width: 640px;
}

.step-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 16px;
  padding: 0;
  border: none;
  background: none;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-text);
  cursor: pointer;
  transition: color 0.15s ease;
}

.step-back-btn:hover {
  color: var(--black);
}

.step-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.step-subheading {
  font-size: 0.9375rem;
  color: var(--gray-text);
  margin-bottom: 22px;
  line-height: 1.55;
}

.step-skip {
  margin-top: 16px;
  font-size: 0.8125rem;
  color: var(--gray-text);
}

.step-skip-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  margin-top: 18px;
  padding: 12px 14px;
  border: 1px dashed var(--border);
  border-radius: 14px;
  background: transparent;
  font-family: inherit;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-text);
  cursor: pointer;
  transition:
    color 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease,
    transform 0.18s ease;
}

.step-skip-btn:hover {
  color: var(--black);
  border-color: #C8C8C2;
  background: var(--off-white);
  transform: translateY(-1px);
}

.step-skip-btn span {
  transition: transform 0.18s ease;
}

.step-skip-btn:hover span {
  transform: translateX(2px);
}

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

.qty-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding: 18px 16px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 16px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  transition: border-color 0.28s ease, background-color 0.28s ease;
}

.qty-card:hover {
  border-color: var(--black);
}

.qty-card.is-selected {
  border: 2px solid var(--black);
  background: var(--white);
}

.qty-card__mark {
  position: absolute;
  top: 12px;
  right: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--black);
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1;
}

.qty-card--custom {
  border-style: dashed;
}

.qty-card--custom:not(.is-selected):hover {
  background: var(--white);
}

.qty-card__amount--custom {
  font-size: 1.5rem;
  line-height: 1;
}

.qty-card__amount {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--black);
  -webkit-text-fill-color: var(--black);
}

.qty-card__label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray-text);
}

.qty-card__price {
  margin-top: 6px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--black);
  -webkit-text-fill-color: var(--black);
}

.qty-card__price .vol-price-stack--card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}

.vol-price-meta {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
}

.vol-discount {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #5A7A00;
  text-transform: uppercase;
}

.vol-price {
  font-weight: 700;
  color: var(--black);
  transition: color 0.18s ease;
}

.vol-ref {
  font-size: 0.6875rem;
  font-weight: 500;
  color: var(--gray-text);
  text-decoration: line-through;
}

.qty-card.has-badge {
  padding-top: 38px;
}

.qty-card__badge {
  position: absolute;
  top: 10px;
  left: 12px;
  right: 12px;
  width: fit-content;
  max-width: calc(100% - 24px);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: var(--primary);
  color: var(--black);
  padding: 4px 8px;
  border-radius: 999px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  z-index: 1;
  pointer-events: none;
}

.qty-card__badge-mark {
  font-size: 0.625rem;
  font-weight: 800;
  line-height: 1;
  flex-shrink: 0;
}

.extras-root {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.extras-bundle {
  padding: 22px 20px 18px;
  border: 1.5px solid rgba(146, 219, 0, 0.45);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(184, 255, 44, 0.14), rgba(255, 255, 255, 0.98) 48%);
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.extras-bundle.is-added {
  border-color: rgba(146, 219, 0, 0.82);
  box-shadow: none;
}

.extras-bundle.is-bundle-selecting,
.extras-bundle.is-bundle-unselecting {
  will-change: transform, border-color;
}

.extras-bundle.is-bundle-selecting.is-bundle-anim-ready {
  animation: bundle-card-select 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.extras-bundle.is-bundle-unselecting.is-bundle-anim-ready {
  animation: bundle-card-unselect 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes bundle-card-select {
  0% { transform: scale(1); }
  45% { transform: scale(1.012); }
  100% { transform: scale(1); }
}

@keyframes bundle-card-unselect {
  0% { transform: scale(1); }
  45% { transform: scale(0.992); }
  100% { transform: scale(1); }
}

.extras-bundle__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 12px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--black);
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.extras-bundle__badge-star,
.extras-bundle__badge-check {
  line-height: 1;
}

.extras-bundle__badge-text {
  line-height: 1;
}

.extras-bundle__title {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 8px;
  color: var(--black);
}

.extras-bundle__text {
  margin: 0 0 16px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--gray-text);
}

.extras-bundle__list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
  padding: 0;
}

.extras-bundle__item {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid var(--border);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--black);
  white-space: nowrap;
  transition: border-color 0.3s ease;
}

.extras-bundle__item.is-included {
  border-color: rgba(146, 219, 0, 0.45);
}

.extras-bundle__item-icon {
  display: inline-flex;
  color: var(--black);
  flex-shrink: 0;
}

.extras-bundle__item-icon svg {
  width: 15px;
  height: 15px;
}

.extras-bundle__item-label {
  min-width: 0;
  white-space: nowrap;
}

.extras-bundle__item-check {
  position: absolute;
  top: -5px;
  right: -5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  margin: 0;
  border-radius: 999px;
  background: var(--primary);
  color: var(--black);
  font-size: 0.625rem;
  font-weight: 800;
  line-height: 1;
  flex-shrink: 0;
  opacity: 0;
  pointer-events: none;
  transform: scale(0.7);
  transition:
    opacity 0.28s ease,
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.extras-bundle__item.is-included .extras-bundle__item-check {
  opacity: 1;
  transform: scale(1);
}

.extras-bundle__pricing {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.extras-bundle__prices {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.extras-bundle__was {
  font-size: 0.8125rem;
  color: var(--gray-text);
}

.extras-bundle__was s {
  color: var(--gray-text);
}

.extras-bundle__now {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--black);
}

.extras-bundle__save {
  flex-shrink: 0;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(184, 255, 44, 0.35);
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 800;
}

.extras-bundle__cta {
  --bundle-mark-size: 44px;
  position: relative;
  width: 100%;
  justify-content: center;
  min-height: 52px;
  padding: 4px calc(var(--bundle-mark-size) + 4px) 4px 4px;
  overflow: hidden;
  border: 1.5px solid transparent;
  transition:
    background-color 0.3s ease,
    color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

.extras-bundle__cta-label {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 12px;
  white-space: nowrap;
  min-width: 0;
}

.extras-bundle__cta-state {
  display: none;
  align-items: center;
  justify-content: center;
}

.extras-bundle__cta-state--idle {
  display: inline-flex;
}

.extras-bundle__cta-idle-short {
  display: none;
}

.extras-bundle__cta.is-added .extras-bundle__cta-state--idle {
  display: none;
}

.extras-bundle__cta.is-added .extras-bundle__cta-state--added {
  display: inline-flex;
}

.extras-bundle__cta.is-added:hover .extras-bundle__cta-state--added,
.extras-bundle__cta.is-added:focus-visible .extras-bundle__cta-state--added {
  display: none;
}

.extras-bundle__cta.is-added:hover .extras-bundle__cta-state--remove,
.extras-bundle__cta.is-added:focus-visible .extras-bundle__cta-state--remove {
  display: inline-flex;
}

.extras-bundle__cta-mark {
  position: absolute;
  top: 50%;
  left: calc(100% - 4px - var(--bundle-mark-size));
  width: var(--bundle-mark-size);
  height: var(--bundle-mark-size);
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: var(--primary);
  color: var(--black);
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1;
  z-index: 2;
}

.extras-bundle__cta-mark-icon {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.extras-bundle__cta-mark-icon--added,
.extras-bundle__cta-mark-icon--remove {
  opacity: 0;
  transform: scale(0.85);
}

.extras-bundle__cta.is-added .extras-bundle__cta-mark-icon--plus {
  opacity: 0;
  transform: scale(0.85);
}

.extras-bundle__cta.is-added .extras-bundle__cta-mark-icon--added {
  opacity: 1;
  transform: scale(1);
  font-size: 0.95rem;
}

.extras-bundle__cta.is-added:hover .extras-bundle__cta-mark-icon--added,
.extras-bundle__cta.is-added:focus-visible .extras-bundle__cta-mark-icon--added {
  opacity: 0;
  transform: scale(0.85);
}

.extras-bundle__cta.is-added:hover .extras-bundle__cta-mark-icon--remove,
.extras-bundle__cta.is-added:focus-visible .extras-bundle__cta-mark-icon--remove {
  opacity: 1;
  transform: scale(1);
}

.extras-bundle__remove-link {
  display: none;
  width: 100%;
  margin-top: 10px;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--gray-text);
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.extras-bundle__remove-link:hover {
  color: var(--black);
}

@media (hover: none), (max-width: 960px) {
  .extras-bundle__cta.is-added:hover .extras-bundle__cta-state--added,
  .extras-bundle__cta.is-added:focus-visible .extras-bundle__cta-state--added {
    display: inline-flex;
  }

  .extras-bundle__cta.is-added:hover .extras-bundle__cta-state--remove,
  .extras-bundle__cta.is-added:focus-visible .extras-bundle__cta-state--remove {
    display: none;
  }

  .extras-bundle__cta.is-added:hover .extras-bundle__cta-mark-icon--added,
  .extras-bundle__cta.is-added:focus-visible .extras-bundle__cta-mark-icon--added {
    opacity: 1;
    transform: scale(1);
  }

  .extras-bundle__cta.is-added:hover .extras-bundle__cta-mark-icon--remove,
  .extras-bundle__cta.is-added:focus-visible .extras-bundle__cta-mark-icon--remove {
    opacity: 0;
  }

  .extras-bundle.is-added .extras-bundle__remove-link:not([hidden]) {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  .extras-bundle,
  .extras-bundle__item-check,
  .extras-bundle__cta,
  .extras-bundle__cta-mark-icon {
    transition: none !important;
  }

  .extras-bundle.is-bundle-selecting.is-bundle-anim-ready,
  .extras-bundle.is-bundle-unselecting.is-bundle-anim-ready {
    animation: none !important;
  }
}

.extras-bundle__customize-toggle {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin: 0 0 14px;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--gray-text);
  font: inherit;
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.extras-bundle__customize-toggle:hover {
  color: var(--black);
}

.extras-bundle__customize-chevron {
  display: none;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
}

/* Mobile-only: compact recommended package card */
@media (max-width: 640px) {
  .extras-bundle {
    padding: 14px 14px 12px;
    border-radius: 16px;
  }

  .extras-bundle__badge {
    margin-bottom: 8px;
    padding: 3px 8px;
    gap: 4px;
    font-size: 0.625rem;
    letter-spacing: 0.05em;
  }

  .extras-bundle__title {
    font-size: 1.05rem;
    margin: 0 0 8px;
    line-height: 1.2;
  }

  .extras-bundle__text {
    display: none;
  }

  .extras-bundle__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    margin: 0 0 8px;
  }

  .extras-bundle__item {
    gap: 6px;
    padding: 6px 10px;
    border-radius: 10px;
    font-size: 0.75rem;
    min-height: 0;
  }

  .extras-bundle__item:nth-child(3) {
    grid-column: 1 / 2;
  }

  .extras-bundle__item-icon svg {
    width: 13px;
    height: 13px;
  }

  .extras-bundle__item-check {
    top: -4px;
    right: -4px;
    width: 14px;
    height: 14px;
    font-size: 0.55rem;
  }

  .extras-bundle__customize-toggle {
    margin: 0 0 10px;
    font-size: 0.75rem;
  }

  .extras-bundle__customize-chevron {
    display: inline-block;
  }

  .extras-bundle__pricing {
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 8px 10px;
    margin: 0 0 12px;
    padding-top: 10px;
    border-top: 1px solid rgba(10, 10, 10, 0.08);
  }

  .extras-bundle__prices {
    flex-direction: row;
    align-items: baseline;
    gap: 8px;
  }

  .extras-bundle__price-label {
    display: none;
  }

  .extras-bundle__was {
    font-size: 0.8125rem;
    line-height: 1;
  }

  .extras-bundle__was s {
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(10, 10, 10, 0.42);
    text-decoration-thickness: 1px;
  }

  .extras-bundle__now {
    font-size: 1.2rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1;
  }

  .extras-bundle__now-amount {
    font: inherit;
  }

  .extras-bundle__save {
    padding: 4px 8px;
    font-size: 0.6875rem;
    letter-spacing: -0.01em;
  }

  .extras-bundle__cta {
    --bundle-mark-size: 40px;
    min-height: 48px;
    border-radius: 12px;
  }

  .extras-bundle__cta-idle-full {
    display: none;
  }

  .extras-bundle__cta-idle-short {
    display: inline;
  }

  .extras-bundle__cta-label {
    padding: 0 10px;
    font-size: 0.9375rem;
    font-weight: 700;
  }

  .extras-bundle__cta-mark {
    border-radius: 10px;
    font-size: 1.05rem;
  }

  .extras-bundle__remove-link {
    margin-top: 8px;
    font-size: 0.75rem;
  }
}

.extras-bundle__customize {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bundle-service-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.bundle-service {
  border: 1px solid rgba(10, 10, 10, 0.1);
  border-radius: 14px;
  background: var(--white);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.bundle-service.is-removed {
  opacity: 0.55;
}

.bundle-service.is-expanded {
  border-color: rgba(10, 10, 10, 0.14);
  background: var(--white);
}

.bundle-service__compact {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 64px;
  padding: 0 10px 0 12px;
}

.bundle-service__main {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
  min-height: 64px;
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.bundle-service__main:disabled {
  cursor: default;
}

.bundle-service__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: var(--white);
  border: 1px solid rgba(10, 10, 10, 0.1);
  color: var(--black);
  flex-shrink: 0;
}

.bundle-service__icon svg {
  width: 16px;
  height: 16px;
}


.bundle-service__title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
}

.bundle-service__remove,
.bundle-service__restore {
  border: none;
  background: transparent;
  font: inherit;
  cursor: pointer;
  flex-shrink: 0;
  padding: 6px 4px;
  color: var(--gray-text);
  font-size: 0.875rem;
  font-weight: 500;
}

.bundle-service__remove {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.bundle-service__remove:hover:not(:disabled),
.bundle-service__restore:hover {
  color: var(--black);
}

.bundle-service__remove:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.bundle-service__chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: var(--gray-text);
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease;
}

span.bundle-service__chevron {
  cursor: default;
  opacity: 0.45;
}

.bundle-service__chevron:hover {
  color: var(--black);
}

.bundle-service__chevron.is-open {
  transform: rotate(180deg);
  color: var(--black);
}

.bundle-service__drawer {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition:
    grid-template-rows 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.22s ease;
}

.bundle-service.is-expanded .bundle-service__drawer {
  grid-template-rows: 1fr;
  opacity: 1;
}

.bundle-service__drawer-inner {
  overflow: hidden;
  min-height: 0;
}

.bundle-service__body {
  padding: 0 12px 12px;
  border-top: 1px solid rgba(10, 10, 10, 0.08);
  margin: 0 10px 10px;
}

.bundle-service__qty-label {
  margin: 10px 0 8px;
  font-size: 0.875rem;
  color: var(--gray-text);
  line-height: 1.3;
}

.bundle-service__qty-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  width: 100%;
}

.bundle-service__qty {
  display: inline-flex;
  flex: 1 1 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  min-width: 0;
  min-height: 44px;
  padding: 7px 8px;
  border: 1px solid rgba(10, 10, 10, 0.12);
  border-radius: 12px;
  background: var(--white);
  color: var(--black);
  font: inherit;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.bundle-service__qty-value {
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.15;
}

.bundle-service__qty-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-text);
  line-height: 1.1;
}

.bundle-service__qty.is-selected {
  border-color: rgba(146, 219, 0, 0.75);
  background: rgba(184, 255, 44, 0.2);
}

.bundle-service__qty.is-selected .bundle-service__qty-tag {
  color: #5f8f00;
}

.bundle-service__qty.is-selecting {
  animation: bundle-qty-select 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes bundle-qty-select {
  0% { transform: scale(1); }
  40% { transform: scale(0.96); }
  100% { transform: scale(1); }
}

.bundle-customize-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
  padding: 10px 12px;
  border: 1px dashed rgba(10, 10, 10, 0.16);
  border-radius: 12px;
  background: #fafafa;
  font-size: 0.75rem;
  color: var(--gray-text);
  line-height: 1.4;
}

.bundle-customize-note__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  margin-top: 1px;
  color: #92db00;
  flex-shrink: 0;
}

.bundle-customize-note__icon svg {
  display: block;
  width: 16px;
  height: 16px;
}

.bundle-customize-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  pointer-events: none;
}

.bundle-customize-modal[hidden] {
  display: none;
}

.bundle-customize-modal.is-open,
.bundle-customize-modal.is-closing {
  pointer-events: auto;
}

.bundle-customize-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.45);
  opacity: 0;
  transition: opacity 0.36s ease;
}

.bundle-customize-modal.is-open .bundle-customize-modal__backdrop {
  opacity: 1;
}

.bundle-customize-modal.is-closing .bundle-customize-modal__backdrop {
  opacity: 0;
}

.bundle-customize-modal__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(100%, 420px);
  max-height: min(86vh, 720px);
  overflow: hidden;
  padding: 0;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(10, 10, 10, 0.18);
  opacity: 0;
  transform: translateY(14px) scale(0.98);
  transition: opacity 0.36s ease, transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}

.bundle-customize-modal.is-open .bundle-customize-modal__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.bundle-customize-modal.is-closing .bundle-customize-modal__panel {
  opacity: 0;
  transform: translateY(10px) scale(0.985);
}

.bundle-customize-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: none;
  border-radius: 10px;
  background: transparent;
  color: var(--gray-text);
  cursor: pointer;
}

.bundle-customize-modal__close:hover {
  background: rgba(10, 10, 10, 0.06);
  color: var(--black);
}

.bundle-customize-modal__title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  margin: 0 36px 6px 0;
}

.bundle-customize-modal__text {
  margin: 0 0 14px;
  font-size: 0.9375rem;
  color: var(--gray-text);
  line-height: 1.45;
}

.bundle-customize-modal__scroll {
  flex: 1 1 auto;
  min-height: 0;
  overflow: auto;
  padding: 22px 18px 14px;
  -webkit-overflow-scrolling: touch;
}

.bundle-customize-modal__body {
  margin-bottom: 0;
}

.bundle-customize-modal__footer {
  flex: 0 0 auto;
  padding: 14px 18px 18px;
  border-top: 1px solid rgba(10, 10, 10, 0.08);
  background: #f5f5f5;
}

.bundle-customize-modal__meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 12px;
}

.bundle-customize-modal__pricing {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.bundle-customize-modal__prices {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.bundle-customize-modal__was {
  font-size: 0.875rem;
  color: var(--gray-text);
}

.bundle-customize-modal__was s {
  text-decoration: line-through;
}

.bundle-customize-modal__now {
  font-size: 1rem;
  font-weight: 700;
  color: var(--black);
  line-height: 1.25;
}

.bundle-customize-modal__now span {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.bundle-customize-modal__now span.is-price-up {
  animation: price-total-up 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.bundle-customize-modal__now span.is-price-down {
  animation: price-total-down 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.bundle-customize-modal__save {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(184, 255, 44, 0.55);
  color: #2f4d00;
  font-size: 0.8125rem;
  font-weight: 700;
  white-space: nowrap;
}

.bundle-customize-modal__save[hidden] {
  display: none !important;
}

.bundle-customize-modal__save.is-pop {
  animation: bundle-save-pop 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes bundle-save-pop {
  0% { transform: scale(1); }
  45% { transform: scale(1.06); }
  100% { transform: scale(1); }
}

.bundle-customize-modal__restore {
  align-self: flex-start;
  padding: 0;
  border: none;
  background: transparent;
  color: var(--gray-text);
  font: inherit;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

.bundle-customize-modal__restore:hover {
  color: var(--black);
}

.bundle-customize-modal__done {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 54px;
  padding: 14px 18px;
  border-radius: 14px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.2;
  overflow: visible;
}

@media (max-width: 720px) {
  .bundle-customize-modal {
    padding: 10px;
    align-items: flex-end;
  }

  .bundle-customize-modal__panel {
    width: 100%;
    max-height: 90vh;
    border-radius: 18px 18px 14px 14px;
  }

  .bundle-customize-modal__scroll {
    padding: 20px 16px 12px;
  }

  .bundle-customize-modal__footer {
    padding: 14px 16px calc(16px + env(safe-area-inset-bottom, 0px));
  }

  .bundle-service__compact,
  .bundle-service__main {
    min-height: 68px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bundle-customize-modal__backdrop,
  .bundle-customize-modal__panel,
  .bundle-service,
  .bundle-service__drawer,
  .bundle-service__chevron {
    transition: none !important;
  }

  .bundle-service__qty.is-selecting,
  .bundle-customize-modal__now span.is-price-up,
  .bundle-customize-modal__now span.is-price-down,
  .bundle-customize-modal__save.is-pop {
    animation: none !important;
  }
}
.extras-section__head {
  margin-bottom: 14px;
}

.extras-section__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 4px;
}

.extras-section__text {
  margin: 0;
  font-size: 0.875rem;
  color: var(--gray-text);
  line-height: 1.45;
}

.extras-more {
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
  overflow: hidden;
}

.extras-more__toggle {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 16px;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: inherit;
  transition: background-color 0.2s ease;
}

.extras-more__toggle:hover {
  background: rgba(10, 10, 10, 0.02);
}

.extras-more__toggle-copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
  flex: 1;
}

.extras-more__toggle-title {
  font-family: var(--font-heading);
  font-size: 0.975rem;
  font-weight: 700;
  color: var(--black);
}

.extras-more__toggle-text {
  font-size: 0.8125rem;
  color: var(--gray-text);
}

.extras-more__chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: rgba(10, 10, 10, 0.05);
  color: var(--black);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.2s ease;
}

.extras-more.is-open .extras-more__chevron {
  transform: rotate(180deg);
  background: rgba(184, 255, 44, 0.35);
}

.extras-more__panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.extras-more.is-open .extras-more__panel {
  grid-template-rows: 1fr;
}

.extras-more__panel-inner {
  overflow: hidden;
  min-height: 0;
}

.extras-more__panel-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0 12px 0;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    opacity 0.28s ease,
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    padding 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.extras-more.is-open .extras-more__panel-content {
  opacity: 1;
  transform: translateY(0);
  padding: 0 12px 14px;
}

@media (prefers-reduced-motion: reduce) {
  .extras-more__panel,
  .extras-more__panel-content,
  .extras-more__chevron {
    transition: none;
  }
}

.config-summary-lines__badge {
  display: inline-flex;
  align-items: center;
  margin-right: 8px;
  padding: 2px 7px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--black);
  font-size: 0.625rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  vertical-align: middle;
}

.config-summary-lines__badge.is-star {
  width: 18px;
  height: 18px;
  padding: 0;
  justify-content: center;
  font-size: 0.7rem;
  letter-spacing: 0;
}

.addon-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.addon-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--white);
  overflow: hidden;
  transition:
    border-color 0.32s ease,
    box-shadow 0.32s ease,
    background-color 0.32s ease,
    opacity 0.32s ease,
    transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.addon-card.is-addon-removing {
  opacity: 0;
  transform: translateY(-8px) scale(0.985);
  pointer-events: none;
}

.addon-card.is-expanded {
  border-color: var(--border);
}

.addon-card.is-added {
  border-color: var(--border);
  background: var(--white);
}

.addon-card__compact--added {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px 16px;
  border: none;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

.addon-card__compact--added:hover .addon-card__edit {
  color: var(--black);
}

.addon-card.is-added .addon-card__check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 8px;
  background: var(--primary);
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 700;
  flex-shrink: 0;
  margin-left: auto;
}

.addon-card__edit {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-text);
  flex-shrink: 0;
}

.addon-card__body {
  display: grid;
  grid-template-rows: 1fr;
  opacity: 1;
  padding: 0 16px 16px;
  transition:
    grid-template-rows 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.28s ease,
    padding 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.addon-card.is-expanded.is-addon-opening .addon-card__body,
.addon-card.is-expanded.is-addon-closing .addon-card__body {
  grid-template-rows: 0fr;
  opacity: 0;
  padding-bottom: 0;
}

.addon-card.is-expanded.is-addon-closing-fast .addon-card__body {
  transition-duration: 0.17s, 0.14s, 0.17s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1), ease, cubic-bezier(0.4, 0, 0.2, 1);
}

.addon-card.is-expanded.is-addon-closing-fast .addon-card__chevron {
  transition-duration: 0.17s;
}

.addon-card__body-inner {
  overflow: hidden;
  min-height: 0;
  padding-top: 2px;
}

.addon-card__selection.is-updating {
  animation: addon-selection-change 0.34s ease both;
}

@keyframes addon-selection-change {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  45% {
    opacity: 0.35;
    transform: translateY(4px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.addon-card__compact {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
}

.addon-card__copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
  flex: 1;
}

.addon-card__hint {
  margin: 0;
  font-size: 0.8125rem;
  color: var(--gray-text);
  line-height: 1.35;
}

.addon-card__chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 10px;
  background: rgba(10, 10, 10, 0.05);
  color: var(--black);
  flex-shrink: 0;
  cursor: pointer;
  padding: 0;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.2s ease;
}

.addon-card__chevron.is-open {
  transform: rotate(180deg);
  background: rgba(184, 255, 44, 0.35);
}

span.addon-card__chevron {
  cursor: default;
}

.addon-card__line {
  display: flex;
  align-items: center;
  gap: 12px;
}

.addon-card__line--sub {
  margin-top: 6px;
  padding-left: 50px;
  justify-content: space-between;
  gap: 10px;
}

.addon-card__line .addon-card__title {
  flex: 1;
  min-width: 0;
}

.addon-card__line .addon-card__price-tag {
  margin-left: auto;
  flex-shrink: 0;
}

.addon-card__line--sub .addon-card__rec {
  margin: 0;
}

.addon-card__row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  min-height: 72px;
}

.addon-card__row--head {
  min-height: auto;
  padding: 14px 16px 12px;
  border-bottom: none;
}

.addon-card__row--head .addon-card__title {
  flex: 1;
  min-width: 0;
  margin: 0;
}

.addon-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--off-white);
  color: var(--black);
  flex-shrink: 0;
}

.addon-card__info {
  flex: 1;
  min-width: 0;
}

.addon-card__title {
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 2px;
}

.addon-card__rec {
  font-size: 0.8125rem;
  color: var(--gray-text);
}

.addon-card__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.addon-card__price-tag {
  font-size: 0.8125rem;
  font-weight: 700;
  white-space: nowrap;
  color: var(--black);
}

.addon-card__check {
  margin-left: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
}

.addon-card__qty-label {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-text);
  margin: 0 0 10px;
}

.addon-card__footer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin-top: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.addon-card__selection {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}

.addon-card__remove {
  appearance: none;
  border: none;
  background: none;
  padding: 0;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-text);
  cursor: pointer;
  flex-shrink: 0;
}

.addon-card__remove:hover {
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.addon-card__pricing {
  display: block;
  width: 100%;
}

.vol-price-row--addon {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
}

.vol-price-row--addon .vol-price {
  font-size: 0.9375rem;
  font-weight: 700;
}

.vol-price-row--addon .vol-ref {
  font-size: 0.75rem;
}

.vol-price-row--addon .vol-discount {
  font-size: 0.5625rem;
}

.addon-card__pricing .vol-price-stack--card {
  align-items: flex-start;
}

.addon-card__pricing .vol-price {
  font-size: 0.9375rem;
}

.addon-card__summary {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 700;
  margin: 0;
}

.addon-card__summary-qty {
  color: var(--black);
}

.addon-card__summary-sep {
  color: var(--gray-text);
  font-weight: 600;
  opacity: 0.7;
}

.addon-card__summary-price {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-text);
}

.addon-card__summary--hint {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray-text);
  margin: 0;
}

.addon-add-btn {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
  padding: 8px 12px;
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--black);
  white-space: nowrap;
  flex-shrink: 0;
}

.addon-add-btn:hover {
  border-color: var(--black);
  background: #F7FFE5;
}

.addon-add-btn:active {
  transform: scale(0.97);
}

.addon-remove-btn {
  font-family: var(--font-body);
  margin-top: 12px;
  padding: 0;
  border: none;
  background: none;
  color: var(--gray-text);
  font-size: 0.8125rem;
  font-weight: 500;
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s ease;
}

.addon-remove-btn:hover {
  color: var(--black);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.addon-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.addon-card__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  margin-left: 2px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.05);
  color: var(--gray-text);
  cursor: pointer;
  flex-shrink: 0;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.addon-card__close:hover {
  background: rgba(10, 10, 10, 0.09);
  color: var(--black);
}

.addon-chip {
  display: inline-flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 8px 14px;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  cursor: pointer;
  transition:
    border-color 0.28s ease,
    background-color 0.28s ease,
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.addon-chip__qty {
  font-weight: 700;
  color: var(--black);
}

.addon-chip__sep {
  font-weight: 600;
  color: var(--gray-text);
  opacity: 0.7;
}

.addon-chip__price {
  font-size: 0.6875rem;
  font-weight: 600;
  color: var(--gray-text);
  letter-spacing: -0.01em;
}

.addon-chip.is-selected .addon-chip__price {
  color: #5f7a00;
}

.addon-chip.is-selecting {
  animation: addon-chip-select 0.3s ease;
}

@keyframes addon-chip-select {
  0% { transform: scale(1); }
  45% { transform: scale(0.96); }
  100% { transform: scale(1); }
}

.addon-chip:hover {
  border-color: var(--black);
}

.addon-chip.is-selected {
  border: 1.5px solid var(--black);
  background: #F2FFD8;
}

.addon-chip.is-custom {
  font-variant-numeric: tabular-nums;
}

.addon-chip--plus {
  min-width: auto;
  padding-left: 12px;
  padding-right: 12px;
  align-items: center;
  justify-content: center;
  border-style: dashed;
  color: var(--gray-text);
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}

.addon-chip--plus:hover {
  color: var(--black);
  background: var(--off-white);
}

.addon-chip--clear {
  min-width: 42px;
  padding-left: 10px;
  padding-right: 10px;
  align-items: center;
  justify-content: center;
  color: var(--gray-text);
}

.addon-chip--clear:hover:not(:disabled) {
  border-color: var(--black);
  color: var(--black);
  background: var(--off-white);
}

.addon-chip--clear:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.custom-qty-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  pointer-events: none;
}

.custom-qty-modal[hidden] {
  display: none;
}

.custom-qty-modal.is-open,
.custom-qty-modal.is-closing {
  pointer-events: auto;
}

.custom-qty-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.45);
  opacity: 0;
  transition: opacity 0.36s ease;
}

.custom-qty-modal.is-open .custom-qty-modal__backdrop {
  opacity: 1;
}

.custom-qty-modal.is-closing .custom-qty-modal__backdrop {
  opacity: 0;
}

.custom-qty-modal__panel {
  position: relative;
  width: min(100%, 420px);
  padding: 24px;
  border-radius: 18px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(10, 10, 10, 0.18);
  opacity: 0;
  transform: translateY(14px) scale(0.98);
  transition: opacity 0.36s ease, transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}

.custom-qty-modal.is-open .custom-qty-modal__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.custom-qty-modal.is-closing .custom-qty-modal__panel {
  opacity: 0;
  transform: translateY(10px) scale(0.985);
}

.custom-qty-modal__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.custom-qty-modal__subtitle {
  font-size: 0.8125rem;
  color: var(--gray-text);
  margin-bottom: 18px;
}

.custom-bulk-display {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.125rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  text-align: center;
  color: var(--black);
  line-height: 1;
}

.custom-bulk-display__label {
  margin-top: 4px;
  margin-bottom: 18px;
  text-align: center;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--gray-text);
  text-transform: lowercase;
}

.custom-bulk-slider-wrap {
  margin-bottom: 16px;
}

.custom-bulk-slider {
  display: block;
  width: 100%;
  height: 6px;
  margin: 0;
  accent-color: var(--black);
  cursor: pointer;
}

.custom-bulk-slider-labels {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-text);
}

.custom-bulk-stepper {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.custom-bulk-step-btn {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 10px 12px;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  cursor: pointer;
  transition: border-color 0.28s ease, background-color 0.28s ease;
}

.custom-bulk-step-btn:hover {
  border-color: var(--black);
  background: var(--off-white);
}

.custom-bulk-stepper__value {
  font-size: 0.9375rem;
  font-weight: 800;
  text-align: center;
  font-variant-numeric: tabular-nums;
  color: var(--black);
}

.custom-bulk-price {
  text-align: center;
  font-size: 1.125rem;
  margin-bottom: 6px;
}

.custom-bulk-unit {
  margin-bottom: 4px;
  text-align: center;
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray-text);
}

.custom-qty-modal__label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-text);
  margin-bottom: 8px;
}

.custom-qty-modal__label--manual {
  margin-top: 16px;
}

.custom-qty-suggestions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 4px;
}

.custom-qty-suggest {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 14px;
  background: var(--white);
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  transition: border-color 0.28s ease, background-color 0.28s ease;
}

.custom-qty-suggest:hover {
  border-color: var(--black);
}

.custom-qty-suggest.is-selected {
  border-color: var(--black);
  background: #F2FFD8;
}

.custom-qty-suggest__badge {
  font-size: 0.5625rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #5A7A00;
  margin-bottom: 2px;
}

.custom-qty-suggest__qty {
  font-size: 0.9375rem;
  font-weight: 800;
  color: var(--black);
  font-variant-numeric: tabular-nums;
}

.custom-qty-suggest__price {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-text);
}

.custom-qty-modal__input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  margin-bottom: 10px;
}

.custom-qty-modal__input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(184, 255, 44, 0.35);
}

.custom-qty-modal__price {
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.custom-qty-modal__error {
  font-size: 0.8125rem;
  color: #D14343;
  margin-bottom: 8px;
}

.custom-qty-modal__actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.custom-qty-modal__cancel,
.custom-qty-modal__confirm {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 44px;
  padding: 12px 16px;
  border-radius: 14px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transform: none;
  box-shadow: none;
}

.custom-qty-modal__cancel,
.custom-qty-modal__cancel:link,
.custom-qty-modal__cancel:visited,
.custom-qty-modal__cancel:active,
.custom-qty-modal__cancel:hover {
  border: 1.5px solid var(--border);
  background: var(--white);
  color: var(--black);
  -webkit-text-fill-color: var(--black);
  text-decoration: none;
  transform: none;
  box-shadow: none;
}

.custom-qty-modal__cancel:hover {
  background: var(--off-white);
}

.custom-qty-modal__confirm,
.custom-qty-modal__confirm:link,
.custom-qty-modal__confirm:visited,
.custom-qty-modal__confirm:active,
.custom-qty-modal__confirm:hover {
  border: 1.5px solid var(--black);
  background: var(--black);
  color: var(--white);
  -webkit-text-fill-color: var(--white);
  text-decoration: none;
  transform: none;
  box-shadow: none;
}

.custom-qty-modal__confirm:hover {
  opacity: 0.92;
}

body.modal-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
  overscroll-behavior: none;
  /* top set inline by lockBodyScroll() to preserve scroll position */
}

.platform-modal__backdrop,
.bundle-customize-modal__backdrop,
.custom-qty-modal__backdrop,
.followers-upsell-modal__backdrop,
.username-modal__backdrop,
.order-links-modal__backdrop {
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.followers-upsell-modal {
  position: fixed;
  inset: 0;
  z-index: 210;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  pointer-events: none;
}

.followers-upsell-modal[hidden] {
  display: none;
}

.followers-upsell-modal.is-open,
.followers-upsell-modal.is-closing {
  pointer-events: auto;
}

.followers-upsell-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.45);
  opacity: 0;
  transition: opacity 0.36s ease;
}

.followers-upsell-modal.is-open .followers-upsell-modal__backdrop {
  opacity: 1;
}

.followers-upsell-modal.is-closing .followers-upsell-modal__backdrop {
  opacity: 0;
}

.followers-upsell-modal__panel {
  position: relative;
  width: min(100%, 420px);
  padding: 28px 24px 22px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(10, 10, 10, 0.18);
  text-align: left;
  opacity: 0;
  transform: translateY(16px) scale(0.97);
  transition: opacity 0.36s ease, transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}

.followers-upsell-modal.is-open .followers-upsell-modal__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.followers-upsell-modal.is-closing .followers-upsell-modal__panel {
  opacity: 0;
  transform: translateY(10px) scale(0.98);
}

.followers-upsell-modal__badge {
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.followers-upsell-modal__title {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0 0 10px;
}

.followers-upsell-modal__text {
  margin: 0 0 20px;
  font-size: 0.975rem;
  line-height: 1.55;
  color: var(--gray-text);
}

.followers-upsell-modal__text strong {
  color: var(--black);
  font-weight: 700;
}

.followers-upsell-modal__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.followers-upsell-modal__accept {
  position: relative;
  width: 100%;
  justify-content: center;
  min-height: 56px;
  padding: 4px 4px 4px 16px;
  overflow: hidden;
}

.followers-upsell-modal__accept-label {
  flex: 1;
  min-width: 0;
  text-align: center;
  padding-right: 56px;
  white-space: nowrap;
}

.followers-upsell-modal__accept .btn-arrow {
  position: absolute;
  right: 4px;
  top: 4px;
  bottom: 4px;
  width: auto;
  height: auto;
  aspect-ratio: 1;
  transform: none;
  border-radius: 14px;
}

@media (max-width: 480px) {
  .followers-upsell-modal {
    padding: 14px;
  }

  .followers-upsell-modal__panel {
    padding: 24px 16px 18px;
  }

  .followers-upsell-modal__accept {
    font-size: clamp(0.78rem, 3.6vw, 1rem);
    letter-spacing: -0.025em;
    min-height: 52px;
    padding-left: 10px;
  }

  .followers-upsell-modal__accept-label {
    padding-right: 48px;
  }

  .followers-upsell-modal__accept .btn-arrow {
    width: 44px;
    height: 44px;
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    border-radius: 12px;
  }
}

.followers-upsell-modal__skip {
  width: 100%;
  padding: 12px 14px;
  border: none;
  background: transparent;
  color: var(--gray-text);
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
}

.followers-upsell-modal__skip:hover {
  color: var(--black);
}

.followers-discount-banner {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(184, 255, 44, 0.16);
  border: 1px solid rgba(146, 219, 0, 0.3);
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--black);
}

.step-block.is-upsell-focus {
  animation: upsell-focus-pulse 1.4s ease;
}

.step-block.is-upsell-focus .qty-grid {
  outline: 2px solid rgba(146, 219, 0, 0.55);
  outline-offset: 6px;
  border-radius: 18px;
}

@keyframes upsell-focus-pulse {
  0% { box-shadow: 0 0 0 0 rgba(184, 255, 44, 0); }
  35% { box-shadow: 0 0 0 8px rgba(184, 255, 44, 0.18); }
  100% { box-shadow: 0 0 0 0 rgba(184, 255, 44, 0); }
}

.vol-price--deal {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.vol-price__was {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-text);
  text-decoration: line-through;
}

.vol-price__now {
  font-weight: 700;
}

@media (prefers-reduced-motion: reduce) {
  .followers-upsell-modal__backdrop,
  .followers-upsell-modal__panel {
    transition: none;
  }

  .step-block.is-upsell-focus {
    animation: none;
  }
}

.addon-post-split {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.addon-post-split__label {
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.addon-post-count-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.addon-post-chip {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  min-width: 42px;
  padding: 8px 14px;
  border: 1.5px solid var(--border);
  border-radius: 999px;
  background: var(--white);
  color: var(--black);
  -webkit-text-fill-color: var(--black);
  cursor: pointer;
  transition: border-color 0.28s ease, background-color 0.28s ease;
}

.addon-post-chip__num {
  color: inherit;
  -webkit-text-fill-color: inherit;
}

.addon-post-chip:hover {
  border-color: var(--black);
}

.addon-post-chip.is-selected {
  border-color: var(--black);
  background: var(--primary);
}

.addon-post-split__result {
  font-size: 0.8125rem;
  color: var(--gray-text);
  margin-bottom: 12px;
}

.addon-post-split__result strong {
  color: var(--black);
  font-weight: 700;
}

.addon-post-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--border);
}

.account-post-split > .addon-post-links:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.addon-post-links__hint {
  margin: 0;
  font-size: 0.75rem;
  color: var(--gray-text);
  line-height: 1.45;
}

.addon-post-link-field {
  display: flex;
  flex-direction: column;
}

.addon-post-link-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 6px;
}

.addon-post-link-input {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.875rem;
  padding: 11px 12px;
  border: 1.5px solid var(--border);
  border-radius: 12px;
  background: var(--white);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.addon-post-link-input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(184, 255, 44, 0.35);
}

.addon-post-link-input.is-invalid {
  border-color: #D14343;
}

.addon-post-link-input.is-locked,
.addon-post-link-input[readonly] {
  background: rgba(10, 10, 10, 0.04);
  color: rgba(10, 10, 10, 0.72);
  cursor: default;
  box-shadow: none;
}

.addon-post-link-input.is-locked:focus,
.addon-post-link-input[readonly]:focus {
  border-color: var(--border);
  box-shadow: none;
}

.account-post-split {
  margin-top: 8px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  animation: flex-fade-up 0.36s ease both;
}

.account-post-split .account-user-trigger {
  margin: 0;
}

.account-post-split.is-attention {
  animation: upsell-focus-pulse 1.4s ease;
}

.account-post-split.is-attention .account-user-trigger,
.account-post-split.is-attention .addon-post-count-row {
  outline: 2px solid rgba(146, 219, 0, 0.55);
  outline-offset: 4px;
  border-radius: 16px;
}

.account-post-split--chips {
  margin-top: 8px;
}

.account-post-split__title {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: var(--black);
}

.post-picker-modal__panel {
  width: min(100%, 440px);
}

.post-picker-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 4px 0 12px;
}

.post-picker-tile {
  position: relative;
  aspect-ratio: 1;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 12px;
  overflow: hidden;
  background: var(--off-white);
  cursor: pointer;
}

.post-picker-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.post-picker-tile__empty {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--border);
}

.post-picker-tile.is-selected {
  border-color: var(--primary-dark);
  box-shadow: 0 0 0 2px rgba(146, 219, 0, 0.35);
}

.post-picker-tile.is-disabled {
  opacity: 0.38;
  cursor: not-allowed;
}

.post-picker-tile__check {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--primary-dark);
  box-shadow: 0 0 0 2px var(--white);
}

.post-picker-tile__check::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 4px;
  width: 5px;
  height: 9px;
  border: solid var(--black);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.post-picker-tile__video {
  position: absolute;
  left: 6px;
  bottom: 6px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent #fff;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.45));
}

.post-picker-status {
  min-height: 1.2em;
  margin: 0 0 12px;
  font-size: 0.8125rem;
  color: var(--gray-text);
}

.post-picker-modal__done {
  width: 100%;
  justify-content: center;
  min-height: 56px;
  margin-top: 8px;
  padding: 14px 18px;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.configurator-page .order-field {
  margin-bottom: 16px;
}

.configurator-page .order-label {
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
}

.configurator-page .order-input-wrap {
  border-radius: 14px;
}

.configurator-page .order-input-wrap:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(184, 255, 44, 0.35);
}

.account-user-trigger {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  margin: 4px 0 18px;
  padding: 16px;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  background: var(--white);
  box-shadow: 0 1px 2px rgba(10, 10, 10, 0.04);
  text-align: left;
  cursor: pointer;
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.account-user-trigger:hover {
  border-color: rgba(10, 10, 10, 0.22);
  box-shadow: 0 8px 22px rgba(10, 10, 10, 0.06);
  transform: translateY(-1px);
}

.account-user-trigger__icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(10, 10, 10, 0.05);
  color: var(--black);
  flex-shrink: 0;
  overflow: hidden;
}

.account-user-trigger.has-photo .account-user-trigger__icon {
  border-radius: 50%;
  background: var(--border);
}

.account-user-trigger.has-photo .account-user-trigger__icon-svg {
  display: none;
}

.account-user-trigger__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.account-user-trigger__photo.is-hidden {
  display: none;
}

.account-user-trigger__copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
  flex: 1;
}

.account-user-trigger__title {
  font-family: var(--font-heading);
  font-size: 0.975rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--black);
}

.account-user-trigger__hint {
  font-size: 0.8125rem;
  line-height: 1.4;
  color: var(--gray-text);
}

.account-user-trigger__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: rgba(10, 10, 10, 0.4);
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1;
}

.account-user-trigger:hover .account-user-trigger__mark,
.account-user-trigger[aria-expanded="true"] .account-user-trigger__mark {
  color: var(--black);
}

.account-user-trigger.is-complete {
  border-color: rgba(146, 219, 0, 0.45);
}

.account-user-trigger.is-complete .account-user-trigger__mark {
  color: var(--black);
}

.username-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  pointer-events: none;
}

.username-modal[hidden] {
  display: none;
}

.username-modal.is-open,
.username-modal.is-closing {
  pointer-events: auto;
}

.username-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.45);
  opacity: 0;
  transition: opacity 0.36s ease;
}

.username-modal.is-open .username-modal__backdrop {
  opacity: 1;
}

.username-modal.is-closing .username-modal__backdrop {
  opacity: 0;
}

.username-modal__panel {
  position: relative;
  width: min(100%, 420px);
  max-height: min(90vh, 720px);
  overflow: auto;
  padding: 24px 22px 20px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(10, 10, 10, 0.18);
  opacity: 0;
  transform: translateY(16px) scale(0.97);
  transition: opacity 0.36s ease, transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}

.username-modal.is-open .username-modal__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.username-modal.is-closing .username-modal__panel {
  opacity: 0;
  transform: translateY(10px) scale(0.98);
}

.username-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.05);
  color: var(--gray-text);
  cursor: pointer;
}

.username-modal__close:hover {
  color: var(--black);
  background: rgba(10, 10, 10, 0.09);
}

.username-modal__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 8px;
  padding-right: 28px;
}

.username-modal__text {
  margin: 0 0 16px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--gray-text);
}

.username-modal .order-field {
  margin-bottom: 0;
}

.username-modal .profile-card,
.username-modal .profile-confirm {
  margin-top: 4px;
}

.profile-lookup {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  padding: 28px 12px 20px;
  text-align: center;
  animation: flex-fade-up 0.36s ease both;
}

.profile-lookup.is-hidden {
  display: none;
}

.profile-lookup__percent {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: 3.4rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.95;
  color: var(--black);
  font-variant-numeric: tabular-nums;
}

.profile-lookup__text {
  margin: 0;
  max-width: 16rem;
  font-size: 0.98rem;
  font-weight: 600;
  line-height: 1.45;
  color: var(--gray-text);
}

.profile-confirm {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8px 4px 0;
  animation: flex-fade-up 0.36s ease both;
}

.profile-confirm.is-hidden {
  display: none;
}

.profile-confirm .profile-card__avatar {
  width: 88px;
  height: 88px;
  margin: 0 0 16px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
}

.profile-confirm .profile-card__avatar-icon {
  width: 36px;
  height: 36px;
}

.profile-confirm .profile-card__avatar-photo {
  border-radius: 50%;
}

.profile-confirm .profile-card__meta {
  align-items: center;
  gap: 4px;
  width: 100%;
}

.profile-confirm .profile-card__handle {
  font-family: var(--font-heading);
  font-size: 1.28rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.profile-confirm .profile-card__name {
  font-size: 1.02rem;
  font-weight: 600;
  color: var(--gray-text);
}

.profile-confirm .profile-card__prompt {
  margin-top: 14px;
  font-family: var(--font-heading);
  font-size: 1.18rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--black);
}

.profile-confirm .profile-card__followers {
  margin-top: 4px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gray-text);
}

.profile-confirm .profile-card__confirm,
.profile-confirm__accept {
  width: 100%;
  justify-content: center;
  min-height: 56px;
  margin-top: 22px;
  padding: 14px 18px;
  font-size: 1.0625rem;
  font-weight: 700;
}

.profile-confirm__back {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 10px 12px;
  border: none;
  background: transparent;
  color: var(--gray-text);
  font-family: var(--font-family);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
}

.profile-confirm__back:hover {
  color: var(--black);
}

.username-modal.is-lookup-step .username-modal__field,
.username-modal.is-lookup-step .username-modal__text,
.username-modal.is-lookup-step .username-modal__error,
.username-modal.is-lookup-step .profile-confirm,
.username-modal.is-lookup-step .profile-missing,
.username-modal.is-profile-step .username-modal__title,
.username-modal.is-profile-step .username-modal__field,
.username-modal.is-profile-step .username-modal__text,
.username-modal.is-profile-step .username-modal__error,
.username-modal.is-profile-step .profile-lookup,
.username-modal.is-profile-step .profile-missing,
.username-modal.is-followers-step .profile-missing,
.username-modal.is-missing-step .username-modal__text {
  display: none;
}

.profile-missing {
  margin: 0;
  padding: 32px 8px 36px;
  text-align: center;
}

.profile-missing.is-hidden {
  display: none;
}

.profile-missing__title {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.25;
  color: var(--black);
}

.profile-missing__text {
  margin-top: 8px;
  font-size: 0.9375rem;
  line-height: 1.45;
  color: var(--gray-text);
}

@media (prefers-reduced-motion: reduce) {
  .username-modal__backdrop,
  .username-modal__panel {
    transition: none;
  }
}

.profile-card {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--off-white);
  transition: opacity 0.32s ease, transform 0.32s ease;
}

.profile-card.is-hidden {
  display: none;
}

.profile-card.is-appearing {
  animation: flex-fade-up 0.36s ease both;
}

.profile-card__avatar {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--black);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  overflow: hidden;
}

.profile-card__avatar-icon {
  display: block;
  color: var(--primary);
}

.profile-card__avatar-icon.is-hidden {
  display: none;
}

.profile-card__avatar-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-card__avatar-photo.is-hidden {
  display: none;
}

.profile-card__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.profile-card__handle {
  font-size: 0.9375rem;
  font-weight: 700;
}

.profile-card__handle.is-verified {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.profile-card__handle.is-verified::after {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 40 40'%3E%3Cpath fill='%230095F6' fill-rule='evenodd' clip-rule='evenodd' d='M19.998 3.094 14.638 0l-2.972 5.15H5.432v6.354L0 14.64 3.094 20 0 25.359l5.432 3.137v6.353h6.234L14.638 40l5.36-3.094L25.358 40l3.137-5.15h6.233v-6.353L40 25.359 36.905 20 40 14.641l-5.432-3.137V5.15h-6.233L25.358 0l-5.36 3.094Zm10.132 17.18-1.705-1.76-9.396 9.124-5.361-5.218-1.743 1.76 7.104 6.918 11.101-10.824Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.profile-confirm .profile-card__handle.is-verified {
  gap: 6px;
}

.profile-confirm .profile-card__handle.is-verified::after {
  width: 18px;
  height: 18px;
}

.profile-card__name {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--gray-text);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.profile-card__name.is-hidden {
  display: none;
}

.profile-card__prompt {
  font-size: 0.8125rem;
  color: var(--gray-text);
}

.profile-card__prompt.is-hidden {
  display: none;
}

.profile-card__prompt.is-confirmed {
  color: var(--black);
  font-weight: 600;
}

.profile-card__prompt.is-error {
  color: #B42318;
  font-weight: 600;
}

.profile-card__followers {
  font-size: 0.8125rem;
  color: var(--gray-text);
}

.profile-card__followers.is-hidden {
  display: none;
}

.profile-card__confirm {
  margin-left: auto;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 700;
  padding: 9px 14px;
  border: none;
  border-radius: 12px;
  background: var(--black);
  color: var(--white);
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.32s ease, transform 0.32s ease, background 0.32s ease;
}

.profile-card__confirm:hover:not(:disabled) {
  opacity: 0.88;
}

.profile-card__confirm.is-hidden {
  display: none;
}

.profile-card__confirm.is-busy {
  opacity: 0.65;
  cursor: wait;
}

.profile-card__confirm:disabled:not(.is-busy),
.profile-card__confirm.is-confirmed {
  background: var(--primary);
  color: var(--black);
  cursor: default;
  animation: flex-select-pop 0.36s ease;
}

.profile-privacy-confirm {
  margin-top: 14px;
  padding: 18px 16px 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--off-white);
  animation: flex-fade-up 0.32s ease both;
}

.profile-privacy-confirm.is-hidden {
  display: none;
}

.profile-privacy-confirm__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 10px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.06);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.profile-privacy-confirm__title {
  margin: 0 0 8px;
  font-size: 1.0625rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--black);
}

.profile-privacy-confirm__text {
  margin: 0 0 16px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--gray-text);
}

.profile-privacy-confirm__text strong {
  color: var(--black);
  font-weight: 700;
}

.profile-privacy-confirm__accept {
  width: 100%;
  justify-content: center;
  min-height: 56px;
  margin: 0;
  padding: 14px 18px;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.profile-privacy-confirm__back {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 10px 12px;
  border: none;
  background: transparent;
  color: var(--gray-text);
  font-family: var(--font-family);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
}

.profile-privacy-confirm__back:hover {
  color: var(--black);
}

.username-modal.is-privacy-step .username-modal__field,
.username-modal.is-privacy-step .profile-card {
  display: none;
}

/* Avoid ghost taps hitting backdrop/next CTA when a modal step swaps under the finger */
.username-modal.is-step-guard .username-modal__backdrop,
.username-modal.is-step-guard .username-modal__close,
.username-modal.is-step-guard .profile-privacy-confirm__accept,
.username-modal.is-step-guard .profile-privacy-confirm__back,
.username-modal.is-step-guard .profile-confirm__accept,
.username-modal.is-step-guard .profile-confirm__back,
.username-modal.is-step-guard .username-search-btn,
.username-modal.is-step-guard .profile-followers-confirm__accept,
.username-modal.is-step-guard .profile-followers-confirm__back {
  pointer-events: none;
}

.profile-followers-confirm {
  margin-top: 14px;
  padding: 18px 16px 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--off-white);
  animation: flex-fade-up 0.32s ease both;
}

.profile-followers-confirm.is-hidden {
  display: none;
}

.profile-followers-confirm__title {
  margin: 0 0 8px;
  font-size: 1.0625rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.25;
  color: var(--black);
}

.profile-followers-confirm__text {
  margin: 0 0 16px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--gray-text);
}

.profile-followers-confirm .order-field {
  margin-bottom: 12px;
}

.profile-followers-confirm__accept {
  width: 100%;
  justify-content: center;
  min-height: 56px;
  margin: 0;
  padding: 14px 18px;
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.profile-followers-confirm__back {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 10px 12px;
  border: none;
  background: transparent;
  color: var(--gray-text);
  font-family: var(--font-family);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
}

.profile-followers-confirm__back:hover {
  color: var(--black);
}

.username-modal.is-followers-step .username-modal__field,
.username-modal.is-followers-step .username-modal__text,
.username-modal.is-followers-step .profile-card,
.username-modal.is-followers-step .profile-confirm,
.username-modal.is-followers-step .profile-lookup,
.username-modal.is-followers-step .profile-privacy-confirm {
  display: none;
}

.profile-followers-field {
  margin-top: 12px;
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: var(--white);
}

.profile-followers-field.is-hidden {
  display: none;
}

.profile-followers-field.is-appearing {
  animation: flex-fade-up 0.36s ease both;
}

.profile-followers-field__input {
  margin-top: 8px;
}

.profile-followers-field__input--action {
  position: relative;
}

.profile-followers-field__input--action .order-input {
  padding-left: 14px;
  padding-right: 52px;
}

.profile-followers-field__arrow {
  position: absolute;
  top: 50%;
  right: 6px;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  cursor: pointer;
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.profile-followers-field__arrow:hover {
  opacity: 0.88;
}

.profile-followers-field__arrow:active {
  transform: translateY(-50%) scale(0.96);
}

.profile-followers-field__error {
  margin-top: 8px;
  font-size: 0.8125rem;
  color: #8a2b2b;
}

.profile-followers-field__error.is-hidden {
  display: none;
}

.profile-growth {
  margin-top: 16px;
}

.profile-growth.is-hidden {
  display: none;
}

.profile-growth.is-appearing,
.profile-growth.is-animating {
  animation: flex-fade-up 0.32s ease both;
}

.profile-growth .flex-card__bar-fill {
  transition: width 0.08s linear;
}

.profile-growth__disclaimer {
  margin-top: 10px;
  font-size: 0.75rem;
  color: var(--gray-text);
  line-height: 1.45;
}

.config-summary-inner {
  position: sticky;
  top: 20px;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 20px;
  background: var(--off-white);
  transition: transform 0.32s ease;
}

.summary-delivery {
  margin: 10px 0 2px;
  padding: 10px 0 0;
  border-top: 1px solid var(--border);
}

.summary-fast__copy .summary-delivery__eta {
  display: block;
  margin: 1px 0 0;
  font-size: 0.6875rem;
  font-weight: 500;
  line-height: 1.25;
  color: var(--gray-text);
}

/* Compact setting row — lighter than CTA / packs */
.summary-fast {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 8px 2px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
}

.summary-fast.is-enter {
  animation: summary-fast-enter 0.34s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.summary-fast.is-flash .summary-fast__icon {
  animation: summary-fast-zap 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.summary-fast__main {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
  flex: 1 1 auto;
}

.summary-fast__icon {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: var(--gray-text);
  transition: color 0.2s ease, transform 0.2s ease;
  transform-origin: center;
}

.summary-fast.is-on .summary-fast__icon {
  color: var(--primary-dark);
}

.summary-fast__copy {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}

.summary-fast__title {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--black);
  line-height: 1.2;
  transition: color 0.2s ease;
}

.summary-fast__hint {
  font-size: 0.6875rem;
  line-height: 1.25;
  color: var(--gray-text);
  margin-top: 1px;
  max-height: 1.4em;
  opacity: 1;
  transform: translateY(0);
  overflow: hidden;
  transition:
    opacity 0.2s ease,
    max-height 0.22s ease,
    transform 0.22s ease,
    margin-top 0.22s ease;
}

.summary-fast__hint.is-enter {
  animation: summary-fast-hint-in 0.28s ease both;
}

.summary-fast__hint.is-hiding {
  opacity: 0;
  max-height: 0;
  margin-top: 0;
  transform: translateY(-2px);
}

.summary-fast__aside {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 0 0 auto;
}

.summary-fast__fee {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--black);
  white-space: nowrap;
  letter-spacing: -0.01em;
  transition: transform 0.2s ease, color 0.2s ease;
}

.summary-fast__fee.is-bump {
  animation: summary-fast-fee-bump 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.summary-fast.is-on .summary-fast__fee {
  color: var(--black);
}

.summary-fast__switch {
  position: relative;
  width: 38px;
  height: 22px;
  flex: 0 0 auto;
}

.summary-fast__input {
  position: absolute;
  inset: 0;
  z-index: 2;
  margin: 0;
  opacity: 0;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

.summary-fast__track {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #e4e4df;
  transition: background-color 0.22s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.summary-fast__track::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 2px rgba(10, 10, 10, 0.1);
  transition:
    transform 0.28s cubic-bezier(0.34, 1.4, 0.64, 1),
    background-color 0.2s ease;
}

.summary-fast.is-on .summary-fast__track,
.summary-fast__input:checked + .summary-fast__track {
  background: var(--primary-dark);
}

.summary-fast__input:checked + .summary-fast__track::after {
  transform: translateX(16px);
  background: #fff;
}

.summary-fast__input:focus-visible + .summary-fast__track {
  outline: 2px solid var(--black);
  outline-offset: 2px;
}

.summary-fast__input:active + .summary-fast__track::after {
  width: 20px;
}

@keyframes summary-fast-enter {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes summary-fast-zap {
  0% { transform: scale(1) rotate(0deg); }
  35% { transform: scale(1.22) rotate(-8deg); }
  65% { transform: scale(0.96) rotate(4deg); }
  100% { transform: scale(1) rotate(0deg); }
}

@keyframes summary-fast-hint-in {
  from {
    opacity: 0;
    transform: translateY(-2px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes summary-fast-fee-bump {
  0% { transform: scale(1); }
  40% { transform: scale(1.06); }
  100% { transform: scale(1); }
}

@media (prefers-reduced-motion: reduce) {
  .summary-fast.is-enter,
  .summary-fast.is-flash .summary-fast__icon,
  .summary-fast__hint.is-enter,
  .summary-fast__fee.is-bump {
    animation: none;
  }

  .summary-fast__hint,
  .summary-fast__track,
  .summary-fast__track::after,
  .summary-fast__icon {
    transition: none;
  }
}

.mobile-checkout-breakdown .summary-delivery {
  margin-left: 2px;
  margin-right: 2px;
}

.pay-checkout__eta {
  margin: 0 0 12px;
  font-size: 0.82rem;
  line-height: 1.4;
  color: var(--gray-text);
}

.config-summary-lines.is-updating li {
  animation: summary-line-in 0.32s ease both;
}

@keyframes summary-line-in {
  from {
    opacity: 0.55;
    transform: translateY(3px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.config-summary-total.is-pulse {
  animation: price-pulse 0.32s ease;
}

#summary-total,
.mobile-checkout-price {
  display: inline-block;
  transform-origin: right center;
}

#summary-total.is-price-up,
.mobile-checkout-price.is-price-up,
.config-summary-total.is-price-up #summary-total {
  animation: price-total-up 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

#summary-total.is-price-down,
.mobile-checkout-price.is-price-down,
.config-summary-total.is-price-down #summary-total {
  animation: price-total-down 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes price-pulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.015); }
  100% { transform: scale(1); }
}

@keyframes price-total-up {
  0% {
    transform: translateY(0) scale(1);
    color: inherit;
  }
  40% {
    transform: translateY(-5px) scale(1.06);
    color: #6fad00;
  }
  100% {
    transform: translateY(0) scale(1);
    color: inherit;
  }
}

@keyframes price-total-down {
  0% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
  40% {
    transform: translateY(4px) scale(0.97);
    opacity: 0.72;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@keyframes flex-select-pop {
  0% { transform: scale(0.98); }
  100% { transform: scale(1); }
}

.config-summary-cta {
  position: relative;
  width: 100%;
  justify-content: center;
  margin-bottom: 0;
  min-height: 56px;
  padding: 4px 4px 4px 16px;
  overflow: hidden;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.config-summary-cta > span:not(.btn-arrow) {
  flex: 1;
  min-width: 0;
  text-align: center;
  padding-right: 56px;
}

.config-summary-cta .btn-arrow {
  position: absolute;
  right: 4px;
  top: 4px;
  bottom: 4px;
  width: auto;
  height: auto;
  aspect-ratio: 1;
  transform: none;
  border-radius: 14px;
}

.config-summary-cta.is-ready:not(:disabled) {
  animation: cta-ready 0.24s ease;
}

.config-summary-cta.is-checkout {
  animation: flex-select-pop 0.28s cubic-bezier(0.34, 1.4, 0.64, 1);
}

.config-summary-cta:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

@keyframes cta-ready {
  from { transform: scale(0.98); }
  to { transform: scale(1); }
}

.config-summary-title {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray-text);
  margin-bottom: 16px;
}

.config-summary-lines {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.config-summary-lines li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  font-weight: 500;
}

.config-summary-lines__label {
  flex: 1;
  min-width: 0;
}

.config-summary-lines__end {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.config-summary-lines__prices {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  flex-shrink: 0;
}

.config-summary-lines__prices .vol-price {
  font-size: 0.875rem;
  font-weight: 700;
}

.config-summary-lines__prices .vol-ref {
  font-size: 0.6875rem;
  font-weight: 500;
}

.config-summary-lines__remove {
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  padding: 0;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: var(--text-muted);
  font-family: inherit;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: color 0.15s ease, background 0.15s ease;
}

.config-summary-lines__remove:hover {
  color: var(--black);
  background: var(--off-white);
}

.config-summary-total {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 14px;
  margin-bottom: 16px;
  border-top: 1px solid var(--border);
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
}

.mobile-checkout-bar {
  display: none;
}

.mobile-checkout-sticky {
  display: none;
}

@media (max-width: 960px) {
  /*
    Do NOT set overflow-x:hidden on global html/body.
    On iOS Safari that forces overflow-y:auto and traps document scroll
    (homepage becomes undraggable). Scope checkout/config only.
  */
  body.configurator-page,
  body.free-trial-page,
  body.pay-page {
    overscroll-behavior: none;
    overscroll-behavior-y: none;
    overflow-x: hidden;
  }

  html:has(body.home-page),
  body.home-page {
    overflow: visible !important;
    overflow-x: visible !important;
    overflow-y: visible !important;
    overscroll-behavior: auto;
    overscroll-behavior-y: auto;
    height: auto !important;
    max-height: none !important;
    position: static !important;
  }

  .home-page .page-wrapper,
  .home-page .main-card {
    overflow: visible !important;
    max-height: none !important;
    height: auto !important;
  }

  .page-wrapper--config {
    /* Keep clearance inside the white card so users can't scroll into gray void */
    padding: 12px;
    min-height: 100svh;
    min-height: 100dvh;
  }

  .configurator-page .config-shell,
  .free-trial-page .config-shell {
    padding-bottom: calc(28px + 76px + env(safe-area-inset-bottom, 0px));
  }

  .config-layout {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .config-summary {
    display: none;
  }

  .mobile-checkout-sticky {
    display: block;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
  }

  .mobile-checkout-breakdown {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.28s ease;
    background: var(--white);
    border-top: 1px solid transparent;
  }

  .mobile-checkout-breakdown-inner {
    overflow: hidden;
  }

  .mobile-checkout-sticky.is-breakdown-open .mobile-checkout-breakdown {
    grid-template-rows: 1fr;
    border-top-color: var(--border);
  }

  .mobile-checkout-breakdown-inner {
    padding: 0 16px;
  }

  .mobile-checkout-sticky.is-breakdown-open .mobile-checkout-breakdown-inner {
    padding: 14px 16px 12px;
  }

  .mobile-checkout-lines {
    margin-bottom: 0;
    gap: 8px;
  }

  .mobile-checkout-lines li {
    font-size: 0.8125rem;
  }

  .mobile-checkout-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: var(--white);
    border-top: 1px solid var(--border);
    animation: bar-slide-up 0.28s ease both;
  }

  .mobile-checkout-sticky.is-breakdown-open .mobile-checkout-bar {
    border-top-color: transparent;
  }

  @keyframes bar-slide-up {
    from {
      opacity: 0;
      transform: translateY(100%);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .config-mobile-cta.is-ready:not(:disabled) {
    animation: cta-ready 0.24s ease;
  }

  .config-mobile-cta.is-checkout {
    animation: flex-select-pop 0.28s cubic-bezier(0.34, 1.4, 0.64, 1);
  }

  .mobile-checkout-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--gray-text);
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  .mobile-checkout-total-toggle {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    border: none;
    background: transparent;
    padding: 0;
    margin: 0;
    cursor: pointer;
    text-align: left;
    min-width: 0;
    font: inherit;
    color: inherit;
  }

  .mobile-checkout-price-row {
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  .mobile-checkout-price {
    font-family: var(--font-heading);
    font-size: 1.0625rem;
    font-weight: 700;
  }

  .mobile-checkout-chevron {
    flex-shrink: 0;
    color: var(--gray-text);
    transition: transform 0.22s ease;
  }

  .mobile-checkout-sticky.is-breakdown-open .mobile-checkout-chevron {
    transform: rotate(180deg);
  }

  .config-mobile-cta {
    position: relative;
    min-height: 48px;
    padding: 4px 4px 4px 16px;
    gap: 12px;
    font-size: 0.9375rem;
    font-weight: 700;
    border-radius: 14px;
    justify-content: center;
    overflow: hidden;
  }

  .config-mobile-cta > span:not(.btn-arrow) {
    flex: 1;
    min-width: 0;
    text-align: center;
    padding-right: 48px;
  }

  .config-mobile-cta .btn-arrow {
    position: absolute;
    right: 4px;
    top: 4px;
    bottom: 4px;
    width: auto;
    height: auto;
    aspect-ratio: 1;
    transform: none;
    border-radius: 12px;
  }

  .config-mobile-cta:disabled {
    opacity: 0.45;
    cursor: not-allowed;
  }

  .qty-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .qty-card {
    padding: 16px 12px;
    min-width: 0;
  }

  .qty-card.has-badge {
    padding-top: 36px;
  }

  .qty-card__amount {
    font-size: 1.25rem;
    padding-right: 0;
  }

  .qty-card__badge {
    top: 8px;
    left: 10px;
    right: auto;
    max-width: calc(100% - 20px);
    font-size: 0.5rem;
    letter-spacing: 0.03em;
    padding: 3px 7px;
    gap: 3px;
  }

  .qty-card__mark {
    top: 8px;
    right: 8px;
    width: 20px;
    height: 20px;
  }

  .config-shell {
    padding: 20px 18px 28px;
    border-radius: 16px;
  }

  .addon-card__body {
    padding-left: 16px;
  }

  .addon-card__line--sub {
    padding-left: 0;
    flex-wrap: wrap;
  }

  .addon-card__actions {
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
  }

  .profile-card {
    flex-wrap: wrap;
  }

  .profile-card__confirm {
    width: 100%;
    margin-left: 0;
    margin-top: 4px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .config-shell,
  .config-step-panel,
  .qty-card,
  .addon-card,
  .addon-chip,
  .addon-card__body,
  .addon-card__selection,
  .profile-card,
  .config-summary-lines li,
  .config-summary-total,
  .config-summary-cta,
  .config-mobile-cta,
  .mobile-checkout-bar,
  .mobile-checkout-sticky,
  .mobile-checkout-breakdown,
  .platform-switch,
  .custom-qty-modal,
  .custom-qty-modal__backdrop,
  .custom-qty-modal__panel,
  .custom-qty-suggest,
  .account-post-split,
  .step-block.is-entering .step-heading,
  .step-block.is-entering .step-subheading,
  .step-block.is-entering .step-back-btn,
  .step-block.is-entering .qty-grid,
  .step-block.is-entering .addons-list,
  .step-block.is-entering .account-user-trigger,
  .step-block.is-entering .order-field,
  .step-block.is-entering .account-post-split,
  .step-block.is-entering .step-skip,
  .step-block.is-entering .step-skip-btn,
  .anim-in {
    animation: none !important;
    transition: none !important;
  }

  .config-shell.is-loaded,
  .config-step-panel.is-visible {
    opacity: 1;
    transform: none;
  }
}

/* ── Free trial page ── */
.free-trial-page .page-wrapper--config {
  align-items: center;
  justify-content: center;
  min-height: 100svh;
  min-height: 100dvh;
  overscroll-behavior-y: none;
}

.free-trial-page .config-shell {
  max-width: 860px;
}

@media (min-width: 961px) {
  .free-trial-page .config-layout {
    grid-template-columns: minmax(0, 1fr) 280px;
    gap: 28px;
  }
}

.free-trial-intro {
  margin-top: 6px;
  font-size: 0.9375rem;
  color: var(--gray-text);
  line-height: 1.55;
}

.vol-price--free {
  color: var(--black);
  font-weight: 700;
}

.config-summary-total--free span:last-child {
  color: var(--black);
}

.free-trial-page #step-contact .step-heading {
  margin-bottom: 6px;
}

.free-trial-page #step-contact .order-field {
  margin-top: 14px;
}

.free-trial-page #step-contact .order-input {
  padding-left: 16px;
}

.free-trial-page .config-step-panel[hidden] {
  display: none !important;
}

.free-trial-contact__error {
  margin-top: 12px;
  font-size: 0.8125rem;
  color: #8a2b2b;
  line-height: 1.4;
}

.free-trial-contact__error.is-hidden {
  display: none;
}

.free-trial-success {
  max-width: 520px;
  padding: 8px 0 12px;
}

.free-trial-success__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  margin-bottom: 16px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--black);
  font-size: 1.125rem;
  font-weight: 800;
}

.free-trial-success__title {
  font-family: var(--font-heading);
  font-size: clamp(1.375rem, 2.5vw, 1.75rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 10px;
}

.free-trial-success__text {
  font-size: 0.9375rem;
  color: var(--gray-text);
  line-height: 1.6;
  margin-bottom: 22px;
}

.free-trial-success .btn {
  width: fit-content;
  max-width: 100%;
}

.free-trial-success__back {
  display: inline-block;
  margin-top: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--gray-text);
  text-decoration: none;
  transition: color 0.2s ease;
}

.free-trial-success__back:hover {
  color: var(--black);
}

/* ══════════════════════════════════════════
   Post-purchase
   ══════════════════════════════════════════ */

.post-purchase-page .page-wrapper--config {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 16px 12px 24px;
  overflow-x: hidden;
  overflow-y: auto;
}

.post-purchase-page .post-purchase-shell {
  width: 100%;
  margin-inline: auto;
}

/* Order tracker: top-aligned, document scroll (no nested overflow), no sticky-bar pad. */
.post-purchase-page .page-wrapper.page-wrapper--config.page-wrapper--order {
  background: #fff;
  justify-content: flex-start;
  align-items: stretch;
  min-height: 100vh;
  min-height: 100dvh;
  height: auto;
  overflow: visible;
  overflow-x: hidden;
  overflow-y: visible;
  padding: 16px 12px 24px;
}

.post-purchase-page .page-wrapper--order .order-shell.config-shell {
  max-width: 720px;
  padding-bottom: 24px;
}

@media (max-width: 960px) {
  .post-purchase-page .page-wrapper.page-wrapper--config.page-wrapper--order {
    min-height: 100svh;
    min-height: 100dvh;
    overflow: visible;
    overflow-x: hidden;
    overflow-y: visible;
    padding: 12px 12px 16px;
  }

  .post-purchase-page .page-wrapper--order .order-shell.config-shell,
  .post-purchase-page.configurator-page .page-wrapper--order .config-shell {
    padding-bottom: 20px;
  }
}

@media (max-width: 640px) {
  .post-purchase-page .page-wrapper.page-wrapper--config.page-wrapper--order {
    padding: 12px 12px 16px;
  }
}

.post-purchase-shell {
  max-width: 720px;
}

.order-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  margin-inline: auto;
}

.order-shell__header {
  margin-bottom: 20px;
}

.post-purchase-card {
  max-width: 480px;
  margin: 24px auto 8px;
  text-align: center;
}

.post-purchase-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--black);
}

.post-purchase-card__title {
  font-family: var(--font-heading);
  font-size: clamp(1.625rem, 3vw, 2.125rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 12px;
}

.post-purchase-card__text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--gray-text);
  margin-bottom: 18px;
}

.post-purchase-card__redirect {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 28px;
}

.post-purchase-card__redirect strong {
  font-variant-numeric: tabular-nums;
}

.post-purchase-card__cta {
  display: flex;
  margin: 0 auto;
  width: fit-content;
  max-width: 100%;
}

.post-purchase-card__icon--reject {
  background: rgba(10, 10, 10, 0.06);
  color: #0a0a0a;
}

.post-purchase-card__meta {
  margin: -6px 0 22px;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(10, 10, 10, 0.45);
  font-variant-numeric: tabular-nums;
}

.post-purchase-card__secondary {
  display: block;
  width: fit-content;
  margin: 16px auto 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: rgba(10, 10, 10, 0.5);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.post-purchase-card__secondary:hover {
  color: #0a0a0a;
}

.legal-page {
  max-width: 680px;
  margin: 12px auto 48px;
  padding: 0 4px 24px;
}

.legal-page__title {
  font-family: var(--font-heading, 'Space Grotesk', sans-serif);
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 8px;
}

.legal-page__updated {
  margin: 0 0 24px;
  font-size: 0.875rem;
  color: rgba(10, 10, 10, 0.45);
}

.legal-page h2 {
  font-family: var(--font-heading, 'Space Grotesk', sans-serif);
  font-size: 1.125rem;
  margin: 28px 0 10px;
}

.legal-page p,
.legal-page li {
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(10, 10, 10, 0.72);
}

.legal-page ul {
  padding-left: 1.2rem;
  margin: 0 0 12px;
}

.legal-page a {
  color: #0a0a0a;
  font-weight: 600;
}

.order-details {
  max-width: 560px;
  margin: 0 auto;
}

.order-hero {
  margin-bottom: 32px;
  animation: order-fade-up 0.55s ease both;
}

.order-hero__mark {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 20px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--black);
  box-shadow: 0 10px 28px rgba(184, 255, 44, 0.35);
}

.order-hero__pulse {
  position: absolute;
  inset: -6px;
  border-radius: inherit;
  border: 2px solid rgba(184, 255, 44, 0.55);
  animation: order-pulse 1.8s ease-out infinite;
}

.order-tracker {
  --order-tracker-dot: 10px;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  margin: 28px 0 0;
  padding: 0;
  position: relative;
}

.order-tracker::before,
.order-tracker::after {
  content: '';
  position: absolute;
  top: calc(var(--order-tracker-dot) / 2 - 1px);
  left: calc(var(--order-tracker-dot) / 2);
  right: calc(var(--order-tracker-dot) / 2);
  height: 2px;
  border-radius: 999px;
  pointer-events: none;
}

.order-tracker::before {
  background: var(--border);
  z-index: 0;
}

.order-tracker::after {
  right: auto;
  width: 0;
  max-width: calc(100% - var(--order-tracker-dot));
  background: rgba(184, 255, 44, 0.85);
  z-index: 0;
  transition: width 0.35s ease;
}

.order-tracker[data-progress="1"]::after {
  width: 0;
}

.order-tracker[data-progress="2"]::after {
  width: calc(50% - var(--order-tracker-dot) / 2);
}

.order-tracker[data-progress="3"]::after {
  width: calc(100% - var(--order-tracker-dot));
}

.order-tracker.is-cancelled::after {
  background: #ef4444;
}

.order-tracker.is-cancelled .order-tracker__step.is-done .order-tracker__dot,
.order-tracker.is-cancelled .order-tracker__step.is-active .order-tracker__dot {
  background: #ef4444;
}

.order-tracker.is-cancelled .order-tracker__step.is-active .order-tracker__dot {
  box-shadow: 0 0 0 4px #fff, 0 0 0 6px rgba(239, 68, 68, 0.28);
  animation: none;
}

.order-tracker.is-cancelled .order-tracker__step.is-active .order-tracker__label {
  animation: none;
  color: #b91c1c;
}

.order-tracker__step {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.order-tracker__step:nth-child(1) {
  align-items: flex-start;
  text-align: left;
}

.order-tracker__step:nth-child(2) {
  align-items: center;
  text-align: center;
}

.order-tracker__step:nth-child(3) {
  align-items: flex-end;
  text-align: right;
}

.order-tracker__dot {
  width: var(--order-tracker-dot);
  height: var(--order-tracker-dot);
  border-radius: 999px;
  background: #d8d8d2;
  box-shadow: 0 0 0 4px #fff;
  flex-shrink: 0;
}

.order-tracker__step.is-done .order-tracker__dot,
.order-tracker__step.is-active .order-tracker__dot {
  background: var(--primary);
}

.order-tracker__step.is-active .order-tracker__dot {
  box-shadow: 0 0 0 4px #fff, 0 0 0 6px rgba(184, 255, 44, 0.28);
}

.order-tracker__step[data-step="processing"].is-active .order-tracker__dot {
  animation: order-tracker-processing-pulse 1.7s ease-out infinite;
}

.order-tracker__step[data-step="processing"].is-active .order-tracker__label {
  animation: order-tracker-processing-label 1.7s ease-out infinite;
}

@keyframes order-tracker-processing-pulse {
  0% {
    box-shadow: 0 0 0 4px #fff, 0 0 0 6px rgba(184, 255, 44, 0.4);
  }
  70% {
    box-shadow: 0 0 0 4px #fff, 0 0 0 14px rgba(184, 255, 44, 0);
  }
  100% {
    box-shadow: 0 0 0 4px #fff, 0 0 0 6px rgba(184, 255, 44, 0);
  }
}

@keyframes order-tracker-processing-label {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.72;
  }
}

@media (prefers-reduced-motion: reduce) {
  .order-tracker__step[data-step="processing"].is-active .order-tracker__dot,
  .order-tracker__step[data-step="processing"].is-active .order-tracker__label {
    animation: none;
  }
}

.order-tracker__label {
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--text-muted, #8A8A84);
}

.order-tracker__step.is-done .order-tracker__label,
.order-tracker__step.is-active .order-tracker__label {
  color: var(--black);
}

.order-tracker__step.is-active .order-tracker__label {
  font-weight: 700;
}

.order-details__title {
  font-family: var(--font-heading);
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: 10px;
  margin-top: 4px;
}

.order-details__brand {
  display: inline-block;
  padding: 0 0.12em;
  background: linear-gradient(180deg, transparent 62%, rgba(184, 255, 44, 0.72) 62%);
  letter-spacing: 0.04em;
}

.order-details__lead {
  font-size: 1.025rem;
  line-height: 1.55;
  color: var(--gray-text);
  max-width: 32em;
  margin: 0;
}

.order-details__meta {
  display: none;
}

.order-details__card,
.order-details__panel {
  margin-bottom: 22px;
  animation: order-fade-up 0.55s ease 0.14s both;
}

.order-details__panel {
  padding: 0;
}

.order-details__card-title {
  font-family: var(--font-heading);
  font-size: 1.0625rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}

.order-summary-panel__toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: default;
}

.order-summary-panel__toggle .order-details__card-title {
  margin: 0;
}

.order-summary-panel__chevron {
  display: none;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: var(--gray-text);
  flex-shrink: 0;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), color 0.18s ease;
}

.order-summary-panel__body {
  margin-top: 8px;
}

/* Delivered: title + chevron stay; body collapsed until opened */
.order-summary-panel.is-collapsible .order-summary-panel__toggle {
  cursor: pointer;
  width: auto;
}

.order-summary-panel.is-collapsible .order-summary-panel__chevron {
  display: inline-flex;
}

.order-summary-panel.is-collapsible .order-summary-panel__toggle:hover .order-summary-panel__chevron {
  color: var(--black);
}

.order-summary-panel.is-collapsible .order-summary-panel__body {
  display: grid;
  grid-template-rows: 0fr;
  margin-top: 0;
  transition: grid-template-rows 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.order-summary-panel.is-collapsible.is-open .order-summary-panel__body {
  grid-template-rows: 1fr;
  margin-top: 8px;
}

.order-summary-panel.is-collapsible .order-summary-panel__body-inner {
  overflow: hidden;
  min-height: 0;
  opacity: 0;
  transition: opacity 0.22s ease;
}

.order-summary-panel.is-collapsible.is-open .order-summary-panel__body-inner {
  opacity: 1;
}

.order-summary-panel.is-collapsible.is-open .order-summary-panel__chevron {
  transform: rotate(180deg);
  color: var(--black);
}

.order-summary-user {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 10px;
  padding: 0 0 10px;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-heading);
  font-size: 0.975rem;
  letter-spacing: -0.02em;
  color: var(--black);
}

.order-summary-user[hidden] {
  display: none;
}

.order-summary-user__left {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.order-summary-user__label {
  font-family: var(--font-family);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: normal;
  color: var(--black);
}

.order-summary-user__handle {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--black);
  text-align: right;
  word-break: break-word;
  text-decoration: none;
  transition: color 0.15s ease, opacity 0.15s ease;
}

a.order-summary-user__handle:hover {
  color: rgba(10, 10, 10, 0.7);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.order-platform-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--black);
}

.order-platform-logo svg {
  display: block;
  width: 100%;
  height: 100%;
}

.order-platform-logo:empty,
.order-platform-logo[hidden] {
  display: none;
}

.order-progress-trigger {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0 0 8px;
  padding: 14px 16px;
  border: 1px solid rgba(10, 10, 10, 0.12);
  border-radius: 14px;
  background: var(--white);
  color: var(--black);
  font-family: var(--font-heading);
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
  animation: order-fade-up 0.55s ease 0.2s both;
}

.order-progress-trigger:hover {
  background: var(--off-white);
  border-color: rgba(10, 10, 10, 0.2);
}

.order-progress-trigger[hidden] {
  display: none;
}

.order-progress-trigger__inner {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.order-progress-trigger__alert {
  position: relative;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #ef4444;
  flex-shrink: 0;
  box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.45);
  animation: order-progress-alert-pulse 1.5s ease-out infinite;
}

.order-progress-trigger__alert.is-partial {
  background: #9ca3af;
  box-shadow: 0 0 0 0 rgba(156, 163, 175, 0.5);
  animation-name: order-progress-partial-pulse;
}

.order-progress-trigger__alert[hidden] {
  display: none;
}

@keyframes order-progress-alert-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.5);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(239, 68, 68, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0);
  }
}

@keyframes order-progress-partial-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(156, 163, 175, 0.55);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(156, 163, 175, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(156, 163, 175, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .order-progress-trigger__alert {
    animation: none;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.22);
  }

  .order-progress-trigger__alert.is-partial {
    box-shadow: 0 0 0 3px rgba(156, 163, 175, 0.35);
  }
}

.order-progress-modal {
  position: fixed;
  inset: 0;
  z-index: 230;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  pointer-events: none;
}

.order-progress-modal[hidden] {
  display: none;
}

.order-progress-modal.is-open,
.order-progress-modal.is-closing {
  pointer-events: auto;
}

.order-progress-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.45);
  opacity: 0;
  transition: opacity 0.36s ease;
}

.order-progress-modal.is-open .order-progress-modal__backdrop {
  opacity: 1;
}

.order-progress-modal.is-closing .order-progress-modal__backdrop {
  opacity: 0;
}

.order-progress-modal__panel {
  position: relative;
  width: min(100%, 420px);
  max-height: min(86vh, 640px);
  overflow: auto;
  padding: 24px 20px 18px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(10, 10, 10, 0.18);
  opacity: 0;
  transform: translateY(16px) scale(0.97);
  transition: opacity 0.36s ease, transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}

.order-progress-modal.is-open .order-progress-modal__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.order-progress-modal.is-closing .order-progress-modal__panel {
  opacity: 0;
  transform: translateY(10px) scale(0.98);
}

.order-progress-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.05);
  color: var(--gray-text);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.order-progress-modal__close:hover {
  color: var(--black);
  background: rgba(10, 10, 10, 0.09);
}

.order-progress-modal__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 40px 18px 0;
}

.order-progress-modal__empty {
  margin: 0;
  color: var(--gray-text);
  font-size: 0.9375rem;
  line-height: 1.45;
}

.order-progress-list {
  display: grid;
  gap: 10px;
}

.order-progress-item {
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
}

.order-progress-item__head {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px;
  border: none;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: default;
}

button.order-progress-item__head {
  cursor: pointer;
}

button.order-progress-item__head:hover {
  background: rgba(10, 10, 10, 0.02);
}

.order-progress-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--off-white);
  color: var(--black);
  flex-shrink: 0;
}

.order-progress-item__icon svg {
  width: 18px;
  height: 18px;
}

.order-progress-item__copy {
  display: grid;
  gap: 2px;
  flex: 1;
  min-width: 0;
}

.order-progress-item__name {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-heading);
  font-size: 0.975rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--black);
}

.order-progress-item__name-text {
  min-width: 0;
}

.order-progress-status {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
}

.order-progress-status__dot {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.18);
}

.order-progress-status--received .order-progress-status__dot {
  background: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.18);
}

.order-progress-status--processing .order-progress-status__dot {
  background: #eab308;
  box-shadow: 0 0 0 3px rgba(234, 179, 8, 0.22);
}

.order-progress-status--completed .order-progress-status__dot {
  background: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.2);
}

.order-progress-status--failed .order-progress-status__dot {
  background: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}

.order-progress-status--partial .order-progress-status__dot {
  background: #9ca3af;
  box-shadow: 0 0 0 3px rgba(156, 163, 175, 0.28);
}

.order-progress-post__title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.order-progress-issue {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 10px 0 0;
  padding: 0;
  border: none;
  background: none;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.45;
  color: var(--gray-text);
  text-decoration: none;
}

.order-progress-issue--failed,
.order-progress-issue--partial {
  color: var(--gray-text);
}

.order-progress-issue__text {
  flex: 1;
  min-width: 0;
}

.order-progress-issue__chevron {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  opacity: 0.55;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.order-progress-issue:hover .order-progress-issue__chevron,
.order-progress-issue:focus-visible .order-progress-issue__chevron {
  opacity: 0.9;
  transform: translateX(2px);
}

.order-progress-item__qty {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-text);
  font-variant-numeric: tabular-nums;
}

.order-progress-item__pct {
  color: inherit;
  font-weight: inherit;
}

.order-progress-item__chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.04);
  color: var(--gray-text);
  flex-shrink: 0;
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), background 0.18s ease, color 0.18s ease;
}

.order-progress-item.is-open .order-progress-item__chevron {
  transform: rotate(180deg);
  background: rgba(184, 255, 44, 0.35);
  color: var(--black);
}

.order-progress-item__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.order-progress-item.is-open .order-progress-item__body,
.order-progress-item.is-solo .order-progress-item__body {
  grid-template-rows: 1fr;
}

.order-progress-item__body-inner {
  overflow: hidden;
  min-height: 0;
  padding: 0 14px;
  opacity: 0;
  transform: translateY(-4px);
  transition: opacity 0.28s ease, transform 0.28s ease, padding 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.order-progress-item.is-open .order-progress-item__body-inner,
.order-progress-item.is-solo .order-progress-item__body-inner {
  padding: 0 14px 14px;
  opacity: 1;
  transform: translateY(0);
}

.order-progress-bar-wrap {
  position: relative;
  width: 100%;
  padding-bottom: 14px;
}

.order-progress-bar {
  position: relative;
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.06);
  overflow: hidden;
}

.order-progress-bar__fill {
  display: block;
  height: 100%;
  width: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, #c8ff4a 0%, var(--primary) 100%);
  transition: width 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.order-progress-bar__fill.is-ready {
  /* width set inline */
}

.order-progress-bar__current {
  position: absolute;
  top: calc(100% + 3px);
  left: 0;
  font-family: var(--font-heading);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1;
  color: var(--gray-text);
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  pointer-events: none;
}

.order-progress-bar__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 8px;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--black);
  font-variant-numeric: tabular-nums;
}

.order-progress-bar__meta span:last-child {
  color: var(--gray-text);
}

.order-progress-posts {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.order-progress-post__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 6px;
}

.order-progress-post__label {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: rgba(10, 10, 10, 0.72);
  text-decoration: none;
}

a.order-progress-post__label:hover {
  color: #0a0a0a;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.order-progress-post__qty {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  color: rgba(10, 10, 10, 0.55);
}

.order-progress-post .order-progress-bar {
  height: 8px;
}

.order-progress-post .order-progress-bar__meta {
  margin-top: 6px;
  font-size: 0.75rem;
}

@media (prefers-reduced-motion: reduce) {
  .order-progress-item__body,
  .order-progress-item__body-inner,
  .order-progress-item__chevron,
  .order-progress-bar__fill,
  .order-progress-modal__backdrop,
  .order-progress-modal__panel {
    transition: none;
  }
}

.order-details__card {
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: 20px;
  padding: 22px;
  background: var(--white);
}

.order-details__card--action {
  position: relative;
  background:
    linear-gradient(180deg, rgba(184, 255, 44, 0.14), rgba(184, 255, 44, 0.04) 42%, #fff 100%);
  border-color: rgba(146, 219, 0, 0.35);
  box-shadow: 0 14px 36px rgba(184, 255, 44, 0.12);
}

.order-details__card--action::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 18px;
  width: 4px;
  border-radius: 999px;
  background: var(--primary);
}

.order-details__card-head {
  margin-bottom: 8px;
}

.order-details__card-kicker {
  display: inline-block;
  margin-bottom: 6px;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #4d7300;
}

.order-details__lines {
  margin-bottom: 14px;
}

.order-details__total {
  border-top: 1px solid var(--border);
  padding-top: 14px;
}

.order-details__total span:last-child {
  font-family: var(--font-heading);
  font-weight: 700;
}

.order-details__form-text {
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--gray-text);
  margin-bottom: 16px;
}

.order-details__form-error {
  margin: 12px 0 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #b42318;
}

.order-links-panel {
  display: none;
}

.order-links-trigger {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  margin: 0 0 18px;
  padding: 16px 16px;
  border: 1.5px solid rgba(146, 219, 0, 0.35);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(184, 255, 44, 0.16), rgba(255, 255, 255, 0.96) 62%);
  text-align: left;
  cursor: pointer;
  animation: order-fade-up 0.55s ease 0.1s both;
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.order-links-trigger:hover {
  border-color: rgba(146, 219, 0, 0.55);
  box-shadow: 0 8px 22px rgba(184, 255, 44, 0.14);
  transform: translateY(-1px);
}

.order-links-trigger[hidden] {
  display: none;
}

.order-links-trigger__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(184, 255, 44, 0.35);
  color: var(--black);
  flex-shrink: 0;
}

.order-links-trigger__copy {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
  flex: 1;
}

.order-links-trigger__title {
  font-family: var(--font-heading);
  font-size: 0.975rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--black);
}

.order-links-trigger__hint {
  font-size: 0.8125rem;
  line-height: 1.4;
  color: var(--gray-text);
}

.order-links-trigger__mark {
  width: 18px;
  height: 18px;
  border: none;
  background: transparent;
  color: rgba(10, 10, 10, 0.45);
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.18s ease, transform 0.18s ease;
}

.order-links-trigger__mark svg {
  display: block;
}

.order-links-trigger:hover .order-links-trigger__mark,
.order-links-trigger.has-progress .order-links-trigger__mark,
.order-links-trigger[aria-expanded="true"] .order-links-trigger__mark,
.order-links-trigger.is-complete .order-links-trigger__mark {
  border: none;
  background: transparent;
  color: rgba(10, 10, 10, 0.72);
}

.order-links-trigger.is-complete {
  border-color: rgba(146, 219, 0, 0.55);
  margin-bottom: 36px;
}

.order-links-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  pointer-events: none;
}

.order-links-modal[hidden] {
  display: none;
}

.order-links-modal.is-open,
.order-links-modal.is-closing {
  pointer-events: auto;
}

.order-links-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.45);
  opacity: 0;
  transition: opacity 0.36s ease;
}

.order-links-modal.is-open .order-links-modal__backdrop {
  opacity: 1;
}

.order-links-modal.is-closing .order-links-modal__backdrop {
  opacity: 0;
}

.order-links-modal__panel {
  position: relative;
  width: min(100%, 420px);
  max-height: min(86vh, 640px);
  overflow: auto;
  padding: 24px 22px 20px;
  border-radius: 20px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(10, 10, 10, 0.18);
  opacity: 0;
  transform: translateY(16px) scale(0.97);
  transition: opacity 0.36s ease, transform 0.36s cubic-bezier(0.22, 1, 0.36, 1);
}

.order-links-modal.is-open .order-links-modal__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.order-links-modal.is-closing .order-links-modal__panel {
  opacity: 0;
  transform: translateY(10px) scale(0.98);
}

.order-links-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.05);
  color: var(--gray-text);
  cursor: pointer;
}

.order-links-modal__close:hover {
  color: var(--black);
  background: rgba(10, 10, 10, 0.09);
}

.order-links-modal__kicker {
  display: inline-flex;
  align-items: center;
  margin-bottom: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--primary);
  color: var(--black);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.order-links-modal__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 8px;
  padding-right: 28px;
}

.order-links-modal__text {
  margin: 0 0 16px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--gray-text);
}

.order-links-modal .addon-post-links {
  margin: 0;
}

.order-links-count {
  margin: 0 0 16px;
}

.order-links-count[hidden] {
  display: none;
}

.order-links-count__label {
  margin: 0 0 10px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--gray-text);
}

.order-links-count .addon-post-count-row {
  margin-bottom: 0;
}

.order-links-modal .addon-post-link-input {
  width: 100%;
  min-height: 42px;
  padding: 10px 12px;
  font-size: 0.875rem;
}

.order-links-modal__save {
  position: relative;
  width: 100%;
  justify-content: center;
  margin-top: 16px;
  min-height: 56px;
  padding: 4px 4px 4px 16px;
  font-size: 0.9375rem;
  border-radius: 14px;
  overflow: hidden;
}

#order-links-save[hidden] {
  display: none !important;
}

.order-links-modal__save #order-links-save-label {
  flex: 1;
  text-align: center;
  padding-right: 56px;
}

.order-links-modal__save .btn-arrow {
  position: absolute;
  right: 4px;
  top: 4px;
  bottom: 4px;
  width: auto;
  height: auto;
  aspect-ratio: 1;
  transform: none;
  border-radius: 14px;
}

@media (prefers-reduced-motion: reduce) {
  .order-links-modal__backdrop,
  .order-links-modal__panel {
    transition: none;
  }
}

.order-links-confirm {
  position: fixed;
  inset: 0;
  z-index: 240;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.order-links-confirm[hidden] {
  display: none !important;
}

.order-links-confirm__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.48);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.order-links-confirm.is-open .order-links-confirm__backdrop {
  opacity: 1;
}

.order-links-confirm__panel {
  position: relative;
  width: min(100%, 400px);
  padding: 24px 22px 20px;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(10, 10, 10, 0.22);
  transform: translateY(12px) scale(0.98);
  opacity: 0;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease;
}

.order-links-confirm.is-open .order-links-confirm__panel {
  transform: none;
  opacity: 1;
}

.order-links-confirm__title {
  margin: 0 0 8px;
  font-family: var(--font-heading, 'Space Grotesk', sans-serif);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0a0a0a;
}

.order-links-confirm__text {
  margin: 0 0 14px;
  font-size: 0.92rem;
  line-height: 1.45;
  color: rgba(10, 10, 10, 0.62);
}

.order-links-confirm__list {
  list-style: none;
  margin: 0 0 18px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-height: 180px;
  overflow: auto;
}

.order-links-confirm__list li {
  padding: 10px 12px;
  border-radius: 10px;
  background: rgba(10, 10, 10, 0.04);
  border: 1px solid rgba(10, 10, 10, 0.06);
  font-size: 0.82rem;
  line-height: 1.35;
  word-break: break-all;
  color: rgba(10, 10, 10, 0.78);
}

.order-links-confirm__actions {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 10px;
}

.order-links-confirm__cancel {
  min-height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(10, 10, 10, 0.12);
  background: #fff;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(10, 10, 10, 0.7);
  cursor: pointer;
}

.order-links-confirm__cancel:hover {
  background: rgba(10, 10, 10, 0.03);
  color: #0a0a0a;
}

.order-links-confirm__ok {
  width: 100%;
  min-height: 48px;
  justify-content: center;
  margin: 0;
  padding: 0 14px;
  gap: 0;
}

.order-links-confirm__ok .btn-arrow {
  display: none;
}

.order-links-confirm__ok span {
  flex: 1;
  text-align: center;
}

@media (prefers-reduced-motion: reduce) {
  .order-links-confirm__backdrop,
  .order-links-confirm__panel {
    transition: none;
  }
}

.order-details__post-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.order-details__post-links li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(184, 255, 44, 0.08);
  font-size: 0.875rem;
}

.order-details__post-links span {
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #4d7300;
}

.order-details__post-links a {
  color: var(--black);
  font-weight: 600;
  word-break: break-all;
  text-decoration: none;
}

.order-details__post-links a:hover {
  text-decoration: underline;
}

.order-details__note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 8px 0 22px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(10, 10, 10, 0.03);
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--gray-text);
  animation: order-fade-up 0.55s ease 0.2s both;
}

.order-details__note-dot {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 0.45em;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(184, 255, 44, 0.2);
}

.order-delivery-notes {
  margin: 8px 0 22px;
  padding: 14px 16px 15px;
  border-radius: 14px;
  background: rgba(10, 10, 10, 0.03);
  border: 1px solid rgba(10, 10, 10, 0.06);
  animation: order-fade-up 0.55s ease 0.2s both;
}

.order-delivery-notes[hidden] {
  display: none;
}

.order-delivery-notes__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.order-delivery-notes__mark {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(184, 255, 44, 0.2);
}

.order-delivery-notes__title {
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0a0a0a;
}

.order-delivery-notes__list {
  margin: 0;
  padding: 0 0 0 1.1em;
  list-style: disc;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--gray-text);
}

.order-delivery-notes__list li + li {
  margin-top: 6px;
}

.order-delivery-notes.is-done .order-delivery-notes__list {
  list-style: none;
  padding-left: 0;
}

.order-links-modal__notes {
  margin: 0 0 16px;
  padding: 12px 14px 12px 1.85em;
  list-style: disc;
  border-radius: 12px;
  background: rgba(10, 10, 10, 0.035);
  border: 1px solid rgba(10, 10, 10, 0.06);
  font-size: 0.78rem;
  line-height: 1.45;
  color: var(--gray-text);
}

.order-links-modal__notes[hidden] {
  display: none;
}

.order-links-modal__notes li + li {
  margin-top: 5px;
}

.order-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin: 14px 0 4px;
  padding: 8px 4px;
  color: var(--gray-text);
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;
  text-align: center;
  animation: order-fade-up 0.55s ease 0.24s both;
  transition: color 0.18s ease;
}

.order-growth-card {
  position: relative;
  width: 100%;
  margin: 18px 0 0;
  padding: 18px 18px 22px;
  border-radius: 18px;
  background: #f4f4f1;
  overflow: hidden;
  animation: order-fade-up 0.55s ease 0.18s both;
}

.order-growth-card[hidden] {
  display: none;
}

.order-growth-card__user {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
}

.order-growth-card__handle {
  margin: 0;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--black);
  text-align: left;
  text-decoration: none;
  transition: color 0.15s ease, opacity 0.15s ease;
}

a.order-growth-card__handle:hover {
  color: rgba(10, 10, 10, 0.7);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.order-growth-card__handle[hidden] {
  display: none;
}

.order-growth-card__user .order-platform-logo {
  width: 18px;
  height: 18px;
}

.order-growth-card__stats {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.order-growth-card__col {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 0;
  flex: 1 1 0;
}

.order-growth-card__col--flex {
  flex: 1.15 1 0;
}

.order-growth-card__label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray-text);
}

.order-growth-card__value {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 5.5vw, 1.875rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--black);
}

.order-growth-card__value--flex {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.25rem;
  padding: 8px 12px;
  border-radius: 10px;
  background: var(--primary);
}

.order-growth-card__arrow {
  flex: 0 0 auto;
  font-size: 1.125rem;
  font-weight: 600;
  color: #b0b0b0;
  line-height: 1;
  margin-top: 18px;
}

.order-reward-card {
  margin: 18px 0 8px;
  padding: 18px 18px 16px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e8e8e3;
  box-shadow: none;
  animation: order-fade-up 0.55s ease 0.22s both;
}

.order-reward-card[hidden] {
  display: none;
}

.order-reward-card__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 8px;
}

.order-reward-card__badge {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 28px;
  padding: 0 8px;
  border-radius: 8px;
  background: var(--primary);
  color: var(--black);
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
}

.order-reward-card__title {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0;
  color: var(--black);
}

.order-reward-card__text {
  margin: 0 0 8px;
  font-size: 0.9375rem;
  line-height: 1.45;
  color: var(--gray-text);
}

.order-reward-card__expiry {
  margin: 0 0 14px;
  font-family: var(--font-heading);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: #5c5c56;
  font-variant-numeric: tabular-nums;
}

.order-reward-card__cta {
  margin: 0 !important;
  animation: none !important;
}

.order-drop-report {
  margin: 14px 0 6px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid #e8e8e3;
  background: #fafaf7;
  opacity: 0;
  transform: translateY(12px);
  transition:
    opacity 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.25s ease,
    background 0.25s ease;
}

.order-drop-report.is-visible {
  opacity: 1;
  transform: none;
}

.order-drop-report.is-unlock {
  border-color: #c8e89a;
  background: #f7fcee;
  animation: order-drop-unlock 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.order-drop-report.is-success-flash {
  border-color: #9fd4b0;
  background: #f3faf5;
  animation: order-drop-success 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.order-drop-report[hidden] {
  display: none;
}

.order-drop-report__text {
  margin: 0 0 10px;
  font-size: 0.9375rem;
  line-height: 1.45;
  color: var(--gray-text);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.order-drop-report__btn {
  appearance: none;
  border: 1px solid #d4d4ce;
  background: #ffffff;
  color: var(--black);
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  border-radius: 10px;
  padding: 10px 14px;
  cursor: pointer;
  transform: translateY(0);
  transition:
    background 0.15s ease,
    border-color 0.15s ease,
    transform 0.18s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.2s ease,
    box-shadow 0.18s ease;
}

.order-drop-report__btn:hover:not(:disabled) {
  background: #f3f3ee;
  border-color: #c8c8c1;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(10, 10, 10, 0.06);
}

.order-drop-report__btn:active:not(:disabled) {
  transform: translateY(1px) scale(0.98);
  box-shadow: none;
}

.order-drop-report__btn:disabled {
  opacity: 0.55;
  cursor: default;
}

.order-drop-report__btn.is-sending {
  opacity: 0.7;
  animation: order-drop-btn-pulse 0.9s ease-in-out infinite;
}

.order-drop-report__status {
  margin: 10px 0 0;
  font-size: 0.875rem;
  line-height: 1.4;
  color: #5c5c56;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.28s ease, transform 0.28s ease, color 0.2s ease;
}

.order-drop-report__status.is-shown {
  opacity: 1;
  transform: none;
}

.order-drop-report__status.is-error {
  color: #b42318;
}

.order-drop-report.is-done .order-drop-report__btn {
  display: none;
}

@keyframes order-drop-unlock {
  0% {
    transform: translateY(8px) scale(0.985);
  }
  60% {
    transform: translateY(-2px) scale(1.01);
  }
  100% {
    transform: none;
  }
}

@keyframes order-drop-success {
  0% {
    transform: scale(0.99);
  }
  45% {
    transform: scale(1.015);
  }
  100% {
    transform: none;
  }
}

@keyframes order-drop-btn-pulse {
  0%,
  100% {
    opacity: 0.62;
  }
  50% {
    opacity: 0.9;
  }
}

.order-toast {
  position: fixed;
  left: 50%;
  bottom: max(20px, env(safe-area-inset-bottom, 0px));
  z-index: 80;
  max-width: min(420px, calc(100vw - 32px));
  padding: 12px 16px;
  border-radius: 12px;
  border: 1px solid #d4d4ce;
  background: #111110;
  color: #f7f7f2;
  font-family: var(--font-heading);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.35;
  text-align: center;
  box-shadow: 0 10px 28px rgba(10, 10, 10, 0.18);
  transform: translate(-50%, 12px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.order-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.order-toast.is-success {
  border-color: #1f6b3a;
  background: #123222;
}

.order-toast.is-error {
  border-color: #8f2f24;
  background: #3a1612;
}

.order-toast[hidden] {
  display: none;
}

.order-grow-cta {
  --btn-arrow-size: 48px;
  position: relative;
  width: 100%;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin: 14px 0 4px;
  padding: 4px calc(var(--btn-arrow-size) + 4px) 4px 4px;
  min-height: 56px;
  overflow: hidden;
  animation: order-fade-up 0.55s ease 0.22s both;
}

.order-grow-cta__label {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 8px;
}

.order-grow-cta .btn-arrow {
  position: absolute;
  top: 4px;
  right: 4px;
  bottom: 4px;
  left: auto;
  width: var(--btn-arrow-size);
  height: auto;
  aspect-ratio: 1;
  border-radius: 14px;
}

.order-grow-cta[hidden] {
  display: none;
}

.config-summary-lines__item.is-discount .config-summary-lines__label,
.vol-price--discount,
.pay-checkout__line--discount .pay-checkout__line-price {
  color: #16a34a;
}

.pay-checkout__line--discount .pay-checkout__line-label {
  color: #16a34a;
  font-weight: 700;
}

.order-details.is-delivered .order-links-trigger,
.order-details.is-delivered .order-links-panel,
.order-details.is-delivered #order-post-links,
.order-is-delivered .order-links-modal {
  display: none !important;
}

.order-whatsapp:hover {
  color: var(--black);
}

.order-whatsapp__icon {
  flex-shrink: 0;
  opacity: 0.75;
}

.order-whatsapp:hover .order-whatsapp__icon {
  opacity: 1;
}

.order-details__cta {
  width: fit-content;
  max-width: 100%;
}

@keyframes order-fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes order-pulse {
  0% {
    transform: scale(0.92);
    opacity: 0.85;
  }
  70% {
    transform: scale(1.18);
    opacity: 0;
  }
  100% {
    transform: scale(1.18);
    opacity: 0;
  }
}

/* ══════════════════════════════════════════
   Post-purchase offers
   ══════════════════════════════════════════ */

.page-wrapper.page-wrapper--config.page-wrapper--offer {
  background: var(--white);
  min-height: 100vh;
  min-height: 100dvh;
  align-items: center;
  justify-content: center;
  padding: 16px 12px 24px;
}

.offer-shell {
  max-width: 640px;
  width: 100%;
  margin-inline: auto;
}

.offer-header {
  margin-bottom: 20px;
  justify-content: center;
}

.offer-screen {
  max-width: 440px;
  margin: 8px auto 0;
  text-align: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

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

.offer-screen__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(184, 255, 44, 0.35);
  color: var(--black);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.offer-screen__badge--final {
  background: rgba(184, 255, 44, 0.55);
}

.offer-screen__headline {
  font-family: var(--font-heading);
  font-size: clamp(1.625rem, 4.2vw, 2.125rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.15;
  margin: 0 0 12px;
  color: var(--black);
}

.offer-screen__headline--final {
  font-size: clamp(1.375rem, 3.6vw, 1.75rem);
  margin-bottom: 22px;
}

.offer-screen__now {
  color: var(--black);
  background: linear-gradient(transparent 62%, rgba(184, 255, 44, 0.55) 62%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.offer-screen__accent {
  color: var(--black);
  background: linear-gradient(transparent 62%, rgba(184, 255, 44, 0.55) 62%);
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

.offer-screen__subcopy {
  margin: 0 0 28px;
  font-size: 1rem;
  line-height: 1.55;
  color: var(--gray-text);
}

.offer-card {
  text-align: left;
  margin: 0 0 24px;
  padding: 22px 22px 20px;
  border: 1px solid rgba(10, 10, 10, 0.08);
  border-radius: 22px;
  background: var(--white);
  box-shadow: 0 1px 2px rgba(10, 10, 10, 0.03);
}

.offer-card--final {
  text-align: center;
  padding: 26px 22px 24px;
}

.offer-card--followers .offer-card__title {
  margin-bottom: 10px;
}

.offer-card__subcopy {
  margin: 0 0 12px;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.45;
  color: var(--gray-text);
}

.offer-card__note {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 20px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.04);
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--text-muted);
}

.offer-card__title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
}

.offer-card--final .offer-card__title,
.offer-card--followers .offer-card__title {
  font-size: clamp(1.625rem, 4.5vw, 2rem);
  margin-bottom: 10px;
  color: transparent;
  background-image: linear-gradient(
    110deg,
    #0A0A0A 0%,
    #0A0A0A 38%,
    #5a7200 46%,
    #B8FF2C 50%,
    #5a7200 54%,
    #0A0A0A 62%,
    #0A0A0A 100%
  );
  background-size: 200% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: offer-title-shine 4.5s linear infinite;
}

@keyframes offer-title-shine {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .offer-card--final .offer-card__title,
  .offer-card--followers .offer-card__title {
    animation: none;
    color: var(--black);
    background: none;
    -webkit-text-fill-color: currentColor;
  }
}

.offer-card__includes {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: grid;
  gap: 10px;
}

.offer-card__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--black);
}

.offer-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: rgba(184, 255, 44, 0.22);
  color: var(--black);
  flex-shrink: 0;
}

.offer-card__pricing {
  display: grid;
  gap: 8px;
  padding-top: 16px;
  border-top: 1px solid rgba(10, 10, 10, 0.06);
}

.offer-card__pricing--final {
  border-top: none;
  padding-top: 0;
  justify-items: center;
  gap: 4px;
}

.offer-card__price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
}

.offer-card__price-label {
  font-size: 0.8125rem;
  font-weight: 500;
  color: var(--gray-text);
}

.offer-card__price-regular {
  font-size: 0.9375rem;
  font-weight: 400;
  color: var(--text-muted);
  text-decoration: line-through;
  text-decoration-thickness: 1px;
}

.offer-card__price-line {
  display: inline-flex;
  align-items: baseline;
  justify-content: center;
  gap: 6px;
  margin: 0;
}

.offer-card__price-line--was {
  margin-bottom: 2px;
}

.offer-card__price-line--now {
  margin-bottom: 0;
}

.offer-card__price-caption {
  font-size: 0.8125rem;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1;
}

.offer-card__price-caption--now {
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--gray-text);
}

.offer-card__price-row--deal .offer-card__price-label {
  font-weight: 600;
  color: var(--black);
}

.offer-card__price-deal {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--black);
}

.offer-card__pricing--final .offer-card__price-deal {
  font-size: 1.75rem;
}

.offer-card__pricing--final .offer-card__save {
  margin-top: 10px;
}

.offer-card__save {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin-top: 4px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(184, 255, 44, 0.28);
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: var(--black);
}

.offer-cta {
  position: relative;
  width: 100%;
  justify-content: flex-end;
  min-height: 56px;
  border-radius: 16px;
  padding: 4px;
}

.offer-cta__label {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  pointer-events: none;
  padding: 0 56px;
}

.offer-cta .btn-arrow {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  background: var(--primary);
}

.offer-cta:hover .btn-arrow {
  background: var(--primary-dark);
}

.offer-cta:disabled {
  opacity: 0.7;
  cursor: wait;
  transform: none;
  box-shadow: none;
}

.offer-skip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 16px;
  padding: 12px 8px;
  border: none;
  background: transparent;
  color: var(--gray-text);
  font-family: inherit;
  font-size: 0.8125rem;
  font-weight: 400;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1px;
  cursor: pointer;
  transition: color 0.15s ease;
}

.offer-skip:hover {
  color: var(--black);
}

@media (max-width: 640px) {
  .page-wrapper.page-wrapper--config.page-wrapper--offer {
    padding: 20px 12px 28px;
    align-items: center;
    justify-content: center;
  }

  .offer-shell {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 22px 18px 28px;
    margin-inline: auto;
  }

  .offer-header {
    width: 100%;
    justify-content: center;
    margin-bottom: 16px;
    text-align: center;
  }

  .offer-screen,
  .offer-screen.is-visible {
    width: 100%;
    max-width: none;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .offer-card {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding: 20px 18px 18px;
    border-radius: 18px;
  }

  .offer-cta {
    min-height: 54px;
  }
}


/* -- PURPL / Azul payment page (two-column checkout) ---------- */
.pay-page {
  --font-body: 'Manrope', sans-serif;
  min-height: 100svh;
  min-height: 100dvh;
  min-height: 100vh;
  margin: 0;
  overscroll-behavior-y: none;
  background: #fff;
  font-family: var(--font-body);
}

.pay-page .pay-checkout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr;
}

.pay-checkout__aside,
.pay-checkout__main {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.pay-checkout__aside {
  background: #f7f7f3;
  padding: 20px 20px 32px;
  animation: pay-fade-up 0.55s ease both;
}

.pay-checkout__main {
  background: #fff;
  padding: 20px 20px 40px;
  animation: pay-fade-up 0.55s ease 0.08s both;
}

.pay-checkout__aside-head,
.pay-checkout__main-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  margin-bottom: 28px;
}

.pay-checkout__main-head {
  justify-content: flex-end;
  gap: 12px;
}

.pay-checkout__continue {
  display: none;
  width: 100%;
  margin-top: 28px;
  justify-content: flex-start;
  gap: 0;
}

.pay-checkout__continue-label {
  flex: 1;
  text-align: center;
}

.pay-checkout__back {
  display: none;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(10, 10, 10, 0.55);
  cursor: pointer;
  line-height: 1.2;
}

.pay-checkout__back:hover {
  color: #0a0a0a;
}

.pay-checkout__timer {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  margin: 0 0 14px;
  padding: 10px 14px;
  border-radius: 10px;
  background: rgba(10, 10, 10, 0.04);
  border: 1px solid rgba(10, 10, 10, 0.08);
  font-family: var(--font-heading, 'Space Grotesk', sans-serif);
  line-height: 1;
}

.pay-checkout__timer-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.72);
}

.pay-checkout__timer-value {
  font-size: 1.05rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
  color: #0a0a0a;
  min-width: 3.2ch;
}

.pay-checkout__timer.is-urgent {
  background: rgba(220, 38, 38, 0.06);
  border-color: rgba(220, 38, 38, 0.18);
}

.pay-checkout__timer.is-urgent .pay-checkout__timer-value {
  color: #c62828;
}

.pay-checkout__timer--contact {
  display: none;
}

.pay-checkout__home {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(10, 10, 10, 0.45);
  text-decoration: none;
  transition: color 0.15s ease;
}

.pay-checkout__home:hover,
.pay-checkout__home:visited,
.pay-checkout__home:active {
  color: #0a0a0a;
}

.pay-checkout__home--step1 {
  display: none;
}

.pay-checkout__breakdown {
  width: min(100%, 420px);
  margin: 0 auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: clamp(12px, 4vh, 40px);
  padding-bottom: clamp(24px, 8vh, 72px);
}

.pay-checkout__main-body {
  width: min(100%, 400px);
  margin: 0 auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pay-checkout__title {
  margin: 0 0 10px;
  font-family: var(--font-heading, 'Space Grotesk', sans-serif);
  font-size: clamp(1.85rem, 4vw, 2.45rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #0a0a0a;
}

.pay-checkout__brand {
  color: #0a0a0a;
}

.pay-checkout__lead {
  margin: 0 0 28px;
  font-size: 0.95rem;
  line-height: 1.45;
  color: rgba(10, 10, 10, 0.58);
  max-width: 34ch;
}

.pay-checkout__account {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
  animation: pay-fade-up 0.5s ease 0.14s both;
}

.pay-checkout__account-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(10, 10, 10, 0.42);
}

.pay-checkout__account-row {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.pay-checkout__account-handle {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0a0a0a;
}

.pay-checkout__account-platform {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  line-height: 0;
}

.pay-checkout__account-platform svg {
  display: block;
  width: 18px;
  height: 18px;
}

.pay-checkout__lines {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pay-checkout__line {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(10, 10, 10, 0.08);
  font-size: 0.95rem;
  line-height: 1.35;
}

.pay-checkout__line:last-child {
  border-bottom: none;
  padding-bottom: 4px;
}

.pay-checkout__line--bundle {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
}

.pay-checkout__line-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.pay-checkout__line-label-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.pay-checkout__bundle-star {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: var(--primary, #b8ff2c);
  color: #0a0a0a;
  font-size: 0.72rem;
  line-height: 1;
}

.pay-checkout__bundle-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
  text-align: left;
}

.pay-checkout__bundle-chevron {
  display: inline-flex;
  flex-shrink: 0;
  color: rgba(10, 10, 10, 0.7);
  transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.pay-checkout__line--bundle.is-open .pay-checkout__bundle-chevron {
  transform: rotate(180deg);
}

.pay-checkout__bundle-includes {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  margin-top: 0;
  transition:
    grid-template-rows 0.32s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.22s ease,
    margin-top 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.pay-checkout__line--bundle.is-open .pay-checkout__bundle-includes {
  grid-template-rows: 1fr;
  opacity: 1;
  margin-top: 8px;
}

.pay-checkout__bundle-includes-list {
  overflow: hidden;
  min-height: 0;
  list-style: none;
  margin: 0;
  padding: 0 0 0 30px;
  display: grid;
  gap: 6px;
}

.pay-checkout__bundle-includes-list li {
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(10, 10, 10, 0.55);
  line-height: 1.3;
  opacity: 0;
  transform: translateY(-6px);
  transition:
    opacity 0.2s ease,
    transform 0.24s cubic-bezier(0.22, 1, 0.36, 1);
}

.pay-checkout__line--bundle.is-open .pay-checkout__bundle-includes-list li {
  opacity: 1;
  transform: translateY(0);
}

.pay-checkout__line--bundle.is-open .pay-checkout__bundle-includes-list li:nth-child(1) { transition-delay: 0.04s; }
.pay-checkout__line--bundle.is-open .pay-checkout__bundle-includes-list li:nth-child(2) { transition-delay: 0.08s; }
.pay-checkout__line--bundle.is-open .pay-checkout__bundle-includes-list li:nth-child(3) { transition-delay: 0.12s; }
.pay-checkout__line--bundle.is-open .pay-checkout__bundle-includes-list li:nth-child(4) { transition-delay: 0.16s; }
.pay-checkout__line--bundle.is-open .pay-checkout__bundle-includes-list li:nth-child(5) { transition-delay: 0.2s; }
.pay-checkout__line--bundle.is-open .pay-checkout__bundle-includes-list li:nth-child(n+6) { transition-delay: 0.24s; }

.pay-checkout__bundle-upgrade {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 5px;
}

.pay-checkout__bundle-old {
  color: rgba(10, 10, 10, 0.42);
  font-weight: 500;
}

.pay-checkout__bundle-arrow {
  color: rgba(10, 10, 10, 0.35);
  font-weight: 600;
}

.pay-checkout__bundle-new {
  color: var(--primary-dark, #7fbe00);
  font-weight: 700;
}

.pay-checkout__bundle-new--down {
  color: var(--primary-dark, #7fbe00);
  font-weight: 700;
}

.pay-checkout__bundle-upgrade.is-down .pay-checkout__bundle-old {
  color: rgba(10, 10, 10, 0.42);
  font-weight: 500;
}

.pay-checkout__bundle-svc {
  color: rgba(10, 10, 10, 0.58);
  font-weight: 500;
}

.pay-checkout__line--bundle.is-boost-anim .pay-checkout__bundle-includes-list > li,
.pay-checkout__line--bundle.is-downgrade-anim .pay-checkout__bundle-includes-list > li {
  opacity: 1;
  transform: none;
  transition: none;
}

.pay-checkout__line--bundle.is-boost-anim .pay-checkout__bundle-includes,
.pay-checkout__line--bundle.is-downgrade-anim .pay-checkout__bundle-includes {
  animation: none;
}

.pay-checkout__line--bundle.is-boost-anim .pay-checkout__bundle-upgrade .pay-checkout__bundle-old,
.pay-checkout__line--followers.is-boost-anim .pay-checkout__bundle-upgrade .pay-checkout__bundle-old {
  animation: bundle-old-in 0.35s ease both;
}

.pay-checkout__line--bundle.is-boost-anim .pay-checkout__bundle-upgrade .pay-checkout__bundle-arrow,
.pay-checkout__line--followers.is-boost-anim .pay-checkout__bundle-upgrade .pay-checkout__bundle-arrow {
  animation: bundle-arrow-in 0.35s ease both;
  animation-delay: 0.08s;
}

.pay-checkout__line--bundle.is-boost-anim .pay-checkout__bundle-upgrade .pay-checkout__bundle-new,
.pay-checkout__line--followers.is-boost-anim .pay-checkout__bundle-upgrade .pay-checkout__bundle-new {
  animation: bundle-new-in 0.42s cubic-bezier(0.22, 1, 0.36, 1) both;
  animation-delay: 0.14s;
}

.pay-checkout__line--bundle.is-boost-anim .pay-checkout__bundle-upgrade .pay-checkout__bundle-svc,
.pay-checkout__line--followers.is-boost-anim .pay-checkout__bundle-upgrade .pay-checkout__bundle-svc {
  animation: bundle-old-in 0.35s ease both;
  animation-delay: 0.18s;
}

/* Downgrade: keep base qty + label visible; fade out arrow + green boosted qty. */
.pay-checkout__line--bundle.is-downgrade-anim .pay-checkout__bundle-upgrade .pay-checkout__bundle-old,
.pay-checkout__line--followers.is-downgrade-anim .pay-checkout__bundle-upgrade .pay-checkout__bundle-old {
  animation: bundle-down-keep 0.35s ease both;
}

.pay-checkout__line--bundle.is-downgrade-anim .pay-checkout__bundle-upgrade .pay-checkout__bundle-arrow,
.pay-checkout__line--bundle.is-downgrade-anim .pay-checkout__bundle-upgrade .pay-checkout__bundle-new,
.pay-checkout__line--followers.is-downgrade-anim .pay-checkout__bundle-upgrade .pay-checkout__bundle-arrow,
.pay-checkout__line--followers.is-downgrade-anim .pay-checkout__bundle-upgrade .pay-checkout__bundle-new {
  overflow: hidden;
  white-space: nowrap;
}

.pay-checkout__line--bundle.is-downgrade-anim .pay-checkout__bundle-upgrade .pay-checkout__bundle-arrow,
.pay-checkout__line--followers.is-downgrade-anim .pay-checkout__bundle-upgrade .pay-checkout__bundle-arrow {
  animation: bundle-down-out 0.28s ease both;
}

.pay-checkout__line--bundle.is-downgrade-anim .pay-checkout__bundle-upgrade .pay-checkout__bundle-new,
.pay-checkout__line--followers.is-downgrade-anim .pay-checkout__bundle-upgrade .pay-checkout__bundle-new {
  animation: bundle-down-out 0.32s ease both;
}

.pay-checkout__line--bundle.is-downgrade-anim .pay-checkout__bundle-upgrade .pay-checkout__bundle-svc,
.pay-checkout__line--followers.is-downgrade-anim .pay-checkout__bundle-upgrade .pay-checkout__bundle-svc {
  animation: bundle-down-keep 0.35s ease both;
}

.pay-checkout__line--bundle.is-settling .pay-checkout__bundle-includes-list > li,
.pay-checkout__line--followers.is-settling .pay-checkout__line-label {
  opacity: 1;
  transform: none;
  transition: none;
}

.pay-checkout__line--bundle.is-boost-anim .pay-checkout__bundle-includes-list li:nth-child(1) .pay-checkout__bundle-old { animation-delay: 0.06s; }
.pay-checkout__line--bundle.is-boost-anim .pay-checkout__bundle-includes-list li:nth-child(1) .pay-checkout__bundle-arrow { animation-delay: 0.12s; }
.pay-checkout__line--bundle.is-boost-anim .pay-checkout__bundle-includes-list li:nth-child(1) .pay-checkout__bundle-new { animation-delay: 0.18s; }
.pay-checkout__line--bundle.is-boost-anim .pay-checkout__bundle-includes-list li:nth-child(1) .pay-checkout__bundle-svc { animation-delay: 0.22s; }

.pay-checkout__line--bundle.is-boost-anim .pay-checkout__bundle-includes-list li:nth-child(2) .pay-checkout__bundle-old { animation-delay: 0.14s; }
.pay-checkout__line--bundle.is-boost-anim .pay-checkout__bundle-includes-list li:nth-child(2) .pay-checkout__bundle-arrow { animation-delay: 0.2s; }
.pay-checkout__line--bundle.is-boost-anim .pay-checkout__bundle-includes-list li:nth-child(2) .pay-checkout__bundle-new { animation-delay: 0.26s; }
.pay-checkout__line--bundle.is-boost-anim .pay-checkout__bundle-includes-list li:nth-child(2) .pay-checkout__bundle-svc { animation-delay: 0.3s; }

.pay-checkout__line--bundle.is-boost-anim .pay-checkout__bundle-includes-list li:nth-child(3) .pay-checkout__bundle-old { animation-delay: 0.22s; }
.pay-checkout__line--bundle.is-boost-anim .pay-checkout__bundle-includes-list li:nth-child(3) .pay-checkout__bundle-arrow { animation-delay: 0.28s; }
.pay-checkout__line--bundle.is-boost-anim .pay-checkout__bundle-includes-list li:nth-child(3) .pay-checkout__bundle-new { animation-delay: 0.34s; }
.pay-checkout__line--bundle.is-boost-anim .pay-checkout__bundle-includes-list li:nth-child(3) .pay-checkout__bundle-svc { animation-delay: 0.38s; }

.pay-checkout__line--bundle.is-downgrade-anim .pay-checkout__bundle-includes-list li:nth-child(1) .pay-checkout__bundle-arrow,
.pay-checkout__line--bundle.is-downgrade-anim .pay-checkout__bundle-includes-list li:nth-child(1) .pay-checkout__bundle-new { animation-delay: 0.02s; }
.pay-checkout__line--bundle.is-downgrade-anim .pay-checkout__bundle-includes-list li:nth-child(2) .pay-checkout__bundle-arrow,
.pay-checkout__line--bundle.is-downgrade-anim .pay-checkout__bundle-includes-list li:nth-child(2) .pay-checkout__bundle-new { animation-delay: 0.06s; }
.pay-checkout__line--bundle.is-downgrade-anim .pay-checkout__bundle-includes-list li:nth-child(3) .pay-checkout__bundle-arrow,
.pay-checkout__line--bundle.is-downgrade-anim .pay-checkout__bundle-includes-list li:nth-child(3) .pay-checkout__bundle-new { animation-delay: 0.1s; }

@keyframes bundle-open-boost {
  from { opacity: 0.35; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bundle-old-in {
  from { opacity: 0; transform: translateY(4px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bundle-arrow-in {
  from { opacity: 0; transform: translateX(-4px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes bundle-new-in {
  from { opacity: 0; transform: translateY(6px) scale(0.92); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes bundle-down-keep {
  0% { opacity: 1; color: rgba(10, 10, 10, 0.42); }
  100% { opacity: 1; color: rgba(10, 10, 10, 0.55); }
}

@keyframes bundle-down-out {
  0% { opacity: 1; transform: translateY(0) scale(1); max-width: 5em; }
  100% { opacity: 0; transform: translateY(-4px) scale(0.94); max-width: 0; }
}

.pay-checkout__line-label {
  color: rgba(10, 10, 10, 0.78);
  font-weight: 500;
}

.pay-checkout__line-price {
  flex-shrink: 0;
  font-weight: 650;
  font-variant-numeric: tabular-nums;
  color: #0a0a0a;
}

.pay-checkout__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-top: 10px;
  padding-top: 14px;
  border-top: 1.5px solid rgba(10, 10, 10, 0.14);
  font-family: var(--font-heading, 'Space Grotesk', sans-serif);
}

/* -- Checkout bundle booster (Mejora tu paquete) -------------- */
.pay-booster {
  margin-top: 20px;
  padding: 18px 16px 14px;
  border-radius: 14px;
  border: 1px solid #E8E8E3;
  border-left: 4px solid #E8E8E3;
  background: #FBFBF8;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.03);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.pay-booster.is-enter {
  animation: pay-booster-enter 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.pay-booster.is-added {
  border-color: #E8E8E3;
  border-left-color: #B7FF22;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
}

.pay-booster.is-pulse-in {
  animation: pay-booster-pulse-in 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.pay-booster.is-pulse-out {
  animation: pay-booster-pulse-out 0.35s ease;
}

.pay-booster.is-reverting {
  animation: pay-booster-revert 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

@keyframes pay-booster-enter {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pay-booster-pulse-in {
  0% { transform: scale(1); }
  40% { transform: scale(1.015); }
  100% { transform: scale(1); }
}

@keyframes pay-booster-pulse-out {
  0% { transform: scale(1); opacity: 1; }
  45% { transform: scale(0.99); opacity: 0.92; }
  100% { transform: scale(1); opacity: 1; }
}

@keyframes pay-booster-revert {
  0% { transform: scale(1); }
  35% { transform: scale(0.985); }
  100% { transform: scale(1); }
}

.pay-booster__head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.pay-booster__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: #B7FF22;
  color: #0a0a0a;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
  transition: font-size 0.25s ease, transform 0.25s ease;
}

.pay-booster.is-added .pay-booster__mark {
  font-size: 0.78rem;
}

.pay-booster__title {
  margin: 0;
  font-family: var(--font-heading, 'Space Grotesk', sans-serif);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0a0a0a;
  transition: opacity 0.22s ease;
}

.pay-booster__lead,
.pay-booster__perks,
.pay-booster__pricing,
.pay-booster__added-line {
  overflow: hidden;
  transition:
    opacity 0.28s ease,
    max-height 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    margin 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    padding 0.38s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.28s ease;
}

.pay-booster__lead {
  max-height: 52px;
  margin: 0 0 14px;
  opacity: 1;
  font-size: 0.84rem;
  line-height: 1.35;
  color: rgba(10, 10, 10, 0.5);
}

.pay-booster.is-added .pay-booster__lead {
  max-height: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}

.pay-booster__perks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-height: 140px;
  margin: 0 0 16px;
  padding: 12px 0;
  opacity: 1;
  border-top: 1px solid #ECECE6;
  border-bottom: 1px solid #ECECE6;
}

.pay-booster__perk {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2px;
  padding: 0 6px;
  min-width: 0;
}

.pay-booster__perk + .pay-booster__perk {
  border-left: 1px solid #ECECE6;
}

.pay-booster__perk-icon {
  display: inline-flex;
  color: rgba(10, 10, 10, 0.55);
  margin-bottom: 4px;
  line-height: 0;
}

.pay-booster__perk-icon svg {
  width: 14px;
  height: 14px;
}

.pay-booster__perk-qty {
  font-family: var(--font-heading, 'Space Grotesk', sans-serif);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0a0a0a;
  line-height: 1.15;
}

.pay-booster__perk-name {
  font-size: 0.72rem;
  font-weight: 500;
  color: rgba(10, 10, 10, 0.48);
  line-height: 1.2;
}

.pay-booster.is-added .pay-booster__perks {
  max-height: 0;
  margin: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  border-top-color: transparent;
  border-bottom-color: transparent;
  pointer-events: none;
}

.pay-booster__added-line {
  max-height: 0;
  margin: 0;
  opacity: 0;
  font-size: 0.88rem;
  font-weight: 600;
  line-height: 1.4;
  color: rgba(10, 10, 10, 0.72);
  pointer-events: none;
}

.pay-booster.is-added .pay-booster__added-line {
  max-height: 72px;
  margin: 0 0 14px;
  opacity: 1;
  pointer-events: auto;
}

.pay-booster__pricing {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  max-height: 72px;
  margin: 0 0 14px;
  opacity: 1;
}

.pay-booster.is-added .pay-booster__pricing {
  max-height: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}

.pay-booster__value,
.pay-booster__deal {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.pay-booster__deal {
  text-align: right;
}

.pay-booster__value-label,
.pay-booster__deal-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(10, 10, 10, 0.42);
  letter-spacing: 0.02em;
}

.pay-booster__was {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(10, 10, 10, 0.4);
  text-decoration: line-through;
}

.pay-booster__deal-price {
  font-family: var(--font-heading, 'Space Grotesk', sans-serif);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #0a0a0a;
}

.pay-booster__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  min-height: 46px;
  padding: 11px 14px;
  border-radius: 12px;
  border: 1px solid rgba(10, 10, 10, 0.78);
  background: #fff;
  color: #0a0a0a;
  font-family: inherit;
  font-size: 0.92rem;
  font-weight: 650;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.pay-booster__cta:hover:not(:disabled) {
  background: rgba(10, 10, 10, 0.035);
}

.pay-booster__cta:disabled {
  cursor: default;
  border-color: #E8E8E3;
  background: #fff;
  color: rgba(10, 10, 10, 0.72);
}

.pay-booster__cta-arrow {
  display: inline-flex;
  color: var(--primary-dark, #92db00);
  line-height: 0;
  max-width: 20px;
  opacity: 1;
  overflow: hidden;
  transition: opacity 0.22s ease, max-width 0.22s ease;
}

.pay-booster.is-added .pay-booster__cta-arrow {
  max-width: 0;
  opacity: 0;
}

.pay-booster__skip {
  display: block;
  width: 100%;
  margin-top: 10px;
  padding: 0;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(10, 10, 10, 0.4);
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

.pay-booster__skip:hover {
  color: rgba(10, 10, 10, 0.62);
}

@media (max-width: 380px) {
  .pay-booster__perk-qty {
    font-size: 0.95rem;
  }
}

.pay-checkout__total span {
  font-size: 1rem;
  font-weight: 600;
  color: rgba(10, 10, 10, 0.7);
}

.pay-checkout__total strong {
  font-size: clamp(1.35rem, 3vw, 1.7rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0a0a0a;
  font-variant-numeric: tabular-nums;
}

.pay-checkout__form-title {
  margin: 0 0 8px;
  font-family: var(--font-heading, 'Space Grotesk', sans-serif);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0a0a0a;
}

.pay-form .order-label {
  display: block;
  margin: 14px 0 6px;
}

.pay-page .order-input {
  padding-left: 16px;
}

.pay-form__hint {
  margin: 0 0 4px;
  font-size: 0.9rem;
  color: rgba(10, 10, 10, 0.6);
  line-height: 1.4;
}

.pay-card__row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 5.75rem);
  gap: 12px;
  max-width: 100%;
}

.pay-card__col {
  min-width: 0;
}

.pay-card__col .order-input-wrap,
.pay-card__col .order-input {
  max-width: 100%;
}

body.pay-card-modal-open {
  overflow: hidden;
}

.pay-card-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  pointer-events: none;
}

@media (min-width: 600px) {
  .pay-card-modal {
    padding: 20px;
  }
}

.pay-card-modal[hidden] {
  display: none;
}

.pay-card-modal.is-open,
.pay-card-modal.is-closing {
  pointer-events: auto;
}

.pay-card-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.48);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.pay-card-modal.is-open .pay-card-modal__backdrop {
  opacity: 1;
}

.pay-card-modal.is-closing .pay-card-modal__backdrop {
  opacity: 0;
}

.pay-card-modal__panel {
  position: relative;
  width: min(100%, 420px);
  max-height: min(92vh, 720px);
  overflow: auto;
  padding: 24px 20px 20px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(10, 10, 10, 0.08);
  box-shadow: 0 20px 50px rgba(10, 10, 10, 0.22);
  opacity: 0;
  transform: translateY(14px) scale(0.98);
  transition: opacity 0.28s ease, transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 600px) {
  .pay-card-modal__panel {
    transform: translateY(14px) scale(0.98);
  }
}

.pay-card-modal.is-open .pay-card-modal__panel {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.pay-card-modal.is-closing .pay-card-modal__panel {
  opacity: 0;
  transform: translateY(12px);
}

.pay-card-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: rgba(10, 10, 10, 0.55);
  cursor: pointer;
}

.pay-card-modal__close:hover {
  background: rgba(10, 10, 10, 0.06);
  color: #0a0a0a;
}

.pay-card-modal__close:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.pay-card-modal__title {
  margin: 0 28px 6px 0;
  font-family: var(--font-heading, 'Space Grotesk', sans-serif);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0a0a0a;
}

.pay-card-modal__lead {
  margin: 0 0 12px;
  font-size: 0.9rem;
  color: rgba(10, 10, 10, 0.6);
  line-height: 1.4;
}

.pay-card-modal__amount {
  margin: 0 0 8px;
  font-family: var(--font-heading, 'Space Grotesk', sans-serif);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #0a0a0a;
  font-variant-numeric: tabular-nums;
}

.pay-card-modal .pay-card .order-label {
  display: block;
  margin: 14px 0 6px;
}

.pay-card-modal .pay-card .order-label:first-of-type {
  margin-top: 8px;
}

.pay-card-modal .pay-error {
  margin-top: 12px;
}

.pay-card-modal__cta {
  width: 100%;
  margin-top: 16px;
  justify-content: flex-start;
  gap: 0;
}

.pay-card-modal__cta #pay-card-submit-label {
  flex: 1;
  text-align: center;
}

.checkout-processing-modal {
  position: fixed;
  inset: 0;
  z-index: 10050;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
}

.checkout-processing-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.checkout-processing-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 10, 0.52);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.checkout-processing-modal-content {
  position: relative;
  width: 100%;
  max-width: 360px;
  margin: 1rem;
  padding: 2rem 1.75rem 1.7rem;
  background: var(--white);
  border-radius: 24px;
  box-shadow: 0 24px 60px rgba(10, 10, 10, 0.2);
  text-align: center;
  font-family: var(--font-family);
  transform: scale(0.96) translateY(10px);
  opacity: 0;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.28s ease;
}

.checkout-processing-modal.active .checkout-processing-modal-content {
  transform: scale(1) translateY(0);
  opacity: 1;
}

.checkout-processing-modal-spinner {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.15rem;
  border: 3.5px solid var(--border);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: checkout-processing-spin 0.85s linear infinite;
}

@keyframes checkout-processing-spin {
  to { transform: rotate(360deg); }
}

.checkout-processing-modal-title {
  margin: 0;
  font-family: var(--font-heading, 'Space Grotesk', sans-serif);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--black);
}

.checkout-processing-modal-note {
  margin: 0.55rem 0 0;
  font-family: var(--font-family);
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--gray-text);
}

.checkout-processing-modal-status {
  margin: 0.85rem 0 0;
  min-height: 1.2em;
  font-family: var(--font-family);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--black);
}

body.checkout-processing {
  overflow: hidden;
}

.pay-form__cta {
  width: 100%;
  margin-top: 18px;
  justify-content: flex-start;
  gap: 0;
}

.pay-form__cta #pay-submit-label {
  flex: 1;
  text-align: center;
}

.pay-checkout__trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 14px 0 0;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(10, 10, 10, 0.48);
}

.pay-form__proof {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
}

.pay-form__proof-line {
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px 8px;
  font-size: 0.875rem;
  line-height: 1.2;
  white-space: nowrap;
}

.pay-form__proof-stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: #f0b429;
}

.pay-form__proof-stars svg {
  width: 14px;
  height: 14px;
  display: block;
}

.pay-form__proof-score {
  font-weight: 700;
  color: #0a0a0a;
}

.pay-form__proof-dot {
  color: rgba(10, 10, 10, 0.28);
  font-weight: 600;
}

.pay-form__proof-secure {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: rgba(10, 10, 10, 0.58);
  font-weight: 500;
}

.pay-form__proof-secure svg {
  width: 13px;
  height: 13px;
  display: block;
  flex-shrink: 0;
}

.pay-form__pay-badges {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.pay-form__pay-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  width: 58px;
  height: 36px;
  border-radius: 7px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(10, 10, 10, 0.08);
}

.pay-form__pay-badge-label {
  font-family: var(--font-heading, 'Space Grotesk', sans-serif);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
}

.pay-form__pay-badge--visa {
  background: #1a1f71;
  color: #fff;
}

.pay-form__pay-badge--visa .pay-form__pay-badge-label {
  font-style: italic;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
}

.pay-form__pay-badge--mc {
  background: #0a0a0a;
}

.pay-form__pay-badge-mc {
  position: relative;
  width: 28px;
  height: 18px;
}

.pay-form__pay-badge-mc::before,
.pay-form__pay-badge-mc::after {
  content: "";
  position: absolute;
  top: 0;
  width: 18px;
  height: 18px;
  border-radius: 50%;
}

.pay-form__pay-badge-mc::before {
  left: 0;
  background: #eb001b;
}

.pay-form__pay-badge-mc::after {
  right: 0;
  background: #f79e1b;
}

.pay-form__pay-badge--apple {
  background: #0a0a0a;
  color: #fff;
  gap: 3px;
}

.pay-form__pay-badge-apple {
  width: 11px;
  height: 13px;
  display: block;
}

.pay-form__pay-badge--apple .pay-form__pay-badge-label {
  font-size: 0.84rem;
  font-weight: 600;
}

.pay-form__pay-badge--google {
  background: #fff;
  color: #3c4043;
  gap: 3px;
}

.pay-form__pay-badge-g {
  font-family: var(--font-heading, 'Space Grotesk', sans-serif);
  font-size: 0.95rem;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(120deg, #4285f4 20%, #34a853 45%, #fbbc05 70%, #ea4335 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.pay-form__pay-badge--google .pay-form__pay-badge-label {
  font-size: 0.84rem;
  font-weight: 600;
  color: #3c4043;
  -webkit-text-fill-color: #3c4043;
}

.pay-error {
  margin: 12px 0 0;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(180, 35, 24, 0.08);
  color: #8f1f16;
  font-size: 0.9rem;
  line-height: 1.35;
}

.pay-status,
.pay-success {
  text-align: center;
}

.pay-status__text {
  margin: 8px 0 18px;
  color: rgba(10, 10, 10, 0.68);
  line-height: 1.45;
}

.pay-status__spinner {
  width: 28px;
  height: 28px;
  margin: 0 auto 18px;
  border-radius: 50%;
  border: 2.5px solid rgba(10, 10, 10, 0.12);
  border-top-color: #0a0a0a;
  animation: pay-spin 0.8s linear infinite;
}

@keyframes pay-spin {
  to { transform: rotate(360deg); }
}

@keyframes pay-fade-up {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pay-status__cancel {
  display: block;
  width: 100%;
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid rgba(10, 10, 10, 0.12);
  border-radius: 12px;
  background: #fff;
  color: rgba(10, 10, 10, 0.62);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.pay-status__cancel:hover {
  background: rgba(10, 10, 10, 0.03);
  border-color: rgba(10, 10, 10, 0.22);
  color: #0a0a0a;
}

/* Author display rules must not override the HTML hidden attribute. */
.pay-status [hidden],
#pay-retry-popup[hidden],
#pay-cancel[hidden] {
  display: none !important;
}

.pay-success .post-purchase-card__icon {
  margin: 0 auto 12px;
}

#pay-retry-popup {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 8px;
  padding: 16px 20px;
  min-height: 56px;
  box-sizing: border-box;
}

/* Mobile: 2-step checkout (order → contact/pay) */
@media (max-width: 899px) {
  .pay-checkout__continue {
    display: inline-flex;
  }

  .pay-page .pay-checkout.is-pay-step-1 .pay-checkout__main {
    display: none;
  }

  .pay-page .pay-checkout.is-pay-step-2 .pay-checkout__aside {
    display: none;
  }

  .pay-page .pay-checkout.is-pay-step-1 .pay-checkout__aside,
  .pay-page .pay-checkout.is-pay-step-2 .pay-checkout__main {
    min-height: 100vh;
    min-height: 100dvh;
    justify-content: center;
    align-items: center;
    padding-top: 24px;
    padding-bottom: 32px;
  }

  .pay-checkout__aside-head,
  .pay-checkout__main-head,
  .pay-checkout__breakdown,
  .pay-checkout__main-body {
    width: min(100%, 420px);
    margin-left: auto;
    margin-right: auto;
  }

  .pay-page .pay-checkout.is-pay-step-1 .pay-checkout__aside-head {
    justify-content: space-between;
    margin-bottom: 20px;
  }

  .pay-checkout__home--step1 {
    display: inline-flex;
  }

  .pay-checkout__home--desktop {
    display: none;
  }

  .pay-page .pay-checkout.is-pay-step-2 .pay-checkout__back:not([hidden]) {
    display: inline-flex;
  }

  .pay-page .pay-checkout.is-pay-step-2 .pay-checkout__main-head {
    justify-content: flex-start;
    margin-bottom: 20px;
  }

  .pay-checkout__breakdown {
    flex: 0 1 auto;
    justify-content: center;
    padding-top: 0;
    padding-bottom: 0;
  }

  .pay-checkout__main-body {
    flex: 0 1 auto;
    justify-content: center;
    padding-top: 0;
  }

  .pay-checkout__title,
  .pay-checkout__lead {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }

  .pay-checkout__timer {
    margin-left: auto;
    margin-right: auto;
  }

  .pay-checkout__form-title {
    text-align: center;
  }

  .pay-form__hint {
    text-align: center;
  }

  /* Contact step: keep countdown visible at top */
  .pay-page .pay-checkout.is-pay-step-2 .pay-checkout__timer--contact:not([hidden]) {
    display: inline-flex;
    align-self: center;
    margin: 0 0 18px;
  }

  /* Compact trust row under pay CTA (mobile only) */
  .pay-form__proof {
    margin-top: 14px;
    gap: 14px;
  }

  .pay-form__proof-line {
    gap: 5px 7px;
    font-size: 0.8125rem;
  }

  .pay-form__proof-stars svg {
    width: 12px;
    height: 12px;
  }

  .pay-form__proof-score {
    font-weight: 700;
    color: #0a0a0a;
  }

  .pay-form__proof-dot {
    color: rgba(10, 10, 10, 0.26);
  }

  .pay-form__proof-secure {
    color: rgba(10, 10, 10, 0.55);
    font-weight: 500;
    gap: 4px;
  }

  .pay-form__proof-secure svg {
    width: 12px;
    height: 12px;
  }

  .pay-form__pay-badges {
    gap: 6px;
    flex-wrap: nowrap;
  }

  .pay-form__pay-badge {
    width: 48px;
    height: 30px;
    border-radius: 6px;
    background: #fff;
    color: #0a0a0a;
    box-shadow: 0 0 0 1px rgba(10, 10, 10, 0.1);
  }

  .pay-form__pay-badge--visa {
    background: #fff;
    color: #1a1f71;
  }

  .pay-form__pay-badge--visa .pay-form__pay-badge-label {
    font-style: italic;
    font-size: 0.78rem;
    letter-spacing: 0.05em;
  }

  .pay-form__pay-badge--mc {
    background: #fff;
  }

  .pay-form__pay-badge-mc {
    width: 22px;
    height: 14px;
  }

  .pay-form__pay-badge-mc::before,
  .pay-form__pay-badge-mc::after {
    width: 14px;
    height: 14px;
  }

  .pay-form__pay-badge--apple {
    background: #fff;
    color: #0a0a0a;
    gap: 2px;
  }

  .pay-form__pay-badge-apple {
    width: 9px;
    height: 11px;
  }

  .pay-form__pay-badge--apple .pay-form__pay-badge-label {
    font-size: 0.7rem;
    font-weight: 600;
  }

  .pay-form__pay-badge--google {
    background: #fff;
    gap: 2px;
  }

  .pay-form__pay-badge-g {
    font-size: 0.8rem;
  }

  .pay-form__pay-badge--google .pay-form__pay-badge-label {
    font-size: 0.7rem;
  }
}

@media (min-width: 900px) {
  .pay-page .pay-checkout {
    grid-template-columns: minmax(0, 1.22fr) minmax(0, 1fr);
  }

  .pay-checkout__aside {
    padding: 28px 40px 48px 48px;
  }

  .pay-checkout__main {
    padding: 28px 48px 48px 40px;
    border-left: 1px solid rgba(10, 10, 10, 0.06);
  }

  .pay-checkout__aside-head,
  .pay-checkout__breakdown {
    width: min(100%, 460px);
    margin-left: auto;
    margin-right: 0;
    padding-right: 24px;
  }

  .pay-checkout__breakdown {
    justify-content: center;
    padding-top: clamp(16px, 5vh, 48px);
    padding-bottom: clamp(32px, 10vh, 96px);
  }

  .pay-checkout__main-body {
    width: min(100%, 380px);
    margin: 0 auto 0 24px;
  }

  .pay-checkout__continue,
  .pay-checkout__back {
    display: none !important;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pay-checkout__aside,
  .pay-checkout__main,
  .pay-checkout__account,
  .pay-booster,
  .pay-booster.is-enter,
  .pay-booster.is-pulse-in,
  .pay-booster.is-pulse-out,
  .pay-booster.is-reverting,
  .pay-checkout__line--bundle.is-boost-anim .pay-checkout__bundle-includes,
  .pay-checkout__line--bundle.is-downgrade-anim .pay-checkout__bundle-includes,
  .pay-checkout__line--bundle.is-boost-anim .pay-checkout__bundle-upgrade span,
  .pay-checkout__line--bundle.is-downgrade-anim .pay-checkout__bundle-upgrade span {
    animation: none;
  }

  .pay-booster__lead,
  .pay-booster__perks,
  .pay-booster__pricing,
  .pay-booster__added-line,
  .pay-checkout__bundle-chevron,
  .pay-checkout__bundle-includes,
  .pay-checkout__bundle-includes-list li {
    transition: none;
    animation: none;
  }

  .pay-checkout__bundle-includes-list li {
    opacity: 1;
    transform: none;
  }
}

/* —— Shared public-page motion (motion.js) —— */
@keyframes fx-rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fx-rise-soft {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fx-scale-in {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.fx-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.fx-reveal.is-in {
  opacity: 1;
  transform: none;
  will-change: auto;
}

.fx-reveal--stagger.fx-reveal {
  /* Parent only gates children; keep itself visible once in view */
  opacity: 1;
  transform: none;
}

.fx-reveal--stagger .fx-reveal--item {
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: calc(var(--fx-i, 0) * 70ms);
}

.fx-reveal--stagger.is-in .fx-reveal--item {
  opacity: 1;
  transform: none;
}

.fx-reveal--fade {
  transform: none;
}

.fx-reveal--scale {
  transform: scale(0.97);
}

.fx-reveal--scale.is-in {
  transform: none;
}

/* Home hero entrance (above the fold) */
.home-page .navbar {
  animation: fx-rise-soft 0.5s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.home-page .hero-title-line--lead {
  animation: fx-rise 0.62s cubic-bezier(0.22, 1, 0.36, 1) 0.04s both;
}

.home-page .hero-title-line--tail {
  animation: fx-rise 0.62s cubic-bezier(0.22, 1, 0.36, 1) 0.12s both;
}

.home-page .hero-subtitle {
  animation: fx-rise 0.58s cubic-bezier(0.22, 1, 0.36, 1) 0.2s both;
}

.home-page .hero-content > .hero-cta {
  animation: fx-rise 0.58s cubic-bezier(0.22, 1, 0.36, 1) 0.28s both;
}

.home-page .hero-trust {
  animation: fx-rise 0.58s cubic-bezier(0.22, 1, 0.36, 1) 0.36s both;
}

.home-page .hero-visual {
  animation: fx-scale-in 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.16s both;
}

/* Config / trial / post-purchase polish */
.config-header-bar {
  animation: fx-rise-soft 0.45s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.post-purchase-card__icon {
  animation: fx-scale-in 0.45s cubic-bezier(0.34, 1.3, 0.64, 1) 0.08s both;
}

.home-why-card {
  transition:
    transform 0.2s ease,
    border-color 0.15s ease,
    box-shadow 0.2s ease;
}

.home-why-card:hover {
  transform: translateY(-2px);
}

@media (prefers-reduced-motion: reduce) {
  .fx-reveal,
  .fx-reveal--stagger .fx-reveal--item,
  .fx-reveal--stagger.is-in .fx-reveal--item {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .home-page .navbar,
  .home-page .hero-title-line--lead,
  .home-page .hero-title-line--tail,
  .home-page .hero-subtitle,
  .home-page .hero-content > .hero-cta,
  .home-page .hero-trust,
  .home-page .hero-visual,
  .config-header-bar,
  .post-purchase-card__icon {
    animation: none !important;
  }

  .home-why-card:hover,
  .platform-picker-card:hover {
    transform: none;
  }

  .order-drop-report,
  .order-drop-report.is-visible,
  .order-drop-report.is-unlock,
  .order-drop-report.is-success-flash,
  .order-drop-report__btn,
  .order-drop-report__btn:hover:not(:disabled),
  .order-drop-report__btn:active:not(:disabled),
  .order-drop-report__btn.is-sending,
  .order-drop-report__status,
  .order-drop-report__status.is-shown {
    animation: none !important;
    transition: none !important;
    transform: none !important;
    opacity: 1 !important;
  }
}
