/* PIXGOM launch parity layer
   Final visual lock loaded after legacy CSS.
   기준: production home hero / CI / product box / pill button system. */
:root {
  --pg-bg: #faf8f3;
  --pg-ink: #0b1020;
  --pg-muted: #62748e;
  --pg-yellow: #ffd400;
  --pg-green: #00bc7d;
  --pg-line: rgba(11, 16, 32, 0.09);
  --pg-card: #ffffff;
  --pg-shadow: 0 18px 44px rgba(11, 16, 32, 0.08);
  --pg-shadow-strong: 0 24px 60px rgba(11, 16, 32, 0.12);
  --pg-radius-card: 16px;
  --pg-radius-panel: 26px;
}

html,
body {
  background: var(--pg-bg) !important;
  color: var(--pg-ink) !important;
  overflow-x: hidden !important;
  font-family: 'Pretendard', 'Noto Sans KR', system-ui, sans-serif !important;
}

body * { box-sizing: border-box; }

/* Header: locked to home standard */
body.pixgom-unified header.pg-header,
body.pixgom-unified header.inner-site-header,
body.pixgom-unified .pg-header,
body.pixgom-unified .inner-site-header {
  width: 100% !important;
  height: 76px !important;
  min-height: 76px !important;
  padding: 0 40px !important;
  margin: 0 !important;
  display: grid !important;
  grid-template-columns: 184px minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: 24px !important;
  background: rgba(250, 248, 243, 0.96) !important;
  border-bottom: 1px solid var(--pg-line) !important;
  box-shadow: none !important;
  position: relative !important;
  z-index: 100 !important;
}

body.pixgom-unified header.pg-header > .pg-header-inner,
body.pixgom-unified header.inner-site-header > .pg-header-inner {
  display: contents !important;
}

body.pixgom-unified a.pg-brand,
body.pixgom-unified a.inner-site-brand,
body.pixgom-unified a.brand.inner-site-brand {
  grid-column: 1 !important;
  justify-self: start !important;
  align-self: center !important;
  width: 132px !important;
  min-width: 132px !important;
  max-width: 132px !important;
  height: 40px !important;
  display: grid !important;
  grid-template-columns: 32px 1fr !important;
  grid-template-rows: 20px 16px !important;
  column-gap: 10px !important;
  align-items: center !important;
  padding: 0 !important;
  margin: 0 !important;
  text-decoration: none !important;
  color: var(--pg-ink) !important;
  position: static !important;
  transform: none !important;
}

body.pixgom-unified a.pg-brand > img,
body.pixgom-unified a.pg-brand > svg,
body.pixgom-unified a.inner-site-brand > img,
body.pixgom-unified a.inner-site-brand > svg,
body.pixgom-unified a.brand.inner-site-brand > img,
body.pixgom-unified a.brand.inner-site-brand > svg {
  position: static !important;
  grid-column: 1 !important;
  grid-row: 1 / span 2 !important;
  align-self: center !important;
  justify-self: start !important;
  width: 32px !important;
  height: 32px !important;
  min-width: 32px !important;
  min-height: 32px !important;
  max-width: 32px !important;
  max-height: 32px !important;
  object-fit: contain !important;
  margin: 0 !important;
  transform: none !important;
}

body.pixgom-unified a.pg-brand .brand-name,
body.pixgom-unified a.inner-site-brand .brand-name,
body.pixgom-unified a.brand.inner-site-brand .brand-name,
body.pixgom-unified a.pg-brand strong,
body.pixgom-unified a.inner-site-brand strong {
  grid-column: 2 !important;
  grid-row: 1 !important;
  align-self: end !important;
  margin: 0 !important;
  color: var(--pg-ink) !important;
  font-size: 16px !important;
  font-weight: 900 !important;
  line-height: 18px !important;
  letter-spacing: -0.04em !important;
  white-space: nowrap !important;
}

body.pixgom-unified a.pg-brand .brand-version,
body.pixgom-unified a.inner-site-brand .brand-version,
body.pixgom-unified a.brand.inner-site-brand .brand-version,
body.pixgom-unified a.pg-brand small,
body.pixgom-unified a.inner-site-brand small {
  grid-column: 2 !important;
  grid-row: 2 !important;
  align-self: start !important;
  margin: 0 !important;
  color: #5d7292 !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  line-height: 12px !important;
  letter-spacing: -0.02em !important;
  white-space: nowrap !important;
}

body.pixgom-unified .pg-nav,
body.pixgom-unified .inner-site-nav {
  grid-column: 2 !important;
  justify-self: center !important;
  align-self: center !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 42px !important;
  height: 44px !important;
  margin: 0 !important;
  padding: 0 !important;
}

body.pixgom-unified .pg-nav a,
body.pixgom-unified .inner-site-nav a {
  color: #17263d !important;
  font-size: 14px !important;
  font-weight: 800 !important;
  line-height: 44px !important;
  letter-spacing: -0.03em !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

body.pixgom-unified .pg-header-actions,
body.pixgom-unified .inner-site-action {
  grid-column: 3 !important;
  justify-self: end !important;
  align-self: center !important;
}

body.pixgom-unified .pg-header-actions {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  height: 56px !important;
}

body.pixgom-unified .pg-header-actions a,
body.pixgom-unified .pg-header-actions button,
body.pixgom-unified a.inner-site-action {
  min-width: 88px !important;
  height: 44px !important;
  padding: 0 22px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(11, 16, 32, 0.14) !important;
  background: #fff !important;
  color: var(--pg-ink) !important;
  box-shadow: none !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 14px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  letter-spacing: -0.04em !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}

body.pixgom-unified .pg-header-actions a[href*='login'],
body.pixgom-unified .pg-header-actions .is-primary,
body.pixgom-unified .pg-header-actions .primary,
body.pixgom-unified a.inner-site-action[href*='login'] {
  background: var(--pg-ink) !important;
  border-color: var(--pg-ink) !important;
  color: #fff !important;
  box-shadow: 0 12px 24px rgba(11, 16, 32, 0.14) !important;
}

body.pixgom-unified .pg-menu,
body.pixgom-unified .menu-open,
body.pixgom-unified [data-pg-menu] {
  display: none !important;
}

/* Home and public sales hero parity */
body.pixgom-unified .main,
body.pixgom-static-page .pg-main,
body.auth-page .auth-shell,
body.console-shell-page #pixgom-console-root {
  background: var(--pg-bg) !important;
}

body.pixgom-static-page .pg-main {
  width: 100% !important;
  min-height: calc(100svh - 76px) !important;
  padding: 32px 40px 40px !important;
  margin: 0 !important;
}

body.pixgom-static-page .pg-hero.pg-sales-hero {
  width: min(1120px, 100%) !important;
  min-height: 420px !important;
  height: 420px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: minmax(0, 567px) minmax(360px, 1fr) !important;
  align-items: stretch !important;
  column-gap: 80px !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

body.pixgom-static-page .pg-hero .pg-copy {
  width: 567px !important;
  max-width: 100% !important;
  margin: 43px 0 0 7px !important;
  padding: 0 !important;
  display: block !important;
}

body.pixgom-static-page .pg-hero .pg-copy h1 {
  width: 560px !important;
  max-width: 100% !important;
  margin: 26px 0 22px !important;
  color: var(--pg-ink) !important;
  font-size: 48px !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  letter-spacing: -0.08em !important;
}

body.pixgom-static-page .pg-hero .pg-copy p {
  width: 560px !important;
  max-width: 100% !important;
  color: #40526c !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  line-height: 1.8 !important;
  letter-spacing: -0.035em !important;
  margin: 0 0 28px !important;
}

body.pixgom-static-page .pg-hero .pg-product-visual,
body.pixgom-static-page .pg-hero .home-product-visual {
  grid-column: 2 !important;
  justify-self: stretch !important;
  align-self: stretch !important;
  width: 513px !important;
  max-width: 100% !important;
  height: 420px !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

body.pixgom-static-page .pg-hero .visual-stage,
body.pixgom-static-page .pg-hero .product-box {
  width: 324px !important;
  height: 221px !important;
  min-width: 324px !important;
  min-height: 221px !important;
  max-width: 324px !important;
  max-height: 221px !important;
  margin: 0 !important;
}

body.pixgom-unified .box-core,
body.pixgom-unified .box-front,
body.pixgom-unified .box-content {
  width: 148px !important;
  height: 219px !important;
}

/* Buttons */
body.pixgom-unified .primary,
body.pixgom-unified .btn-primary,
body.pixgom-unified .pg-primary,
body.pixgom-unified .cta-primary,
body.pixgom-unified .pg-hero a[href*='apply'],
body.pixgom-unified .pg-hero a[href*='signup'],
body.pixgom-unified .pg-hero a[href*='login'],
body.auth-page .auth-card button[type='submit'],
body.auth-page .auth-card .primary-action,
body.auth-page .auth-card .auth-primary,
body.console-shell-page button.primary,
body.console-shell-page .primary-action {
  min-height: 56px !important;
  border-radius: 999px !important;
  border: 1px solid var(--pg-ink) !important;
  background: var(--pg-ink) !important;
  color: #fff !important;
  box-shadow: 0 14px 26px rgba(11, 16, 32, 0.16) !important;
  font-weight: 900 !important;
  letter-spacing: -0.04em !important;
}

body.pixgom-unified .secondary,
body.pixgom-unified .btn-secondary,
body.pixgom-unified .pg-secondary,
body.pixgom-unified .cta-secondary,
body.pixgom-unified .pg-hero a[href*='install'],
body.pixgom-unified .pg-hero a[href*='features'],
body.auth-page .auth-card .secondary-action,
body.auth-page .auth-card .auth-secondary,
body.console-shell-page .secondary-action {
  min-height: 56px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(11, 16, 32, 0.14) !important;
  background: #fff !important;
  color: var(--pg-ink) !important;
  box-shadow: none !important;
  font-weight: 900 !important;
  letter-spacing: -0.04em !important;
}

body.pixgom-static-page .pg-hero .pg-actions,
body.pixgom-static-page .pg-hero .cta-row,
body.pixgom-static-page .pg-hero .actions {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  margin: 0 !important;
}

body.pixgom-static-page .pg-hero .pg-actions a,
body.pixgom-static-page .pg-hero .cta-row a,
body.pixgom-static-page .pg-hero .actions a {
  min-width: 148px !important;
  height: 56px !important;
  padding: 0 24px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 999px !important;
  text-decoration: none !important;
  font-size: 15px !important;
  font-weight: 900 !important;
}

/* Cards and content rhythm */
body.pixgom-static-page .pg-section {
  width: min(1120px, 100%) !important;
  margin: 64px auto 0 !important;
  padding: 0 !important;
}

body.pixgom-static-page .pg-section:first-of-type {
  margin-top: 64px !important;
}

body.pixgom-static-page .pg-card,
body.pixgom-static-page .pg-sales-card,
body.pixgom-static-page .pg-price-card,
body.pixgom-static-page .pg-step-card,
body.pixgom-static-page .pg-notice-card,
body.auth-page .auth-card,
body.auth-page .apply-login-gate,
body.console-shell-page .console-login-panel,
body.console-shell-page .console-error-panel,
body.console-shell-page .console-empty-panel {
  background: var(--pg-card) !important;
  border: 1px solid var(--pg-line) !important;
  border-radius: var(--pg-radius-panel) !important;
  box-shadow: var(--pg-shadow) !important;
}

body.pixgom-static-page .pg-shortcut-section {
  margin-top: 56px !important;
}

body.pixgom-static-page .pg-shortcut-grid,
body.pixgom-unified .shortcut-grid {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 12px !important;
}

body.pixgom-static-page .pg-shortcut-grid a,
body.pixgom-unified .shortcut-grid a {
  min-height: 64px !important;
  border-radius: var(--pg-radius-card) !important;
  background: #fff !important;
  border: 1px solid var(--pg-line) !important;
  box-shadow: none !important;
}

/* Auth pages */
body.auth-page .auth-shell {
  width: min(1120px, calc(100% - 80px)) !important;
  min-height: calc(100svh - 76px) !important;
  margin: 0 auto !important;
  padding: 64px 0 72px !important;
  display: grid !important;
  grid-template-columns: minmax(0, 560px) minmax(360px, 430px) !important;
  gap: 108px !important;
  align-items: start !important;
}

body.auth-page .inner-product-visual {
  display: none !important;
}

body.auth-page .inner-hero-copy {
  width: 560px !important;
  margin: 120px 0 0 7px !important;
  padding: 0 !important;
}

body.auth-page .inner-hero-copy h1 {
  margin: 26px 0 22px !important;
  color: var(--pg-ink) !important;
  font-size: 48px !important;
  font-weight: 800 !important;
  line-height: 1.1 !important;
  letter-spacing: -0.08em !important;
}

body.auth-page .inner-hero-copy p {
  color: #40526c !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  line-height: 1.8 !important;
  margin: 0 0 28px !important;
}

body.auth-page .auth-card {
  width: 430px !important;
  max-width: 100% !important;
  margin: 64px 0 0 !important;
  padding: 32px !important;
  max-height: none !important;
  overflow: visible !important;
}

body.auth-page .auth-card form,
body.auth-page .auth-card .auth-form,
body.auth-page .auth-card fieldset {
  max-height: none !important;
  overflow: visible !important;
}

body.auth-page .auth-card input,
body.auth-page .auth-card textarea,
body.auth-page .auth-card select {
  min-height: 56px !important;
  border-radius: 18px !important;
  border: 1px solid rgba(11, 16, 32, 0.10) !important;
  background: #f8fafc !important;
}

/* Console shell */
body.console-shell-page #pixgom-console-root {
  min-height: calc(100svh - 76px) !important;
  background: var(--pg-bg) !important;
}

body.console-shell-page .console-app-shell {
  width: min(1120px, calc(100% - 80px)) !important;
  min-height: calc(100svh - 76px) !important;
  margin: 0 auto !important;
  padding: 64px 0 !important;
  background: transparent !important;
}

body.console-shell-page .console-login-panel,
body.console-shell-page .console-error-panel,
body.console-shell-page .console-empty-panel {
  width: min(520px, 100%) !important;
  margin: 0 auto !important;
  padding: 32px !important;
}

/* Mobile */
@media (max-width: 860px) {
  body.pixgom-unified header.pg-header,
  body.pixgom-unified header.inner-site-header,
  body.pixgom-unified .pg-header,
  body.pixgom-unified .inner-site-header {
    height: 68px !important;
    min-height: 68px !important;
    padding: 0 16px !important;
    grid-template-columns: 132px minmax(0, 1fr) 44px !important;
    gap: 0 !important;
    overflow: hidden !important;
  }

  body.pixgom-unified a.pg-brand,
  body.pixgom-unified a.inner-site-brand,
  body.pixgom-unified a.brand.inner-site-brand {
    width: 122px !important;
    min-width: 122px !important;
    max-width: 122px !important;
    height: 40px !important;
    grid-template-columns: 32px 80px !important;
    column-gap: 9px !important;
  }

  body.pixgom-unified .pg-nav,
  body.pixgom-unified .inner-site-nav,
  body.pixgom-unified .pg-header-actions,
  body.pixgom-unified .inner-site-action {
    display: none !important;
  }

  body.pixgom-unified .pg-menu,
  body.pixgom-unified .menu-open,
  body.pixgom-unified [data-pg-menu] {
    grid-column: 3 !important;
    justify-self: end !important;
    align-self: center !important;
    width: 44px !important;
    height: 44px !important;
    min-width: 44px !important;
    min-height: 44px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    background: transparent !important;
    border-radius: 14px !important;
    box-shadow: none !important;
    color: var(--pg-ink) !important;
    display: grid !important;
    place-items: center !important;
    position: static !important;
    transform: none !important;
  }

  body.pixgom-unified .pg-menu::before {
    content: '' !important;
    width: 24px !important;
    height: 18px !important;
    display: block !important;
    background:
      linear-gradient(var(--pg-ink), var(--pg-ink)) 0 0 / 24px 3px no-repeat,
      linear-gradient(var(--pg-ink), var(--pg-ink)) 6px 7.5px / 18px 3px no-repeat,
      linear-gradient(var(--pg-ink), var(--pg-ink)) 0 15px / 24px 3px no-repeat !important;
  }

  body.pixgom-unified .pg-menu > * { display: none !important; }
  body.pixgom-unified .menu-open svg,
  body.pixgom-unified [data-pg-menu] svg {
    width: 24px !important;
    height: 24px !important;
    stroke-width: 2.7 !important;
  }

  body.pixgom-static-page .pg-main {
    padding: 16px 20px 40px !important;
    min-height: calc(100svh - 68px) !important;
  }

  body.pixgom-static-page .pg-hero.pg-sales-hero {
    width: 350px !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 630px !important;
    margin: 0 auto !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-areas: 'visual' 'copy' !important;
    gap: 20px !important;
    overflow: visible !important;
  }

  body.pixgom-static-page .pg-hero .pg-product-visual,
  body.pixgom-static-page .pg-hero .home-product-visual {
    grid-area: visual !important;
    width: 350px !important;
    height: 240px !important;
    max-width: 100% !important;
    margin: 0 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
  }

  body.pixgom-static-page .pg-hero .visual-stage,
  body.pixgom-static-page .pg-hero .product-box {
    width: 315px !important;
    height: 221px !important;
    min-width: 315px !important;
    min-height: 221px !important;
    max-width: 315px !important;
    max-height: 221px !important;
  }

  body.pixgom-static-page .pg-hero .box-core,
  body.pixgom-static-page .pg-hero .box-front,
  body.pixgom-static-page .pg-hero .box-content {
    width: 148px !important;
    height: 219px !important;
  }

  body.pixgom-static-page .pg-hero .pg-copy {
    grid-area: copy !important;
    width: 350px !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  body.pixgom-static-page .pg-hero .pg-copy h1 {
    width: 350px !important;
    max-width: 100% !important;
    margin: 24px 0 18px !important;
    font-size: 28px !important;
    line-height: 1.2 !important;
    letter-spacing: -0.075em !important;
  }

  body.pixgom-static-page .pg-hero .pg-copy p {
    width: 350px !important;
    max-width: 100% !important;
    margin: 0 0 24px !important;
    font-size: 16px !important;
    line-height: 1.7 !important;
  }

  body.pixgom-static-page .pg-hero .pg-actions,
  body.pixgom-static-page .pg-hero .cta-row,
  body.pixgom-static-page .pg-hero .actions {
    width: 350px !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 12px !important;
  }

  body.pixgom-static-page .pg-hero .pg-actions a,
  body.pixgom-static-page .pg-hero .cta-row a,
  body.pixgom-static-page .pg-hero .actions a {
    width: 350px !important;
    min-width: 0 !important;
    height: 56px !important;
  }

  body.pixgom-static-page .pg-section {
    width: 350px !important;
    max-width: 100% !important;
    margin: 48px auto 0 !important;
  }

  body.pixgom-static-page .pg-shortcut-grid,
  body.pixgom-unified .shortcut-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  body.pixgom-static-page .pg-shortcut-grid a,
  body.pixgom-unified .shortcut-grid a {
    min-height: 64px !important;
    border-radius: 16px !important;
  }

  body.auth-page .auth-shell {
    width: 100% !important;
    min-height: calc(100svh - 68px) !important;
    padding: 16px 20px 40px !important;
    margin: 0 !important;
    display: block !important;
  }

  body.auth-page .inner-hero-copy {
    display: none !important;
  }

  body.auth-page .auth-card {
    width: 350px !important;
    max-width: 100% !important;
    margin: 16px auto 0 !important;
    padding: 24px 20px !important;
    border-radius: 26px !important;
    max-height: none !important;
    overflow: visible !important;
  }

  body.auth-page .auth-card form,
  body.auth-page .auth-card .auth-form,
  body.auth-page .auth-card fieldset {
    max-height: none !important;
    overflow: visible !important;
  }

  body.auth-page .auth-card input,
  body.auth-page .auth-card textarea,
  body.auth-page .auth-card select,
  body.auth-page .auth-card button,
  body.auth-page .auth-card a {
    max-width: 100% !important;
  }

  body.console-shell-page #pixgom-console-root {
    min-height: calc(100svh - 68px) !important;
  }

  body.console-shell-page .console-app-shell {
    width: 100% !important;
    min-height: calc(100svh - 68px) !important;
    padding: 16px 20px 40px !important;
  }

  body.console-shell-page .console-login-panel,
  body.console-shell-page .console-error-panel,
  body.console-shell-page .console-empty-panel {
    width: 350px !important;
    max-width: 100% !important;
    margin: 16px auto 0 !important;
    padding: 24px 20px !important;
    border-radius: 26px !important;
  }
}

/* v2: do not redefine product artwork; lock only page layout around home artwork */
html body.pixgom-unified.pixgom-static-page.pixgom-sales-page > main.pg-main {
  background: var(--pg-bg) !important;
  padding: 32px 40px 40px !important;
}

html body.pixgom-unified.pixgom-static-page.pixgom-sales-page > main.pg-main > section.pg-hero.pg-sales-hero.pg-sales-hero {
  width: min(1120px, 100%) !important;
  height: 420px !important;
  min-height: 420px !important;
  max-height: 420px !important;
  margin: 0 auto !important;
  padding: 0 !important;
  display: grid !important;
  grid-template-columns: minmax(0, 567px) minmax(360px, 513px) !important;
  column-gap: 80px !important;
  align-items: stretch !important;
  overflow: visible !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

html body.pixgom-unified.pixgom-static-page.pixgom-sales-page > main.pg-main > section.pg-hero.pg-sales-hero.pg-sales-hero > .pg-copy {
  width: 567px !important;
  margin: 43px 0 0 7px !important;
  padding: 0 !important;
}

html body.pixgom-unified.pixgom-static-page.pixgom-sales-page > main.pg-main > section.pg-hero.pg-sales-hero.pg-sales-hero > .pg-product-visual,
html body.pixgom-unified.pixgom-static-page.pixgom-sales-page > main.pg-main > section.pg-hero.pg-sales-hero.pg-sales-hero > .home-product-visual {
  width: 513px !important;
  height: 420px !important;
  margin: 0 !important;
  padding: 0 !important;
  justify-self: end !important;
  align-self: stretch !important;
}

html body.pixgom-unified.pixgom-static-page.pixgom-sales-page > main.pg-main > section.pg-section {
  width: min(1120px, 100%) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

html body.pixgom-unified.pixgom-static-page.pixgom-sales-page .pg-card,
html body.pixgom-unified.pixgom-static-page.pixgom-sales-page .pg-sales-card,
html body.pixgom-unified.pixgom-static-page.pixgom-sales-page .pg-price-card,
html body.pixgom-unified.pixgom-static-page.pixgom-sales-page .pg-step-card,
html body.pixgom-unified.pixgom-static-page.pixgom-sales-page .pg-notice-card {
  background: #fff !important;
  border: 1px solid rgba(11, 16, 32, 0.09) !important;
  border-radius: 26px !important;
  box-shadow: 0 18px 44px rgba(11, 16, 32, 0.08) !important;
}

@media (max-width: 860px) {
  html body.pixgom-unified.pixgom-static-page.pixgom-sales-page > main.pg-main {
    padding: 16px 20px 40px !important;
  }

  html body.pixgom-unified.pixgom-static-page.pixgom-sales-page > main.pg-main > section.pg-hero.pg-sales-hero.pg-sales-hero {
    width: 350px !important;
    max-width: 100% !important;
    height: 630px !important;
    min-height: 630px !important;
    max-height: none !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    grid-template-areas: 'visual' 'copy' !important;
    gap: 20px !important;
    align-items: start !important;
  }

  html body.pixgom-unified.pixgom-static-page.pixgom-sales-page > main.pg-main > section.pg-hero.pg-sales-hero.pg-sales-hero > .pg-product-visual,
  html body.pixgom-unified.pixgom-static-page.pixgom-sales-page > main.pg-main > section.pg-hero.pg-sales-hero.pg-sales-hero > .home-product-visual {
    grid-area: visual !important;
    width: 350px !important;
    height: 240px !important;
    justify-self: center !important;
    align-self: start !important;
  }

  html body.pixgom-unified.pixgom-static-page.pixgom-sales-page > main.pg-main > section.pg-hero.pg-sales-hero.pg-sales-hero > .pg-copy {
    grid-area: copy !important;
    width: 350px !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  html body.pixgom-unified.pixgom-static-page.pixgom-sales-page > main.pg-main > section.pg-hero.pg-sales-hero.pg-sales-hero > .pg-copy h1 {
    width: 350px !important;
    margin: 24px 0 18px !important;
    font-size: 28px !important;
    line-height: 1.2 !important;
    letter-spacing: -0.075em !important;
  }

  html body.pixgom-unified.pixgom-static-page.pixgom-sales-page > main.pg-main > section.pg-hero.pg-sales-hero.pg-sales-hero > .pg-copy p {
    width: 350px !important;
    margin: 0 0 24px !important;
    font-size: 16px !important;
    line-height: 1.7 !important;
  }
}

/* v3: public header brand text child lock and mobile hero vertical parity */
html body.pixgom-unified.pixgom-static-page.pixgom-sales-page header.pg-header.pg-header a.pg-brand.pg-brand .brand-name.brand-name,
html body.pixgom-unified.pixgom-static-page.pixgom-sales-page header.pg-header.pg-header a.pg-brand.pg-brand span.brand-name.brand-name {
  position: static !important;
  inset: auto !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  transform: none !important;
  display: block !important;
  grid-column: 2 !important;
  grid-row: 1 !important;
  align-self: end !important;
  justify-self: start !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  color: var(--pg-ink) !important;
  font-size: 16px !important;
  font-weight: 900 !important;
  line-height: 18px !important;
  letter-spacing: -0.04em !important;
  white-space: nowrap !important;
}

html body.pixgom-unified.pixgom-static-page.pixgom-sales-page header.pg-header.pg-header a.pg-brand.pg-brand .brand-version.brand-version,
html body.pixgom-unified.pixgom-static-page.pixgom-sales-page header.pg-header.pg-header a.pg-brand.pg-brand span.brand-version.brand-version {
  position: static !important;
  inset: auto !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  transform: none !important;
  display: block !important;
  grid-column: 2 !important;
  grid-row: 2 !important;
  align-self: start !important;
  justify-self: start !important;
  width: auto !important;
  height: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  color: #5d7292 !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  line-height: 12px !important;
  letter-spacing: -0.02em !important;
  white-space: nowrap !important;
}

@media (max-width: 860px) {
  html body.pixgom-unified.pixgom-static-page.pixgom-sales-page > main.pg-main > section.pg-hero.pg-sales-hero.pg-sales-hero > .pg-copy h1 {
    margin-top: -12px !important;
  }

  html body.pixgom-unified.pixgom-static-page.pixgom-sales-page > main.pg-main > section.pg-hero.pg-sales-hero.pg-sales-hero > .pg-product-visual .visual-stage {
    transform: translateY(-8px) !important;
  }
}

/* v5: hide duplicated console legacy brand */
html body.console-shell-page .inner-console-brand {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
}

/* v6 uses shared v151 header CI parity lock from pixgom-home-standard.css */


/* v7: public detail hero coordinate parity with production home */
html body.pixgom-unified.pixgom-static-page.pixgom-sales-page > main.pg-main {
  padding-top: 0 !important;
}

html body.pixgom-unified.pixgom-static-page.pixgom-sales-page > main.pg-main > section.pg-hero.pg-sales-hero.pg-sales-hero,
html body.pixgom-unified.pixgom-static-page.pixgom-sales-page.pixgom-install-page > main.pg-main > section.pg-hero.pg-sales-hero.pg-sales-hero {
  margin-top: 0 !important;
  transform: none !important;
}

html body.pixgom-unified.pixgom-static-page.pixgom-sales-page > main.pg-main > section.pg-hero.pg-sales-hero.pg-sales-hero > .pg-copy,
html body.pixgom-unified.pixgom-static-page.pixgom-sales-page.pixgom-install-page > main.pg-main > section.pg-hero.pg-sales-hero.pg-sales-hero > .pg-copy {
  margin: 49px 0 0 0 !important;
}

html body.pixgom-unified.pixgom-static-page.pixgom-sales-page > main.pg-main > section.pg-hero.pg-sales-hero.pg-sales-hero > .pg-copy h1,
html body.pixgom-unified.pixgom-static-page.pixgom-sales-page.pixgom-install-page > main.pg-main > section.pg-hero.pg-sales-hero.pg-sales-hero > .pg-copy h1 {
  margin-top: 24px !important;
}

@media (max-width: 860px) {
  html body.pixgom-unified.pixgom-static-page.pixgom-sales-page > main.pg-main {
    padding: 16px 20px 40px !important;
  }

  html body.pixgom-unified.pixgom-static-page.pixgom-sales-page > main.pg-main > section.pg-hero.pg-sales-hero.pg-sales-hero > .pg-copy h1,
  html body.pixgom-unified.pixgom-static-page.pixgom-sales-page.pixgom-install-page > main.pg-main > section.pg-hero.pg-sales-hero.pg-sales-hero > .pg-copy h1 {
    margin-top: -12px !important;
  }
}

/* v8: remove old pg-copy transform drift and align public H1 with home */
html body.pixgom-unified.pixgom-static-page.pixgom-sales-page > main.pg-main > section.pg-hero.pg-sales-hero.pg-sales-hero > .pg-copy,
html body.pixgom-unified.pixgom-static-page.pixgom-sales-page.pixgom-install-page > main.pg-main > section.pg-hero.pg-sales-hero.pg-sales-hero > .pg-copy {
  margin: 35px 0 0 0 !important;
  transform: none !important;
}

html body.pixgom-unified.pixgom-static-page.pixgom-sales-page.pixgom-install-page > main.pg-main {
  margin-top: 0 !important;
  transform: none !important;
}

html body.pixgom-unified.pixgom-static-page.pixgom-sales-page.pixgom-install-page > main.pg-main > section.pg-hero.pg-sales-hero.pg-sales-hero {
  margin-top: 0 !important;
}

@media (max-width: 860px) {
  html body.pixgom-unified.pixgom-static-page.pixgom-sales-page > main.pg-main > section.pg-hero.pg-sales-hero.pg-sales-hero > .pg-copy,
  html body.pixgom-unified.pixgom-static-page.pixgom-sales-page.pixgom-install-page > main.pg-main > section.pg-hero.pg-sales-hero.pg-sales-hero > .pg-copy {
    margin: 0 !important;
    transform: none !important;
  }
}

/* v9: responsive variables for inline desktop coordinate locks */
@media (max-width: 860px) {
  html body.pixgom-unified.pixgom-static-page.pixgom-sales-page .pg-copy,
  html body.pixgom-unified.pixgom-static-page.pixgom-sales-page .install-copy {
    --pg-copy-margin: 0 !important;
    width: 350px !important;
    max-width: 100% !important;
  }

  html body.pixgom-unified.pixgom-static-page.pixgom-sales-page .pg-copy h1,
  html body.pixgom-unified.pixgom-static-page.pixgom-sales-page .install-copy h1 {
    --pg-h1-margin: -12px 0 18px 0 !important;
    width: 350px !important;
    max-width: 100% !important;
  }

  html body.pixgom-unified.pixgom-static-page.pixgom-sales-page > main.pg-main > section.pg-hero.pg-sales-hero.pg-sales-hero > .pg-product-visual,
  html body.pixgom-unified.pixgom-static-page.pixgom-sales-page > main.pg-main > section.pg-hero.pg-sales-hero.pg-sales-hero > .home-product-visual {
    width: 350px !important;
    max-width: 350px !important;
    height: 240px !important;
    margin: 0 auto !important;
    padding: 0 !important;
    transform: none !important;
    justify-self: center !important;
  }

  html body.pixgom-unified.pixgom-static-page.pixgom-sales-page > main.pg-main > section.pg-hero.pg-sales-hero.pg-sales-hero .visual-stage {
    width: 350px !important;
    max-width: 350px !important;
    height: 240px !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
    left: auto !important;
    top: auto !important;
  }

  html body.pixgom-unified.pixgom-static-page.pixgom-sales-page > main.pg-main > section.pg-hero.pg-sales-hero.pg-sales-hero .product-box {
    width: 350px !important;
    max-width: 350px !important;
    height: 240px !important;
    transform: none !important;
  }
}

/* v10: mobile public product visual must share home y84 stage baseline */
@media (max-width: 860px) {
  html body.pixgom-unified.pixgom-static-page.pixgom-sales-page > main.pg-main > section.pg-hero.pg-sales-hero.pg-sales-hero > .pg-product-visual.home-product-visual,
  html body.pixgom-unified.pixgom-static-page.pixgom-sales-page > main.pg-main > section.pg-hero.pg-sales-hero.pg-sales-hero > .home-product-visual.home-product-visual {
    margin: 16px auto 0 !important;
    transform: none !important;
  }

  html body.pixgom-unified.pixgom-static-page.pixgom-sales-page > main.pg-main > section.pg-hero.pg-sales-hero.pg-sales-hero > .pg-product-visual.home-product-visual > .visual-stage.visual-stage,
  html body.pixgom-unified.pixgom-static-page.pixgom-sales-page > main.pg-main > section.pg-hero.pg-sales-hero.pg-sales-hero > .home-product-visual.home-product-visual > .visual-stage.visual-stage {
    transform: none !important;
    margin: 0 !important;
    top: auto !important;
    left: auto !important;
  }
}

/* v11: install mobile product visual baseline */
@media (max-width: 860px) { html body.pixgom-install-page .install-product-visual { --install-product-margin: 16px auto 0 !important; width: 350px !important; max-width: 350px !important; height: 240px !important; } }


/* v12: public hero eyebrow pill must be content-sized like home */
html body.pixgom-unified.pixgom-static-page.pixgom-sales-page .pg-eyebrow,
html body.pixgom-unified.pixgom-static-page.pixgom-sales-page p.pg-eyebrow {
  width: fit-content !important;
  max-width: 100% !important;
  min-width: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  padding: 0 13px !important;
  height: 28px !important;
  border-radius: 999px !important;
  white-space: nowrap !important;
}

@media (max-width: 860px) {
  html body.pixgom-unified.pixgom-static-page.pixgom-sales-page .pg-eyebrow,
  html body.pixgom-unified.pixgom-static-page.pixgom-sales-page p.pg-eyebrow {
    width: fit-content !important;
    max-width: 100% !important;
    height: 28px !important;
    padding: 0 12px !important;
    font-size: 12px !important;
  }
}

/* v13: final install desktop/mob baseline and content-size eyebrow lock */
html body.pixgom-unified.pixgom-static-page.pixgom-sales-page p.pg-eyebrow.pg-eyebrow {
  inline-size: max-content !important;
  width: max-content !important;
  max-inline-size: calc(100vw - 40px) !important;
  max-width: calc(100vw - 40px) !important;
  flex: 0 0 auto !important;
  align-self: flex-start !important;
}

@media (max-width: 860px) {
  html body.pixgom-install-page .install-product-visual {
    --install-product-transform: none !important;
  }

  html body.pixgom-unified.pixgom-static-page.pixgom-sales-page p.pg-eyebrow.pg-eyebrow {
    inline-size: max-content !important;
    width: max-content !important;
    max-inline-size: calc(100vw - 40px) !important;
    max-width: calc(100vw - 40px) !important;
  }
}


/* v15: public hero title/highlight parity with production home */
html body.pixgom-unified.pixgom-static-page.pixgom-sales-page .pg-hero.pg-sales-hero .pg-copy h1 .highlight {
  display: inline;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
  background: linear-gradient(180deg, transparent 0 63%, #ffd400 63% 86%, transparent 86% 100%) !important;
  padding: 0 .02em !important;
}

html body.pixgom-unified.pixgom-static-page.pixgom-sales-page .pg-hero.pg-sales-hero .pg-underline {
  display: none !important;
}

@media (min-width: 861px) {
  html body.pixgom-unified.pixgom-static-page.pixgom-sales-page .pg-hero.pg-sales-hero .pg-copy h1 {
    margin-bottom: 18px !important;
  }
}

@media (max-width: 860px) {
  html body.pixgom-unified.pixgom-static-page.pixgom-sales-page .pg-hero.pg-sales-hero .pg-copy h1 {
    margin-bottom: 18px !important;
  }
}


/* v16: desktop public copy rhythm exactly follows home hero */
@media (min-width: 861px) {
  html body.pixgom-unified.pixgom-static-page.pixgom-sales-page .pg-hero.pg-sales-hero .pg-copy .pg-eyebrow {
    transform: translateY(20px) !important;
  }

  html body.pixgom-unified.pixgom-static-page.pixgom-sales-page .pg-hero.pg-sales-hero .pg-copy h1 {
    margin-bottom: 16px !important;
  }

  html body.pixgom-unified.pixgom-static-page.pixgom-sales-page .pg-hero.pg-sales-hero .pg-copy p:not(.pg-eyebrow) {
    width: 440px !important;
    max-width: 440px !important;
    margin-top: 0 !important;
  }

  html body.pixgom-unified.pixgom-static-page.pixgom-sales-page .pg-hero.pg-sales-hero .pg-copy .pg-actions {
    margin-top: 23px !important;
  }
}


/* v17: mobile public product stage exact home height */
@media (max-width: 860px) {
  html body.pixgom-unified.pixgom-static-page.pixgom-sales-page .pg-hero.pg-sales-hero .pg-product-visual.home-product-visual,
  html body.pixgom-unified.pixgom-static-page.pixgom-sales-page .pg-hero.pg-sales-hero .pg-product-visual.home-product-visual .visual-stage {
    height: 240px !important;
    min-height: 240px !important;
    max-height: 240px !important;
  }
}


/* v18: strongest mobile visual-stage box lock against legacy selector */
@media (max-width: 860px) {
  html body.pixgom-unified.pixgom-static-page.pixgom-sales-page > main.pg-main > section.pg-hero.pg-sales-hero.pg-sales-hero > div.pg-product-visual.home-product-visual > div.visual-stage.visual-stage,
  html body.pixgom-unified.pixgom-static-page.pixgom-sales-page > main.pg-main > section.pg-hero.pg-sales-hero.pg-sales-hero > div.home-product-visual.home-product-visual > div.visual-stage.visual-stage {
    box-sizing: border-box !important;
    width: 350px !important;
    min-width: 350px !important;
    max-width: 350px !important;
    height: 240px !important;
    min-height: 240px !important;
    max-height: 240px !important;
    block-size: 240px !important;
    min-block-size: 240px !important;
    max-block-size: 240px !important;
    transform: none !important;
  }

  html body.pixgom-unified.pixgom-static-page.pixgom-sales-page > main.pg-main > section.pg-hero.pg-sales-hero.pg-sales-hero > div.pg-product-visual.home-product-visual > div.visual-stage.visual-stage > .product-box {
    height: 240px !important;
    min-height: 240px !important;
    max-height: 240px !important;
    block-size: 240px !important;
    min-block-size: 240px !important;
    max-block-size: 240px !important;
  }
}

/* v19 desktop public product visual parity with production home footprint */
@media (min-width: 861px) {
  html body.pixgom-unified.pixgom-static-page.pixgom-sales-page main.pg-main > section.pg-hero.pg-sales-hero .pg-product-visual.home-product-visual,
  html body.pixgom-unified.pixgom-static-page.pixgom-sales-page main.pg-main > section.install-hero .pg-product-visual.home-product-visual {
    transform: translate(-4px, 10px) !important;
  }

  html body.pixgom-unified.pixgom-static-page.pixgom-sales-page main.pg-main > section.pg-hero.pg-sales-hero .pg-product-visual.home-product-visual .product-box,
  html body.pixgom-unified.pixgom-static-page.pixgom-sales-page main.pg-main > section.install-hero .pg-product-visual.home-product-visual .product-box {
    transform: translate(14px, 16px) scale(.957) !important;
    transform-origin: center center !important;
  }
}

/* v20 desktop public product visual parity - higher specificity than legacy scale(.9) */
@media (min-width: 861px) {
  html body.pixgom-unified.pixgom-unified.pixgom-static-page.pixgom-static-page.pixgom-sales-page.pixgom-sales-page main.pg-main > section.pg-hero.pg-sales-hero .pg-product-visual.home-product-visual.home-product-visual,
  html body.pixgom-unified.pixgom-unified.pixgom-static-page.pixgom-static-page.pixgom-sales-page.pixgom-sales-page main.pg-main > section.install-hero .pg-product-visual.home-product-visual.home-product-visual {
    transform: translate(-4px, 10px) !important;
  }

  html body.pixgom-unified.pixgom-unified.pixgom-static-page.pixgom-static-page.pixgom-sales-page.pixgom-sales-page main.pg-main > section.pg-hero.pg-sales-hero .pg-product-visual.home-product-visual.home-product-visual .product-box.product-box,
  html body.pixgom-unified.pixgom-unified.pixgom-static-page.pixgom-static-page.pixgom-sales-page.pixgom-sales-page main.pg-main > section.install-hero .pg-product-visual.home-product-visual.home-product-visual .product-box.product-box {
    transform: translate(14px, 16px) scale(.957) !important;
    transform-origin: center center !important;
  }
}

/* v21 desktop public product visual parity - disable legacy intro animation that forces scale(.9) */
@media (min-width: 861px) {
  html body.pixgom-unified.pixgom-unified.pixgom-static-page.pixgom-static-page.pixgom-sales-page.pixgom-sales-page main.pg-main > section.pg-hero.pg-sales-hero .pg-product-visual.home-product-visual.home-product-visual,
  html body.pixgom-unified.pixgom-unified.pixgom-static-page.pixgom-static-page.pixgom-sales-page.pixgom-sales-page main.pg-main > section.install-hero .pg-product-visual.home-product-visual.home-product-visual {
    transform: translate(-4px, 10px) !important;
  }

  html body.pixgom-unified.pixgom-unified.pixgom-static-page.pixgom-static-page.pixgom-sales-page.pixgom-sales-page main.pg-main > section.pg-hero.pg-sales-hero .pg-product-visual.home-product-visual.home-product-visual .product-box.product-box,
  html body.pixgom-unified.pixgom-unified.pixgom-static-page.pixgom-static-page.pixgom-sales-page.pixgom-sales-page main.pg-main > section.install-hero .pg-product-visual.home-product-visual.home-product-visual .product-box.product-box {
    animation: none !important;
    transform: translate(14px, 16px) scale(.957) !important;
    transform-origin: center center !important;
  }
}

/* v22 desktop public product box final rule - simple cascade winner */
@media (min-width: 861px) {
  body.pixgom-sales-page .pg-product-visual.home-product-visual {
    transform: translate(-4px, 10px) !important;
  }

  body.pixgom-sales-page .pg-product-visual.home-product-visual .product-box {
    animation: none !important;
    animation-name: none !important;
    animation-fill-mode: none !important;
    transform: translate(0px, 11px) scale(.861) !important;
    transform-origin: center center !important;
  }
}
/* v23: final desktop inner header parity. This file loads after the standard layer. */
@media (min-width: 861px) {
  html body.auth-page.auth-page.marketing-auth.app-connected-site.pixgom-inner.pixgom-unified.pixgom-unified > header.inner-site-header.inner-site-header[data-pixgom-header],
  html body.pixgom-inner.pixgom-inner.pixgom-unified.pixgom-unified > header.inner-site-header.inner-site-header[data-pixgom-header],
  html body.account-page.account-page.pixgom-unified.pixgom-unified > header.pg-header.pg-header[data-pixgom-header],
  html body.console-shell-page.console-shell-page.pixgom-unified.pixgom-unified > header.pg-header.pg-header[data-pixgom-header],
  html body.auth-page.pixgom-unified > header.inner-site-header[data-pixgom-header],
  html body.pixgom-inner.pixgom-unified > header.inner-site-header[data-pixgom-header] {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    box-sizing: border-box !important;
    display: grid !important;
    grid-template-columns: 132px minmax(0, 1fr) auto !important;
    align-items: center !important;
    width: 100% !important;
    inline-size: 100% !important;
    min-width: 0 !important;
    min-inline-size: 0 !important;
    max-width: none !important;
    max-inline-size: none !important;
    height: 76px !important;
    min-height: 76px !important;
    max-height: 76px !important;
    margin: 0 !important;
    margin-inline: 0 !important;
    padding: 0 33px !important;
    background: rgba(250, 248, 243, 0.96) !important;
    border-bottom: 1px solid rgba(11, 16, 32, 0.08) !important;
    box-shadow: none !important;
    transform: none !important;
  }

  html body.auth-page.pixgom-unified > header.inner-site-header[data-pixgom-header] > .inner-site-header-inner,
  html body.pixgom-inner.pixgom-unified > header.inner-site-header[data-pixgom-header] > .inner-site-header-inner,
  html body.account-page.pixgom-unified > header.pg-header[data-pixgom-header] > .pg-header-inner,
  html body.console-shell-page.pixgom-unified > header.pg-header[data-pixgom-header] > .pg-header-inner {
    display: contents !important;
    width: auto !important;
    inline-size: auto !important;
    max-width: none !important;
    max-inline-size: none !important;
    margin: 0 !important;
    padding: 0 !important;
  }
}

/* v24: console/account header inner wrapper must not re-center CI at 40px */
@media (min-width: 861px) {
  html body.console-shell-page.console-shell-page.pixgom-unified.pixgom-unified > header.pg-header.pg-header[data-pixgom-header] > .pg-header-inner.pg-header-inner,
  html body.account-page.account-page.pixgom-unified.pixgom-unified > header.pg-header.pg-header[data-pixgom-header] > .pg-header-inner.pg-header-inner {
    display: contents !important;
    width: auto !important;
    inline-size: auto !important;
    min-width: 0 !important;
    min-inline-size: 0 !important;
    max-width: none !important;
    max-inline-size: none !important;
    margin: 0 !important;
    margin-inline: 0 !important;
    padding: 0 !important;
    transform: none !important;
  }
}

/* v27: final mobile auth density override after every legacy auth layer */
@media (max-width: 860px) {
  html body.auth-page.auth-page.pixgom-inner.pixgom-unified.pixgom-unified .auth-card.auth-card,
  html body.auth-page.auth-page.pixgom-inner.pixgom-unified.pixgom-unified .inner-form-card.inner-form-card,
  html body.auth-page.auth-page.pixgom-inner.pixgom-unified.pixgom-unified .form-card.form-card,
  html body.auth-page.auth-page.pixgom-inner.pixgom-unified.pixgom-unified .apply-card.apply-card,
  html body.auth-page.auth-page.pixgom-inner.pixgom-unified.pixgom-unified .inner-card.inner-card {
    width: calc(100% - 40px) !important;
    max-width: 350px !important;
    margin: 16px auto 28px !important;
    padding: 24px 20px !important;
    border-radius: 26px !important;
    border: 1px solid rgba(11, 16, 32, .08) !important;
    background: #ffffff !important;
    box-shadow: 0 22px 58px rgba(11, 16, 32, .07) !important;
  }

  html body.auth-page.auth-page.pixgom-inner.pixgom-unified.pixgom-unified .auth-card.auth-card form,
  html body.auth-page.auth-page.pixgom-inner.pixgom-unified.pixgom-unified .inner-form-card.inner-form-card form,
  html body.auth-page.auth-page.pixgom-inner.pixgom-unified.pixgom-unified .form-card.form-card form,
  html body.auth-page.auth-page.pixgom-inner.pixgom-unified.pixgom-unified .apply-card.apply-card form,
  html body.auth-page.auth-page.pixgom-inner.pixgom-unified.pixgom-unified .inner-card.inner-card form {
    gap: 10px !important;
  }

  html body.auth-page.auth-page.pixgom-inner.pixgom-unified.pixgom-unified .auth-card.auth-card label:has(input:not([type="checkbox"])),
  html body.auth-page.auth-page.pixgom-inner.pixgom-unified.pixgom-unified .inner-form-card.inner-form-card label:has(input:not([type="checkbox"])),
  html body.auth-page.auth-page.pixgom-inner.pixgom-unified.pixgom-unified .form-card.form-card label:has(input:not([type="checkbox"])),
  html body.auth-page.auth-page.pixgom-inner.pixgom-unified.pixgom-unified .apply-card.apply-card label:has(input:not([type="checkbox"])),
  html body.auth-page.auth-page.pixgom-inner.pixgom-unified.pixgom-unified .inner-card.inner-card label:has(input:not([type="checkbox"])) {
    min-height: 0 !important;
    height: auto !important;
    margin: 0 !important;
    padding: 12px 14px !important;
    border-radius: 18px !important;
    border: 1px solid rgba(98, 116, 142, .16) !important;
    background: #f8fafc !important;
  }

  html body.auth-page.auth-page.pixgom-inner.pixgom-unified.pixgom-unified .auth-card.auth-card label:has(input:not([type="checkbox"])) > span,
  html body.auth-page.auth-page.pixgom-inner.pixgom-unified.pixgom-unified .inner-form-card.inner-form-card label:has(input:not([type="checkbox"])) > span,
  html body.auth-page.auth-page.pixgom-inner.pixgom-unified.pixgom-unified .form-card.form-card label:has(input:not([type="checkbox"])) > span,
  html body.auth-page.auth-page.pixgom-inner.pixgom-unified.pixgom-unified .apply-card.apply-card label:has(input:not([type="checkbox"])) > span,
  html body.auth-page.auth-page.pixgom-inner.pixgom-unified.pixgom-unified .inner-card.inner-card label:has(input:not([type="checkbox"])) > span {
    margin: 0 0 7px !important;
    color: #42526b !important;
    font-size: 12px !important;
    font-weight: 900 !important;
    line-height: 1.1 !important;
  }

  html body.auth-page.auth-page.pixgom-inner.pixgom-unified.pixgom-unified .auth-card.auth-card label:has(input:not([type="checkbox"])) input,
  html body.auth-page.auth-page.pixgom-inner.pixgom-unified.pixgom-unified .inner-form-card.inner-form-card label:has(input:not([type="checkbox"])) input,
  html body.auth-page.auth-page.pixgom-inner.pixgom-unified.pixgom-unified .form-card.form-card label:has(input:not([type="checkbox"])) input,
  html body.auth-page.auth-page.pixgom-inner.pixgom-unified.pixgom-unified .apply-card.apply-card label:has(input:not([type="checkbox"])) input,
  html body.auth-page.auth-page.pixgom-inner.pixgom-unified.pixgom-unified .inner-card.inner-card label:has(input:not([type="checkbox"])) input {
    width: 100% !important;
    min-height: 48px !important;
    height: 48px !important;
    margin: 0 !important;
    padding: 0 16px !important;
    border-radius: 16px !important;
    border: 1px solid rgba(11, 16, 32, .10) !important;
    background: #ffffff !important;
    color: #0b1020 !important;
    font-size: 16px !important;
    font-weight: 750 !important;
  }

  html body.auth-page.auth-page.pixgom-inner.pixgom-unified.pixgom-unified .auth-card.auth-card label:has(input[type="checkbox"]),
  html body.auth-page.auth-page.pixgom-inner.pixgom-unified.pixgom-unified .inner-form-card.inner-form-card label:has(input[type="checkbox"]),
  html body.auth-page.auth-page.pixgom-inner.pixgom-unified.pixgom-unified .form-card.form-card label:has(input[type="checkbox"]),
  html body.auth-page.auth-page.pixgom-inner.pixgom-unified.pixgom-unified .apply-card.apply-card label:has(input[type="checkbox"]),
  html body.auth-page.auth-page.pixgom-inner.pixgom-unified.pixgom-unified .inner-card.inner-card label:has(input[type="checkbox"]) {
    min-height: 0 !important;
    height: auto !important;
    margin: 0 !important;
    padding: 12px 14px !important;
    border-radius: 18px !important;
    background: #f8fafc !important;
  }

  html body.auth-page.auth-page.pixgom-inner.pixgom-unified.pixgom-unified .auth-card.auth-card label:has(input[type="checkbox"]) button,
  html body.auth-page.auth-page.pixgom-inner.pixgom-unified.pixgom-unified .inner-form-card.inner-form-card label:has(input[type="checkbox"]) button,
  html body.auth-page.auth-page.pixgom-inner.pixgom-unified.pixgom-unified .form-card.form-card label:has(input[type="checkbox"]) button,
  html body.auth-page.auth-page.pixgom-inner.pixgom-unified.pixgom-unified .apply-card.apply-card label:has(input[type="checkbox"]) button,
  html body.auth-page.auth-page.pixgom-inner.pixgom-unified.pixgom-unified .inner-card.inner-card label:has(input[type="checkbox"]) button {
    min-height: 30px !important;
    height: 30px !important;
    padding: 0 10px !important;
    border-radius: 999px !important;
    font-size: 12px !important;
    box-shadow: none !important;
  }
}

/* v28: final parity mobile header lock - prevents inner/auth pages from reviving CTA */
@media (max-width: 860px) {
  html body.pixgom-unified header[data-pixgom-header] a.inner-site-action,
  html body.pixgom-unified header[data-pixgom-header] .inner-site-action,
  html body.pixgom-unified header[data-pixgom-header] .pg-header-actions,
  html body.pixgom-unified header[data-pixgom-header] .header-actions,
  html body.pixgom-unified header[data-pixgom-header] .auth-actions,
  html body.pixgom-unified header[data-pixgom-header] .pg-signup,
  html body.pixgom-unified header[data-pixgom-header] .pg-login,
  html body.pixgom-unified header[data-pixgom-header] .signup,
  html body.pixgom-unified header[data-pixgom-header] .login,
  html body.pixgom-unified header[data-pixgom-header] .account-link,
  html body.pixgom-unified header[data-pixgom-header] nav,
  html body.pixgom-unified header[data-pixgom-header] .pg-nav,
  html body.pixgom-unified header[data-pixgom-header] .inner-site-nav,
  html body.pixgom-unified header[data-pixgom-header] .site-nav {
    position: absolute !important;
    inset: auto !important;
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    min-width: 0 !important;
    max-width: 0 !important;
    height: 0 !important;
    min-height: 0 !important;
    max-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
  }
  html body.pixgom-unified header[data-pixgom-header],
  html body.pixgom-unified header[data-pixgom-header] > .header-inner,
  html body.pixgom-unified header[data-pixgom-header] > .pg-header-inner,
  html body.pixgom-unified header[data-pixgom-header] > .inner-site-header-inner,
  html body.pixgom-unified header[data-pixgom-header] > .site-header-inner {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) 44px !important;
    align-items: center !important;
    width: 100% !important;
    max-width: none !important;
    min-height: 68px !important;
    height: 68px !important;
    margin: 0 !important;
    overflow: visible !important;
  }
  html body.pixgom-unified header[data-pixgom-header] { padding: 0 18px 0 20px !important; }
  html body.pixgom-unified header[data-pixgom-header] > .header-inner,
  html body.pixgom-unified header[data-pixgom-header] > .pg-header-inner,
  html body.pixgom-unified header[data-pixgom-header] > .inner-site-header-inner,
  html body.pixgom-unified header[data-pixgom-header] > .site-header-inner { grid-column: 1 / -1 !important; padding: 0 !important; }
  html body.pixgom-unified header[data-pixgom-header] a.brand,
  html body.pixgom-unified header[data-pixgom-header] a.pg-brand,
  html body.pixgom-unified header[data-pixgom-header] a.inner-site-brand,
  html body.pixgom-unified header[data-pixgom-header] a.site-brand {
    grid-column: 1 !important;
    justify-self: start !important;
    align-self: center !important;
    display: grid !important;
    grid-template-columns: 32px auto !important;
    grid-template-rows: 18px 12px !important;
    column-gap: 8px !important;
    row-gap: 1px !important;
    width: 132px !important;
    min-width: 132px !important;
    max-width: 132px !important;
    height: 38px !important;
    min-height: 38px !important;
    max-height: 38px !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
  }
  html body.pixgom-unified header[data-pixgom-header] [data-pixgom-logo],
  html body.pixgom-unified header[data-pixgom-header] a.brand > img,
  html body.pixgom-unified header[data-pixgom-header] a.brand > svg,
  html body.pixgom-unified header[data-pixgom-header] a.pg-brand > img,
  html body.pixgom-unified header[data-pixgom-header] a.pg-brand > svg,
  html body.pixgom-unified header[data-pixgom-header] a.inner-site-brand > img,
  html body.pixgom-unified header[data-pixgom-header] a.inner-site-brand > svg {
    width: 32px !important;
    min-width: 32px !important;
    max-width: 32px !important;
    height: 32px !important;
    min-height: 32px !important;
    max-height: 32px !important;
  }
  html body.pixgom-unified header[data-pixgom-header] .brand-name,
  html body.pixgom-unified header[data-pixgom-header] a.brand > span.brand-name,
  html body.pixgom-unified header[data-pixgom-header] a.pg-brand > span.brand-name,
  html body.pixgom-unified header[data-pixgom-header] a.inner-site-brand > span.brand-name {
    font-size: 16px !important;
    line-height: 18px !important;
    height: 18px !important;
    font-weight: 900 !important;
    letter-spacing: -0.045em !important;
  }
  html body.pixgom-unified header[data-pixgom-header] .brand-version,
  html body.pixgom-unified header[data-pixgom-header] a.brand > span.brand-version,
  html body.pixgom-unified header[data-pixgom-header] a.pg-brand > span.brand-version,
  html body.pixgom-unified header[data-pixgom-header] a.inner-site-brand > span.brand-version {
    font-size: 10px !important;
    line-height: 12px !important;
    height: 12px !important;
    font-weight: 800 !important;
  }
  html body.pixgom-unified header[data-pixgom-header] .pg-menu,
  html body.pixgom-unified header[data-pixgom-header] .menu-open,
  html body.pixgom-unified header[data-pixgom-header] [data-pg-menu] {
    grid-column: 2 !important;
    justify-self: end !important;
    align-self: center !important;
    display: inline-flex !important;
    width: 44px !important;
    min-width: 44px !important;
    max-width: 44px !important;
    height: 44px !important;
    min-height: 44px !important;
    max-height: 44px !important;
    margin: 0 !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }
}

/* v29: public detail hero CTA parity with production home */
@media (min-width: 861px) {
  html body.pixgom-static-page.pixgom-sales-page .pg-copy > .pg-actions {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    height: 56px !important;
    min-height: 56px !important;
  }
  html body.pixgom-static-page.pixgom-sales-page .pg-copy > .pg-actions .pg-cta,
  html body.pixgom-static-page.pixgom-sales-page .pg-copy > .pg-actions .cta.primary {
    height: 56px !important;
    min-height: 56px !important;
    padding: 0 28px !important;
    border-radius: 999px !important;
    background: #0b1020 !important;
    color: #fff !important;
    border: 1px solid #0b1020 !important;
    box-shadow: 0 16px 28px rgba(11, 16, 32, 0.18) !important;
    font-size: 13px !important;
    font-weight: 950 !important;
    line-height: normal !important;
    letter-spacing: -0.02em !important;
  }
  html body.pixgom-static-page.pixgom-sales-page .pg-copy > .pg-actions .pg-secondary,
  html body.pixgom-static-page.pixgom-sales-page .pg-copy > .pg-actions .cta.secondary {
    height: 56px !important;
    min-height: 56px !important;
    padding: 0 28px !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.78) !important;
    color: #0b1020 !important;
    border: 1px solid rgba(11, 16, 32, 0.16) !important;
    box-shadow: none !important;
    font-size: 16px !important;
    font-weight: 950 !important;
    line-height: normal !important;
    letter-spacing: -0.02em !important;
  }
  html body.pixgom-features-page .pg-copy > .pg-actions,
  html body.pixgom-install-page .pg-copy > .pg-actions {
    transform: translateY(-13px) !important;
  }
  html body.pixgom-features-page .pg-proof,
  html body.pixgom-install-page .pg-proof {
    transform: translateY(-13px) !important;
  }
}

@media (max-width: 860px) {
  html body.pixgom-static-page.pixgom-sales-page .pg-copy > .pg-actions {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
    width: 100% !important;
    max-width: 335px !important;
    height: auto !important;
  }
  html body.pixgom-static-page.pixgom-sales-page .pg-copy > .pg-actions .pg-cta,
  html body.pixgom-static-page.pixgom-sales-page .pg-copy > .pg-actions .pg-secondary,
  html body.pixgom-static-page.pixgom-sales-page .pg-copy > .pg-actions .cta.primary,
  html body.pixgom-static-page.pixgom-sales-page .pg-copy > .pg-actions .cta.secondary {
    width: 100% !important;
    min-width: 0 !important;
    max-width: 335px !important;
    height: 56px !important;
    min-height: 56px !important;
    border-radius: 999px !important;
    padding: 0 24px !important;
    font-weight: 950 !important;
    letter-spacing: -0.02em !important;
    line-height: normal !important;
  }
  html body.pixgom-static-page.pixgom-sales-page .pg-copy > .pg-actions .pg-cta,
  html body.pixgom-static-page.pixgom-sales-page .pg-copy > .pg-actions .cta.primary {
    background: #0b1020 !important;
    color: #fff !important;
    border: 1px solid #0b1020 !important;
    box-shadow: 0 16px 28px rgba(11, 16, 32, 0.18) !important;
    font-size: 13px !important;
  }
  html body.pixgom-static-page.pixgom-sales-page .pg-copy > .pg-actions .pg-secondary,
  html body.pixgom-static-page.pixgom-sales-page .pg-copy > .pg-actions .cta.secondary {
    background: rgba(255, 255, 255, 0.78) !important;
    color: #0b1020 !important;
    border: 1px solid rgba(11, 16, 32, 0.16) !important;
    box-shadow: none !important;
    font-size: 16px !important;
  }
  html body.pixgom-features-page .pg-copy > .pg-actions,
  html body.pixgom-install-page .pg-copy > .pg-actions {
    transform: translateY(-20px) !important;
  }
  html body.pixgom-features-page .pg-proof,
  html body.pixgom-install-page .pg-proof {
    transform: translateY(-20px) !important;
  }
}

/* v30: strongest desktop public hero button parity against legacy high-specificity rules */
@media (min-width: 861px) {
  html body.pixgom-unified.pixgom-static-page.pixgom-sales-page.pixgom-sales-page main.pg-main.pg-main > section.pg-hero.pg-sales-hero.pg-sales-hero.pg-sales-hero > div.pg-copy.pg-copy.pg-copy > div.pg-actions.pg-actions > a.pg-cta.pg-cta,
  html body.pixgom-unified.pixgom-static-page.pixgom-sales-page main.pg-main > section.pg-hero.pg-sales-hero > div.pg-copy > div.pg-actions > a.pg-cta,
  html body.pixgom-unified.pixgom-static-page.pixgom-sales-page .pg-copy.pg-copy > .pg-actions.pg-actions > a.pg-cta.pg-cta {
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    height: 56px !important;
    min-height: 56px !important;
    padding: 0 28px !important;
    border-radius: 999px !important;
    background: #0b1020 !important;
    color: #fff !important;
    border: 1px solid #0b1020 !important;
    box-shadow: 0 16px 28px rgba(11, 16, 32, 0.18) !important;
    font-size: 13px !important;
    font-weight: 950 !important;
    line-height: normal !important;
    letter-spacing: -0.02em !important;
  }
  html body.pixgom-unified.pixgom-static-page.pixgom-sales-page.pixgom-sales-page main.pg-main.pg-main > section.pg-hero.pg-sales-hero.pg-sales-hero.pg-sales-hero > div.pg-copy.pg-copy.pg-copy > div.pg-actions.pg-actions > a.pg-secondary.pg-secondary,
  html body.pixgom-unified.pixgom-static-page.pixgom-sales-page main.pg-main > section.pg-hero.pg-sales-hero > div.pg-copy > div.pg-actions > a.pg-secondary,
  html body.pixgom-unified.pixgom-static-page.pixgom-sales-page .pg-copy.pg-copy > .pg-actions.pg-actions > a.pg-secondary.pg-secondary {
    width: auto !important;
    min-width: 0 !important;
    max-width: none !important;
    height: 56px !important;
    min-height: 56px !important;
    padding: 0 28px !important;
    border-radius: 999px !important;
    background: rgba(255, 255, 255, 0.78) !important;
    color: #0b1020 !important;
    border: 1px solid rgba(11, 16, 32, 0.16) !important;
    box-shadow: none !important;
    font-size: 16px !important;
    font-weight: 950 !important;
    line-height: normal !important;
    letter-spacing: -0.02em !important;
  }
}

/* v31: desktop public hero button width parity with home */
@media (min-width: 861px) {
  html body.pixgom-unified.pixgom-static-page.pixgom-sales-page .pg-copy.pg-copy > .pg-actions.pg-actions > a.pg-cta.pg-cta {
    padding-left: 18px !important;
    padding-right: 18px !important;
    min-width: 104px !important;
  }
  html body.pixgom-unified.pixgom-static-page.pixgom-sales-page .pg-copy.pg-copy > .pg-actions.pg-actions > a.pg-secondary.pg-secondary {
    padding-left: 28px !important;
    padding-right: 28px !important;
    min-width: 162px !important;
  }
}

/* v32: mobile auth/apply form density parity - remove oversized 107px fields */
@media (max-width: 860px) {
  html body.auth-page.auth-page.marketing-auth.app-connected-site.pixgom-inner.pixgom-unified.pixgom-unified .auth-card.auth-card.auth-card,
  html body.auth-page.auth-page.marketing-auth.app-connected-site.pixgom-inner.pixgom-unified.pixgom-unified .inner-form-card.inner-form-card.inner-form-card,
  html body.auth-page.auth-page.marketing-auth.app-connected-site.pixgom-inner.pixgom-unified.pixgom-unified .form-card.form-card.form-card,
  html body.auth-page.auth-page.marketing-auth.app-connected-site.pixgom-inner.pixgom-unified.pixgom-unified .apply-card.apply-card.apply-card {
    padding: 22px 20px !important;
    border-radius: 24px !important;
  }
  html body.auth-page.auth-page.marketing-auth.app-connected-site.pixgom-inner.pixgom-unified.pixgom-unified .auth-card.auth-card.auth-card form,
  html body.auth-page.auth-page.marketing-auth.app-connected-site.pixgom-inner.pixgom-unified.pixgom-unified .inner-form-card.inner-form-card.inner-form-card form,
  html body.auth-page.auth-page.marketing-auth.app-connected-site.pixgom-inner.pixgom-unified.pixgom-unified .form-card.form-card.form-card form,
  html body.auth-page.auth-page.marketing-auth.app-connected-site.pixgom-inner.pixgom-unified.pixgom-unified .apply-card.apply-card.apply-card form {
    gap: 10px !important;
  }
  html body.auth-page.auth-page.marketing-auth.app-connected-site.pixgom-inner.pixgom-unified.pixgom-unified .auth-card.auth-card.auth-card label:has(> input:not([type="checkbox"])),
  html body.auth-page.auth-page.marketing-auth.app-connected-site.pixgom-inner.pixgom-unified.pixgom-unified .inner-form-card.inner-form-card.inner-form-card label:has(> input:not([type="checkbox"])),
  html body.auth-page.auth-page.marketing-auth.app-connected-site.pixgom-inner.pixgom-unified.pixgom-unified .form-card.form-card.form-card label:has(> input:not([type="checkbox"])),
  html body.auth-page.auth-page.marketing-auth.app-connected-site.pixgom-inner.pixgom-unified.pixgom-unified .apply-card.apply-card.apply-card label:has(> input:not([type="checkbox"])) {
    min-height: 0 !important;
    height: auto !important;
    padding: 10px 14px !important;
    gap: 5px !important;
    border-radius: 18px !important;
    line-height: 18px !important;
  }
  html body.auth-page.auth-page.marketing-auth.app-connected-site.pixgom-inner.pixgom-unified.pixgom-unified .auth-card.auth-card.auth-card label:has(> input:not([type="checkbox"])) > input:not([type="checkbox"]),
  html body.auth-page.auth-page.marketing-auth.app-connected-site.pixgom-inner.pixgom-unified.pixgom-unified .inner-form-card.inner-form-card.inner-form-card label:has(> input:not([type="checkbox"])) > input:not([type="checkbox"]),
  html body.auth-page.auth-page.marketing-auth.app-connected-site.pixgom-inner.pixgom-unified.pixgom-unified .form-card.form-card.form-card label:has(> input:not([type="checkbox"])) > input:not([type="checkbox"]),
  html body.auth-page.auth-page.marketing-auth.app-connected-site.pixgom-inner.pixgom-unified.pixgom-unified .apply-card.apply-card.apply-card label:has(> input:not([type="checkbox"])) > input:not([type="checkbox"]) {
    height: 44px !important;
    min-height: 44px !important;
    max-height: 44px !important;
    padding: 0 !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    line-height: 20px !important;
  }
  html body.auth-page.auth-page.marketing-auth.app-connected-site.pixgom-inner.pixgom-unified.pixgom-unified .auth-card.auth-card.auth-card label:has(> input[type="checkbox"]),
  html body.auth-page.auth-page.marketing-auth.app-connected-site.pixgom-inner.pixgom-unified.pixgom-unified .inner-form-card.inner-form-card.inner-form-card label:has(> input[type="checkbox"]),
  html body.auth-page.auth-page.marketing-auth.app-connected-site.pixgom-inner.pixgom-unified.pixgom-unified .form-card.form-card.form-card label:has(> input[type="checkbox"]),
  html body.auth-page.auth-page.marketing-auth.app-connected-site.pixgom-inner.pixgom-unified.pixgom-unified .apply-card.apply-card.apply-card label:has(> input[type="checkbox"]) {
    min-height: 0 !important;
    padding: 12px 14px !important;
    border-radius: 18px !important;
  }
}

/* v33: console surface/card parity with production home system */
html body.console-shell-page.pixgom-unified {
  background: #faf8f3 !important;
  color: #0b1020 !important;
}
html body.console-shell-page.pixgom-unified #pixgom-console-root {
  box-sizing: border-box !important;
  width: 100% !important;
  min-height: calc(100vh - 76px) !important;
  padding: 32px 33px 80px !important;
  background: #faf8f3 !important;
}
html body.console-shell-page.pixgom-unified .buyer-console,
html body.console-shell-page.pixgom-unified .console-app,
html body.console-shell-page.pixgom-unified .buyer-dashboard,
html body.console-shell-page.pixgom-unified .console-dashboard {
  box-sizing: border-box !important;
  width: min(1120px, 100%) !important;
  margin: 0 auto !important;
  color: #0b1020 !important;
}
html body.console-shell-page.pixgom-unified .buyer-console-error-state,
html body.console-shell-page.pixgom-unified .console-login-panel,
html body.console-shell-page.pixgom-unified .buyer-ops-hero,
html body.console-shell-page.pixgom-unified .console-dashboard-intro,
html body.console-shell-page.pixgom-unified .console-summary-card,
html body.console-shell-page.pixgom-unified .buyer-ops-metric,
html body.console-shell-page.pixgom-unified .console-action-queue-item,
html body.console-shell-page.pixgom-unified .console-search-panel,
html body.console-shell-page.pixgom-unified .console-search-form,
html body.console-shell-page.pixgom-unified .console-search-section,
html body.console-shell-page.pixgom-unified .console-infra-panel,
html body.console-shell-page.pixgom-unified .console-game-overview,
html body.console-shell-page.pixgom-unified .console-empty {
  box-sizing: border-box !important;
  background: rgba(255, 255, 255, 0.86) !important;
  border: 1px solid rgba(11, 16, 32, 0.09) !important;
  border-radius: 24px !important;
  box-shadow: 0 20px 56px rgba(11, 16, 32, 0.08) !important;
  color: #0b1020 !important;
}
html body.console-shell-page.pixgom-unified .buyer-console-error-state,
html body.console-shell-page.pixgom-unified .console-login-panel {
  width: min(560px, 100%) !important;
  max-width: 560px !important;
  margin: 0 auto !important;
  padding: 36px !important;
  display: grid !important;
  gap: 18px !important;
}
html body.console-shell-page.pixgom-unified .buyer-console-error-state h1,
html body.console-shell-page.pixgom-unified .buyer-console-error-state h2,
html body.console-shell-page.pixgom-unified .console-login-panel h1,
html body.console-shell-page.pixgom-unified .console-login-panel h2,
html body.console-shell-page.pixgom-unified .buyer-ops-hero h1,
html body.console-shell-page.pixgom-unified .buyer-ops-hero h2,
html body.console-shell-page.pixgom-unified .console-dashboard-intro h1,
html body.console-shell-page.pixgom-unified .console-dashboard-intro h2 {
  color: #0b1020 !important;
  font-size: clamp(30px, 4vw, 48px) !important;
  line-height: 1.08 !important;
  font-weight: 900 !important;
  letter-spacing: -0.06em !important;
  margin: 0 !important;
}
html body.console-shell-page.pixgom-unified .buyer-console-error-state p,
html body.console-shell-page.pixgom-unified .console-login-panel p,
html body.console-shell-page.pixgom-unified .buyer-ops-hero p,
html body.console-shell-page.pixgom-unified .console-dashboard-intro p {
  color: #52647d !important;
  font-size: 15px !important;
  line-height: 1.72 !important;
  font-weight: 600 !important;
  margin: 0 !important;
}
html body.console-shell-page.pixgom-unified .console-eyebrow,
html body.console-shell-page.pixgom-unified .buyer-console-error-state .console-eyebrow,
html body.console-shell-page.pixgom-unified .console-login-panel .console-eyebrow {
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  width: max-content !important;
  max-width: 100% !important;
  min-height: 29px !important;
  padding: 7px 12px !important;
  border: 1px solid rgba(11, 16, 32, 0.09) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, 0.88) !important;
  color: #52647d !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em !important;
  box-shadow: 0 10px 24px rgba(11, 16, 32, 0.06) !important;
}
html body.console-shell-page.pixgom-unified .console-eyebrow::before,
html body.console-shell-page.pixgom-unified .buyer-console-error-state .console-eyebrow::before,
html body.console-shell-page.pixgom-unified .console-login-panel .console-eyebrow::before {
  content: "" !important;
  width: 8px !important;
  height: 8px !important;
  border-radius: 999px !important;
  background: #00bc7d !important;
  box-shadow: 0 0 0 4px rgba(0, 188, 125, 0.14) !important;
}
html body.console-shell-page.pixgom-unified button,
html body.console-shell-page.pixgom-unified a.inner-primary,
html body.console-shell-page.pixgom-unified a.inner-secondary,
html body.console-shell-page.pixgom-unified .button,
html body.console-shell-page.pixgom-unified .console-action-queue-item a,
html body.console-shell-page.pixgom-unified .console-action-queue-item button,
html body.console-shell-page.pixgom-unified .console-toolbar-actions a,
html body.console-shell-page.pixgom-unified .console-toolbar-actions button {
  min-height: 52px !important;
  border-radius: 999px !important;
  font-weight: 900 !important;
  letter-spacing: -0.025em !important;
}
html body.console-shell-page.pixgom-unified .buyer-console-error-state button,
html body.console-shell-page.pixgom-unified .buyer-console-error-state a,
html body.console-shell-page.pixgom-unified .console-login-panel button,
html body.console-shell-page.pixgom-unified .console-login-panel a {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 56px !important;
  padding: 0 26px !important;
  border-radius: 999px !important;
  text-decoration: none !important;
}
html body.console-shell-page.pixgom-unified .buyer-console-error-state button:first-of-type,
html body.console-shell-page.pixgom-unified .buyer-console-error-state a.inner-primary,
html body.console-shell-page.pixgom-unified .console-login-panel a.inner-primary {
  background: #0b1020 !important;
  color: #fff !important;
  border: 1px solid #0b1020 !important;
  box-shadow: 0 16px 28px rgba(11, 16, 32, 0.18) !important;
}
html body.console-shell-page.pixgom-unified .buyer-console-error-state a:not(.inner-primary),
html body.console-shell-page.pixgom-unified .console-login-panel a:not(.inner-primary),
html body.console-shell-page.pixgom-unified .buyer-console-error-state button:not(:first-of-type) {
  background: rgba(255, 255, 255, 0.78) !important;
  color: #0b1020 !important;
  border: 1px solid rgba(11, 16, 32, 0.16) !important;
  box-shadow: none !important;
}
html body.console-shell-page.pixgom-unified .console-summary-grid,
html body.console-shell-page.pixgom-unified .buyer-ops-metric-grid,
html body.console-shell-page.pixgom-unified .console-action-queue-list {
  gap: 14px !important;
}
html body.console-shell-page.pixgom-unified .console-summary-card strong,
html body.console-shell-page.pixgom-unified .buyer-ops-metric strong {
  color: #0b1020 !important;
  font-size: 28px !important;
  font-weight: 900 !important;
  letter-spacing: -0.045em !important;
}

@media (max-width: 860px) {
  html body.console-shell-page.pixgom-unified #pixgom-console-root {
    min-height: calc(100vh - 68px) !important;
    padding: 16px 20px 56px !important;
  }
  html body.console-shell-page.pixgom-unified .buyer-console-error-state,
  html body.console-shell-page.pixgom-unified .console-login-panel {
    width: 100% !important;
    max-width: 350px !important;
    padding: 28px 26px !important;
    border-radius: 24px !important;
  }
  html body.console-shell-page.pixgom-unified .buyer-console-error-state h1,
  html body.console-shell-page.pixgom-unified .buyer-console-error-state h2,
  html body.console-shell-page.pixgom-unified .console-login-panel h1,
  html body.console-shell-page.pixgom-unified .console-login-panel h2,
  html body.console-shell-page.pixgom-unified .buyer-ops-hero h1,
  html body.console-shell-page.pixgom-unified .buyer-ops-hero h2,
  html body.console-shell-page.pixgom-unified .console-dashboard-intro h1,
  html body.console-shell-page.pixgom-unified .console-dashboard-intro h2 {
    font-size: 28px !important;
    line-height: 1.16 !important;
  }
}

/* v34: console mobile container width parity with home/auth cards */
@media (max-width: 860px) {
  html body.console-shell-page.pixgom-unified #pixgom-console-root > .console-app-shell.buyer-react-console,
  html body.console-shell-page.pixgom-unified .console-app-shell.buyer-react-console {
    box-sizing: border-box !important;
    width: 100% !important;
    max-width: 350px !important;
    margin: 0 auto !important;
    padding: 0 !important;
  }
  html body.console-shell-page.pixgom-unified .console-app-shell.buyer-react-console > .buyer-console-error-state,
  html body.console-shell-page.pixgom-unified .console-app-shell.buyer-react-console > .console-login-panel,
  html body.console-shell-page.pixgom-unified .console-app-shell.buyer-react-console > .buyer-ops-hero,
  html body.console-shell-page.pixgom-unified .console-app-shell.buyer-react-console > .console-dashboard-intro {
    width: 100% !important;
    max-width: 350px !important;
    margin: 0 !important;
  }
}

/* v35: auth desktop header row lock and console typography/button parity */
@media (min-width: 861px) {
  html body.auth-page.pixgom-unified > header.inner-site-header[data-pixgom-header],
  html body.auth-page.pixgom-unified > header.pg-header[data-pixgom-header],
  html body.auth-page.pixgom-unified > header.site-header[data-pixgom-header] {
    display: grid !important;
    grid-template-columns: 132px minmax(0, 1fr) auto !important;
    grid-template-rows: 76px !important;
    align-items: center !important;
    align-content: center !important;
    height: 76px !important;
    min-height: 76px !important;
    padding: 0 33px !important;
  }
  html body.auth-page.pixgom-unified > header[data-pixgom-header] > a.brand,
  html body.auth-page.pixgom-unified > header[data-pixgom-header] > a.inner-site-brand,
  html body.auth-page.pixgom-unified > header[data-pixgom-header] > a.pg-brand,
  html body.auth-page.pixgom-unified > header[data-pixgom-header] a.brand,
  html body.auth-page.pixgom-unified > header[data-pixgom-header] a.inner-site-brand,
  html body.auth-page.pixgom-unified > header[data-pixgom-header] a.pg-brand {
    grid-column: 1 !important;
    grid-row: 1 !important;
    align-self: center !important;
    justify-self: start !important;
    width: 132px !important;
    height: 40px !important;
    min-height: 40px !important;
    margin: 0 !important;
    transform: none !important;
  }
  html body.console-shell-page.pixgom-unified #pixgom-console-root .buyer-console-error-state h1,
  html body.console-shell-page.pixgom-unified #pixgom-console-root .buyer-console-error-state h2,
  html body.console-shell-page.pixgom-unified #pixgom-console-root .console-login-panel h1,
  html body.console-shell-page.pixgom-unified #pixgom-console-root .console-login-panel h2,
  html body.console-shell-page.pixgom-unified #pixgom-console-root .buyer-ops-hero h1,
  html body.console-shell-page.pixgom-unified #pixgom-console-root .buyer-ops-hero h2,
  html body.console-shell-page.pixgom-unified #pixgom-console-root .console-dashboard-intro h1,
  html body.console-shell-page.pixgom-unified #pixgom-console-root .console-dashboard-intro h2 {
    font-size: 48px !important;
    line-height: 52.8px !important;
    font-weight: 900 !important;
    letter-spacing: -0.06em !important;
  }
  html body.console-shell-page.pixgom-unified #pixgom-console-root .buyer-console-error-state .console-action-row a,
  html body.console-shell-page.pixgom-unified #pixgom-console-root .buyer-console-error-state .console-action-row button,
  html body.console-shell-page.pixgom-unified #pixgom-console-root .console-login-panel .console-action-row a,
  html body.console-shell-page.pixgom-unified #pixgom-console-root .console-login-panel .console-action-row button {
    height: 56px !important;
    min-height: 56px !important;
    padding: 0 26px !important;
  }
}

@media (max-width: 860px) {
  html body.console-shell-page.pixgom-unified #pixgom-console-root .buyer-console-error-state h1,
  html body.console-shell-page.pixgom-unified #pixgom-console-root .buyer-console-error-state h2,
  html body.console-shell-page.pixgom-unified #pixgom-console-root .console-login-panel h1,
  html body.console-shell-page.pixgom-unified #pixgom-console-root .console-login-panel h2,
  html body.console-shell-page.pixgom-unified #pixgom-console-root .buyer-ops-hero h1,
  html body.console-shell-page.pixgom-unified #pixgom-console-root .buyer-ops-hero h2,
  html body.console-shell-page.pixgom-unified #pixgom-console-root .console-dashboard-intro h1,
  html body.console-shell-page.pixgom-unified #pixgom-console-root .console-dashboard-intro h2 {
    font-size: 28px !important;
    line-height: 33.6px !important;
    font-weight: 900 !important;
    letter-spacing: -0.055em !important;
  }
  html body.console-shell-page.pixgom-unified #pixgom-console-root .buyer-console-error-state .console-action-row,
  html body.console-shell-page.pixgom-unified #pixgom-console-root .console-login-panel .console-action-row {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
  html body.console-shell-page.pixgom-unified #pixgom-console-root .buyer-console-error-state .console-action-row a,
  html body.console-shell-page.pixgom-unified #pixgom-console-root .buyer-console-error-state .console-action-row button,
  html body.console-shell-page.pixgom-unified #pixgom-console-root .console-login-panel .console-action-row a,
  html body.console-shell-page.pixgom-unified #pixgom-console-root .console-login-panel .console-action-row button {
    width: 100% !important;
    height: 56px !important;
    min-height: 56px !important;
    padding: 0 24px !important;
  }
}

/* v36: auth desktop CI absolute coordinate lock to production home */
@media (min-width: 861px) {
  html body.auth-page.auth-page.marketing-auth.app-connected-site.pixgom-inner.pixgom-unified.pixgom-unified > header.inner-site-header.inner-site-header[data-pixgom-header] > a.brand.inner-site-brand.inner-site-brand,
  html body.auth-page.auth-page.marketing-auth.app-connected-site.pixgom-inner.pixgom-unified.pixgom-unified > header.inner-site-header.inner-site-header[data-pixgom-header] > a.inner-site-brand.inner-site-brand,
  html body.auth-page.pixgom-unified > header.inner-site-header[data-pixgom-header] > a.brand.inner-site-brand,
  html body.auth-page.pixgom-unified > header.inner-site-header[data-pixgom-header] > a.inner-site-brand,
  html body.auth-page.pixgom-unified > header[data-pixgom-header] > a.brand,
  html body.auth-page.pixgom-unified > header[data-pixgom-header] > a.pg-brand {
    position: absolute !important;
    left: 33px !important;
    top: 18px !important;
    right: auto !important;
    bottom: auto !important;
    width: 132px !important;
    min-width: 132px !important;
    max-width: 132px !important;
    height: 40px !important;
    min-height: 40px !important;
    max-height: 40px !important;
    margin: 0 !important;
    transform: none !important;
    z-index: 2 !important;
  }
}

/* v37: auth desktop CI coordinate correction inside padded grid header */
@media (min-width: 861px) {
  html body.auth-page.auth-page.marketing-auth.app-connected-site.pixgom-inner.pixgom-unified.pixgom-unified > header.inner-site-header.inner-site-header[data-pixgom-header] > a.brand.inner-site-brand.inner-site-brand,
  html body.auth-page.auth-page.marketing-auth.app-connected-site.pixgom-inner.pixgom-unified.pixgom-unified > header.inner-site-header.inner-site-header[data-pixgom-header] > a.inner-site-brand.inner-site-brand,
  html body.auth-page.pixgom-unified > header.inner-site-header[data-pixgom-header] > a.brand.inner-site-brand,
  html body.auth-page.pixgom-unified > header.inner-site-header[data-pixgom-header] > a.inner-site-brand,
  html body.auth-page.pixgom-unified > header[data-pixgom-header] > a.brand,
  html body.auth-page.pixgom-unified > header[data-pixgom-header] > a.pg-brand {
    position: absolute !important;
    left: 0 !important;
    top: 18px !important;
    right: auto !important;
    bottom: auto !important;
    place-self: start start !important;
    align-self: start !important;
    justify-self: start !important;
    width: 132px !important;
    min-width: 132px !important;
    max-width: 132px !important;
    height: 40px !important;
    min-height: 40px !important;
    max-height: 40px !important;
    margin: 0 !important;
    transform: none !important;
    z-index: 2 !important;
  }
}

/* v37: auth desktop CI coordinate correction for grid absolute item */
@media (min-width: 861px) {
  html body.auth-page.auth-page.marketing-auth.app-connected-site.pixgom-inner.pixgom-unified.pixgom-unified > header.inner-site-header.inner-site-header[data-pixgom-header] > a.brand.inner-site-brand.inner-site-brand,
  html body.auth-page.auth-page.marketing-auth.app-connected-site.pixgom-inner.pixgom-unified.pixgom-unified > header.inner-site-header.inner-site-header[data-pixgom-header] > a.inner-site-brand.inner-site-brand,
  html body.auth-page.pixgom-unified > header.inner-site-header[data-pixgom-header] > a.brand.inner-site-brand,
  html body.auth-page.pixgom-unified > header.inner-site-header[data-pixgom-header] > a.inner-site-brand,
  html body.auth-page.pixgom-unified > header[data-pixgom-header] > a.brand,
  html body.auth-page.pixgom-unified > header[data-pixgom-header] > a.pg-brand {
    position: absolute !important;
    left: 0 !important;
    top: 18px !important;
    right: auto !important;
    bottom: auto !important;
    place-self: start start !important;
    align-self: start !important;
    justify-self: start !important;
    width: 132px !important;
    min-width: 132px !important;
    max-width: 132px !important;
    height: 40px !important;
    min-height: 40px !important;
    max-height: 40px !important;
    margin: 0 !important;
    transform: none !important;
    z-index: 2 !important;
  }
}

/* v38: mobile header and CI final lock from home standard */
@media (max-width: 860px) {
  html body header[data-pixgom-header],
  html body .pg-header[data-pixgom-header],
  html body .inner-site-header[data-pixgom-header],
  html body .site-header[data-pixgom-header] {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    width: 100% !important;
    max-width: none !important;
    height: 68px !important;
    min-height: 68px !important;
    max-height: 68px !important;
    padding: 0 16px !important;
    margin: 0 !important;
    display: grid !important;
    grid-template-columns: 1fr 44px !important;
    grid-template-rows: 68px !important;
    align-items: center !important;
    justify-items: stretch !important;
    gap: 0 !important;
    border-bottom: 1px solid rgba(11, 16, 32, 0.08) !important;
    background: rgba(250, 248, 243, 0.96) !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  html body header[data-pixgom-header] > a.brand,
  html body header[data-pixgom-header] > a.pg-brand,
  html body header[data-pixgom-header] > a.inner-site-brand,
  html body header[data-pixgom-header] .brand,
  html body header[data-pixgom-header] .pg-brand,
  html body header[data-pixgom-header] .inner-site-brand {
    grid-column: 1 !important;
    grid-row: 1 !important;
    position: static !important;
    left: auto !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    place-self: center start !important;
    align-self: center !important;
    justify-self: start !important;
    display: grid !important;
    grid-template-columns: 32px auto !important;
    grid-template-rows: 40px !important;
    align-items: center !important;
    justify-content: start !important;
    column-gap: 8px !important;
    width: 122px !important;
    min-width: 122px !important;
    max-width: 122px !important;
    height: 40px !important;
    min-height: 40px !important;
    max-height: 40px !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
    text-decoration: none !important;
    overflow: visible !important;
    z-index: 2 !important;
  }

  html body header[data-pixgom-header] > a.brand img,
  html body header[data-pixgom-header] > a.pg-brand img,
  html body header[data-pixgom-header] > a.inner-site-brand img,
  html body header[data-pixgom-header] .brand img,
  html body header[data-pixgom-header] .pg-brand img,
  html body header[data-pixgom-header] .inner-site-brand img,
  html body header[data-pixgom-header] > a.brand svg,
  html body header[data-pixgom-header] > a.pg-brand svg,
  html body header[data-pixgom-header] > a.inner-site-brand svg,
  html body header[data-pixgom-header] .brand svg,
  html body header[data-pixgom-header] .pg-brand svg,
  html body header[data-pixgom-header] .inner-site-brand svg,
  html body header[data-pixgom-header] .brand-mark,
  html body header[data-pixgom-header] .pg-logo-mark,
  html body header[data-pixgom-header] .inner-site-logo,
  html body header[data-pixgom-header] .logo-mark {
    width: 32px !important;
    min-width: 32px !important;
    max-width: 32px !important;
    height: 32px !important;
    min-height: 32px !important;
    max-height: 32px !important;
    border-radius: 8px !important;
    object-fit: contain !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  html body header[data-pixgom-header] .brand-copy,
  html body header[data-pixgom-header] .pg-brand-copy,
  html body header[data-pixgom-header] .inner-site-brand-copy,
  html body header[data-pixgom-header] .brand-text,
  html body header[data-pixgom-header] .logo-copy {
    display: grid !important;
    grid-template-rows: 18px 14px !important;
    align-content: center !important;
    gap: 1px !important;
    width: 82px !important;
    min-width: 82px !important;
    max-width: 82px !important;
    height: 34px !important;
    overflow: visible !important;
  }

  html body header[data-pixgom-header] .brand-name,
  html body header[data-pixgom-header] .pg-brand-name,
  html body header[data-pixgom-header] .inner-site-brand-name,
  html body header[data-pixgom-header] strong {
    font-size: 16px !important;
    line-height: 18px !important;
    font-weight: 900 !important;
    letter-spacing: -0.03em !important;
    color: #0b1020 !important;
    white-space: nowrap !important;
  }

  html body header[data-pixgom-header] .brand-version,
  html body header[data-pixgom-header] .pg-brand-version,
  html body header[data-pixgom-header] .inner-site-brand-version,
  html body header[data-pixgom-header] small {
    font-size: 10px !important;
    line-height: 12px !important;
    font-weight: 800 !important;
    letter-spacing: -0.02em !important;
    color: #62748e !important;
    white-space: nowrap !important;
  }

  html body header[data-pixgom-header] nav,
  html body header[data-pixgom-header] .nav,
  html body header[data-pixgom-header] .pg-nav,
  html body header[data-pixgom-header] .inner-site-nav,
  html body header[data-pixgom-header] .site-nav,
  html body header[data-pixgom-header] .desktop-nav,
  html body header[data-pixgom-header] a[href="/login"],
  html body header[data-pixgom-header] a[href="/signup"],
  html body header[data-pixgom-header] a[href="/account"],
  html body header[data-pixgom-header] a[href="/profile"],
  html body header[data-pixgom-header] a[href="/logout"],
  html body header[data-pixgom-header] .login-link,
  html body header[data-pixgom-header] .signup-link,
  html body header[data-pixgom-header] .account-link,
  html body header[data-pixgom-header] .logout-link,
  html body header[data-pixgom-header] .desktop-only,
  html body header[data-pixgom-header] .header-cta,
  html body header[data-pixgom-header] .pg-header-cta,
  html body header[data-pixgom-header] .inner-site-cta {
    display: none !important;
  }

  html body header[data-pixgom-header] button,
  html body header[data-pixgom-header] .menu-toggle,
  html body header[data-pixgom-header] .mobile-menu-toggle,
  html body header[data-pixgom-header] .hamburger,
  html body header[data-pixgom-header] [aria-label*="메뉴"],
  html body header[data-pixgom-header] [aria-label*="menu" i] {
    grid-column: 2 !important;
    grid-row: 1 !important;
    place-self: center end !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 44px !important;
    min-width: 44px !important;
    max-width: 44px !important;
    height: 44px !important;
    min-height: 44px !important;
    max-height: 44px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 14px !important;
    background: transparent !important;
    color: #0b1020 !important;
    box-shadow: none !important;
    transform: none !important;
    z-index: 2 !important;
  }
}

/* v39: public page hero and CTA parity, apply desktop CI correction */
@media (min-width: 861px) {
  html body.pixgom-sales-page main.pg-main > section.pg-hero.pg-sales-hero {
    height: 568px !important;
    min-height: 568px !important;
    max-height: 568px !important;
  }

  html body.pixgom-sales-page .pg-copy > .pg-actions .pg-cta,
  html body.pixgom-sales-page .hero-actions .cta.primary,
  html body.pixgom-sales-page .hero-actions .button-primary {
    height: 56px !important;
    min-height: 56px !important;
    border-radius: 999px !important;
    background: #0b1020 !important;
    color: #ffffff !important;
    box-shadow: rgba(11, 16, 32, 0.62) 0px 18px 34px -26px !important;
    font-size: 13px !important;
    font-weight: 950 !important;
  }

  html body.pixgom-sales-page .pg-copy > .pg-actions .pg-secondary,
  html body.pixgom-sales-page .hero-actions .cta.secondary,
  html body.pixgom-sales-page .hero-actions .button-secondary {
    height: 56px !important;
    min-height: 56px !important;
    border-radius: 999px !important;
    background: #ffffff !important;
    color: #0b1020 !important;
    border: 1px solid rgba(11, 16, 32, 0.16) !important;
    box-shadow: rgba(11, 16, 32, 0.62) 0px 18px 34px -26px !important;
    font-size: 16px !important;
    font-weight: 950 !important;
  }

  html body.auth-page.pixgom-inner-apply.pixgom-unified > header.inner-site-header[data-pixgom-header] > a.brand.inner-site-brand,
  html body.auth-page.pixgom-inner-apply.pixgom-unified > header.inner-site-header[data-pixgom-header] > a.inner-site-brand {
    top: 47.5px !important;
  }
}

@media (max-width: 860px) {
  html body.pixgom-sales-page .pg-copy > .pg-actions .pg-cta,
  html body.pixgom-sales-page .hero-actions .cta.primary,
  html body.pixgom-sales-page .hero-actions .button-primary,
  html body.pixgom-sales-page .pg-copy > .pg-actions .pg-secondary,
  html body.pixgom-sales-page .hero-actions .cta.secondary,
  html body.pixgom-sales-page .hero-actions .button-secondary {
    width: 100% !important;
    min-height: 56px !important;
    height: 56px !important;
    border-radius: 999px !important;
    font-size: 16px !important;
    font-weight: 950 !important;
    box-shadow: rgba(11, 16, 32, 0.62) 0px 18px 34px -26px !important;
  }

  html body.pixgom-sales-page .pg-copy > .pg-actions .pg-cta,
  html body.pixgom-sales-page .hero-actions .cta.primary,
  html body.pixgom-sales-page .hero-actions .button-primary {
    background: #0b1020 !important;
    color: #ffffff !important;
  }

  html body.pixgom-sales-page .pg-copy > .pg-actions .pg-secondary,
  html body.pixgom-sales-page .hero-actions .cta.secondary,
  html body.pixgom-sales-page .hero-actions .button-secondary {
    background: #ffffff !important;
    color: #0b1020 !important;
    border: 1px solid rgba(11, 16, 32, 0.16) !important;
  }
}

/* v40: highest specificity parity locks for old duplicated selectors */
@media (min-width: 861px) {
  html body.auth-page.auth-page.marketing-auth.app-connected-site.pixgom-inner.pixgom-inner-apply.pixgom-unified.pixgom-unified > header.inner-site-header.inner-site-header[data-pixgom-header] > a.brand.inner-site-brand.inner-site-brand,
  html body.auth-page.auth-page.marketing-auth.app-connected-site.pixgom-inner.pixgom-inner-apply.pixgom-unified.pixgom-unified > header.inner-site-header.inner-site-header[data-pixgom-header] > a.inner-site-brand.inner-site-brand {
    position: absolute !important;
    left: 0 !important;
    top: 47.5px !important;
    right: auto !important;
    bottom: auto !important;
    align-self: start !important;
    justify-self: start !important;
    place-self: start !important;
    transform: none !important;
  }

  html body.pixgom-unified.pixgom-static-page.pixgom-sales-page.pixgom-sales-page main.pg-main.pg-main > section.pg-hero.pg-sales-hero.pg-sales-hero.pg-sales-hero > div.pg-copy.pg-copy.pg-copy > div.pg-actions.pg-actions > a.pg-cta.pg-cta,
  html body.pixgom-unified.pixgom-static-page.pixgom-sales-page main.pg-main > section.pg-hero.pg-sales-hero > div.pg-copy > div.pg-actions > a.pg-cta,
  html body.pixgom-unified.pixgom-static-page.pixgom-sales-page .pg-copy.pg-copy > .pg-actions.pg-actions > a.pg-cta.pg-cta {
    height: 56px !important;
    min-height: 56px !important;
    border-radius: 999px !important;
    background: #0b1020 !important;
    color: #ffffff !important;
    box-shadow: rgba(11, 16, 32, 0.62) 0px 18px 34px -26px !important;
    font-size: 13px !important;
    font-weight: 950 !important;
  }

  html body.pixgom-unified.pixgom-static-page.pixgom-sales-page.pixgom-sales-page main.pg-main.pg-main > section.pg-hero.pg-sales-hero.pg-sales-hero.pg-sales-hero > div.pg-copy.pg-copy.pg-copy > div.pg-actions.pg-actions > a.pg-secondary.pg-secondary,
  html body.pixgom-unified.pixgom-static-page.pixgom-sales-page main.pg-main > section.pg-hero.pg-sales-hero > div.pg-copy > div.pg-actions > a.pg-secondary,
  html body.pixgom-unified.pixgom-static-page.pixgom-sales-page .pg-copy.pg-copy > .pg-actions.pg-actions > a.pg-secondary.pg-secondary {
    height: 56px !important;
    min-height: 56px !important;
    border-radius: 999px !important;
    background: #ffffff !important;
    color: #0b1020 !important;
    border: 1px solid rgba(11, 16, 32, 0.16) !important;
    box-shadow: rgba(11, 16, 32, 0.62) 0px 18px 34px -26px !important;
    font-size: 16px !important;
    font-weight: 950 !important;
  }
}

@media (max-width: 860px) {
  html body.pixgom-unified.pixgom-static-page.pixgom-sales-page.pixgom-sales-page main.pg-main.pg-main > section.pg-hero.pg-sales-hero.pg-sales-hero.pg-sales-hero > div.pg-copy.pg-copy.pg-copy > div.pg-actions.pg-actions > a.pg-cta.pg-cta,
  html body.pixgom-unified.pixgom-static-page.pixgom-sales-page main.pg-main > section.pg-hero.pg-sales-hero > div.pg-copy > div.pg-actions > a.pg-cta,
  html body.pixgom-unified.pixgom-static-page.pixgom-sales-page .pg-copy.pg-copy > .pg-actions.pg-actions > a.pg-cta.pg-cta,
  html body.pixgom-unified.pixgom-static-page.pixgom-sales-page.pixgom-sales-page main.pg-main.pg-main > section.pg-hero.pg-sales-hero.pg-sales-hero.pg-sales-hero > div.pg-copy.pg-copy.pg-copy > div.pg-actions.pg-actions > a.pg-secondary.pg-secondary,
  html body.pixgom-unified.pixgom-static-page.pixgom-sales-page main.pg-main > section.pg-hero.pg-sales-hero > div.pg-copy > div.pg-actions > a.pg-secondary,
  html body.pixgom-unified.pixgom-static-page.pixgom-sales-page .pg-copy.pg-copy > .pg-actions.pg-actions > a.pg-secondary.pg-secondary {
    width: 100% !important;
    height: 56px !important;
    min-height: 56px !important;
    border-radius: 999px !important;
    font-size: 16px !important;
    font-weight: 950 !important;
    box-shadow: rgba(11, 16, 32, 0.62) 0px 18px 34px -26px !important;
  }

  html body.pixgom-unified.pixgom-static-page.pixgom-sales-page.pixgom-sales-page main.pg-main.pg-main > section.pg-hero.pg-sales-hero.pg-sales-hero.pg-sales-hero > div.pg-copy.pg-copy.pg-copy > div.pg-actions.pg-actions > a.pg-cta.pg-cta,
  html body.pixgom-unified.pixgom-static-page.pixgom-sales-page main.pg-main > section.pg-hero.pg-sales-hero > div.pg-copy > div.pg-actions > a.pg-cta,
  html body.pixgom-unified.pixgom-static-page.pixgom-sales-page .pg-copy.pg-copy > .pg-actions.pg-actions > a.pg-cta.pg-cta {
    background: #0b1020 !important;
    color: #ffffff !important;
  }

  html body.pixgom-unified.pixgom-static-page.pixgom-sales-page.pixgom-sales-page main.pg-main.pg-main > section.pg-hero.pg-sales-hero.pg-sales-hero.pg-sales-hero > div.pg-copy.pg-copy.pg-copy > div.pg-actions.pg-actions > a.pg-secondary.pg-secondary,
  html body.pixgom-unified.pixgom-static-page.pixgom-sales-page main.pg-main > section.pg-hero.pg-sales-hero > div.pg-copy > div.pg-actions > a.pg-secondary,
  html body.pixgom-unified.pixgom-static-page.pixgom-sales-page .pg-copy.pg-copy > .pg-actions.pg-actions > a.pg-secondary.pg-secondary {
    background: #ffffff !important;
    color: #0b1020 !important;
    border: 1px solid rgba(11, 16, 32, 0.16) !important;
  }
}

/* v41: auth, apply, console button surface parity with home CTA */
html body.auth-page .button-primary,
html body.auth-page .inner-primary,
html body.auth-page .auth-card button[type="submit"],
html body.auth-page .apply-login-gate .button-primary,
html body.console-shell-page .button-primary,
html body.console-shell-page .buyer-console-error-state button,
html body.console-shell-page .console-primary-action {
  height: 56px !important;
  min-height: 56px !important;
  border-radius: 999px !important;
  background: #0b1020 !important;
  color: #ffffff !important;
  border: 1px solid #0b1020 !important;
  box-shadow: rgba(11, 16, 32, 0.62) 0px 18px 34px -26px !important;
  font-weight: 950 !important;
}

html body.auth-page .button-secondary,
html body.auth-page .inner-secondary,
html body.auth-page .apply-login-gate .button-secondary,
html body.console-shell-page .button-secondary,
html body.console-shell-page .buyer-console-error-state a,
html body.console-shell-page .console-secondary-action {
  height: 56px !important;
  min-height: 56px !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  color: #0b1020 !important;
  border: 1px solid rgba(11, 16, 32, 0.16) !important;
  box-shadow: rgba(11, 16, 32, 0.62) 0px 18px 34px -26px !important;
  font-weight: 950 !important;
}

@media (max-width: 860px) {
  html body.auth-page .button-primary,
  html body.auth-page .inner-primary,
  html body.auth-page .auth-card button[type="submit"],
  html body.auth-page .apply-login-gate .button-primary,
  html body.auth-page .button-secondary,
  html body.auth-page .inner-secondary,
  html body.auth-page .apply-login-gate .button-secondary,
  html body.console-shell-page .button-primary,
  html body.console-shell-page .button-secondary,
  html body.console-shell-page .buyer-console-error-state button,
  html body.console-shell-page .buyer-console-error-state a {
    width: 100% !important;
    font-size: 16px !important;
  }
}

/* v42: stable auth apply CI placement and high-specificity auth/console CTA shadows */
@media (min-width: 861px) {
  html body.auth-page.auth-page.marketing-auth.app-connected-site.pixgom-inner.pixgom-inner-apply.pixgom-unified.pixgom-unified > header.inner-site-header.inner-site-header[data-pixgom-header] > a.brand.inner-site-brand.inner-site-brand,
  html body.auth-page.auth-page.marketing-auth.app-connected-site.pixgom-inner.pixgom-inner-apply.pixgom-unified.pixgom-unified > header.inner-site-header.inner-site-header[data-pixgom-header] > a.inner-site-brand.inner-site-brand {
    position: static !important;
    left: auto !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    grid-column: 1 !important;
    grid-row: 1 !important;
    align-self: center !important;
    justify-self: start !important;
    place-self: center start !important;
    transform: none !important;
  }
}

html body.auth-page.auth-page.marketing-auth.app-connected-site.pixgom-inner.pixgom-unified.pixgom-unified .apply-login-gate.apply-login-gate .apply-login-gate-actions .button.button-primary,
html body.auth-page.auth-page.marketing-auth.app-connected-site.pixgom-inner.pixgom-inner-apply.pixgom-unified.pixgom-unified .apply-login-gate.apply-login-gate .apply-login-gate-actions .button.button-primary,
html body.auth-page.auth-page.marketing-auth.app-connected-site.pixgom-inner.pixgom-unified.pixgom-unified .button.button-primary.button-primary,
html body.console-shell-page.console-shell-page.finance-console.finance-console.pixgom-inner-console.pixgom-inner-console.pixgom-detail-page.pixgom-detail-console.pixgom-inner-reference.pixgom-unified.pixgom-unified .button-primary.button-primary,
html body.console-shell-page.console-shell-page.finance-console.finance-console.pixgom-inner-console.pixgom-inner-console.pixgom-detail-page.pixgom-detail-console.pixgom-inner-reference.pixgom-unified.pixgom-unified .buyer-console-error-state.buyer-console-error-state button {
  height: 56px !important;
  min-height: 56px !important;
  border-radius: 999px !important;
  background: #0b1020 !important;
  color: #ffffff !important;
  border: 1px solid #0b1020 !important;
  box-shadow: rgba(11, 16, 32, 0.62) 0px 18px 34px -26px !important;
  font-weight: 950 !important;
}

html body.auth-page.auth-page.marketing-auth.app-connected-site.pixgom-inner.pixgom-unified.pixgom-unified .apply-login-gate.apply-login-gate .apply-login-gate-actions .button.button-secondary,
html body.auth-page.auth-page.marketing-auth.app-connected-site.pixgom-inner.pixgom-inner-apply.pixgom-unified.pixgom-unified .apply-login-gate.apply-login-gate .apply-login-gate-actions .button.button-secondary,
html body.auth-page.auth-page.marketing-auth.app-connected-site.pixgom-inner.pixgom-unified.pixgom-unified .button.button-secondary.button-secondary,
html body.console-shell-page.console-shell-page.finance-console.finance-console.pixgom-inner-console.pixgom-inner-console.pixgom-detail-page.pixgom-detail-console.pixgom-inner-reference.pixgom-unified.pixgom-unified .button-secondary.button-secondary,
html body.console-shell-page.console-shell-page.finance-console.finance-console.pixgom-inner-console.pixgom-inner-console.pixgom-detail-page.pixgom-detail-console.pixgom-inner-reference.pixgom-unified.pixgom-unified .buyer-console-error-state.buyer-console-error-state a {
  height: 56px !important;
  min-height: 56px !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  color: #0b1020 !important;
  border: 1px solid rgba(11, 16, 32, 0.16) !important;
  box-shadow: rgba(11, 16, 32, 0.62) 0px 18px 34px -26px !important;
  font-weight: 950 !important;
}

@media (max-width: 860px) {
  html body.auth-page.auth-page.marketing-auth.app-connected-site.pixgom-inner.pixgom-unified.pixgom-unified .apply-login-gate.apply-login-gate .apply-login-gate-actions .button.button-primary,
  html body.auth-page.auth-page.marketing-auth.app-connected-site.pixgom-inner.pixgom-unified.pixgom-unified .apply-login-gate.apply-login-gate .apply-login-gate-actions .button.button-secondary,
  html body.console-shell-page.console-shell-page.finance-console.finance-console.pixgom-inner-console.pixgom-inner-console.pixgom-detail-page.pixgom-detail-console.pixgom-inner-reference.pixgom-unified.pixgom-unified .button-primary.button-primary,
  html body.console-shell-page.console-shell-page.finance-console.finance-console.pixgom-inner-console.pixgom-inner-console.pixgom-detail-page.pixgom-detail-console.pixgom-inner-reference.pixgom-unified.pixgom-unified .button-secondary.button-secondary,
  html body.console-shell-page.console-shell-page.finance-console.finance-console.pixgom-inner-console.pixgom-inner-console.pixgom-detail-page.pixgom-detail-console.pixgom-inner-reference.pixgom-unified.pixgom-unified .buyer-console-error-state.buyer-console-error-state button,
  html body.console-shell-page.console-shell-page.finance-console.finance-console.pixgom-inner-console.pixgom-inner-console.pixgom-detail-page.pixgom-detail-console.pixgom-inner-reference.pixgom-unified.pixgom-unified .buyer-console-error-state.buyer-console-error-state a {
    width: 100% !important;
    font-size: 16px !important;
  }
}

/* v43: console classless action buttons parity */
html body.console-shell-page main button:not(.pg-menu):not([data-pg-menu]),
html body.console-shell-page main a[href="/login"],
html body.console-shell-page main a[href="/console"] {
  height: 56px !important;
  min-height: 56px !important;
  border-radius: 999px !important;
  font-weight: 950 !important;
  box-shadow: rgba(11, 16, 32, 0.62) 0px 18px 34px -26px !important;
}

html body.console-shell-page main button:not(.pg-menu):not([data-pg-menu]) {
  background: #0b1020 !important;
  color: #ffffff !important;
  border: 1px solid #0b1020 !important;
}

html body.console-shell-page main a[href="/login"],
html body.console-shell-page main a[href="/console"] {
  background: #ffffff !important;
  color: #0b1020 !important;
  border: 1px solid rgba(11, 16, 32, 0.16) !important;
}

@media (max-width: 860px) {
  html body.console-shell-page main button:not(.pg-menu):not([data-pg-menu]),
  html body.console-shell-page main a[href="/login"],
  html body.console-shell-page main a[href="/console"] {
    width: 100% !important;
    font-size: 16px !important;
  }
}

/* v44: exact console error action parity */
html.pixgom-session-active body.console-shell-page.console-shell-page.finance-console.finance-console.pixgom-inner-console.pixgom-inner-console.pixgom-detail-page.pixgom-detail-console.pixgom-inner-reference.pixgom-unified.pixgom-session-active div#pixgom-console-root > main.console-app-shell.buyer-react-console > section.buyer-console-error-state.buyer-console-error-state > div.console-action-row.console-action-row > button,
html body.console-shell-page.console-shell-page.finance-console.finance-console.pixgom-inner-console.pixgom-inner-console.pixgom-detail-page.pixgom-detail-console.pixgom-inner-reference.pixgom-unified.pixgom-session-active div#pixgom-console-root > main.console-app-shell.buyer-react-console > section.buyer-console-error-state.buyer-console-error-state > div.console-action-row.console-action-row > button {
  height: 56px !important;
  min-height: 56px !important;
  border-radius: 999px !important;
  background: #0b1020 !important;
  color: #ffffff !important;
  border: 1px solid #0b1020 !important;
  box-shadow: rgba(11, 16, 32, 0.62) 0px 18px 34px -26px !important;
  font-weight: 950 !important;
}

html.pixgom-session-active body.console-shell-page.console-shell-page.finance-console.finance-console.pixgom-inner-console.pixgom-inner-console.pixgom-detail-page.pixgom-detail-console.pixgom-inner-reference.pixgom-unified.pixgom-session-active div#pixgom-console-root > main.console-app-shell.buyer-react-console > section.buyer-console-error-state.buyer-console-error-state > div.console-action-row.console-action-row > a,
html body.console-shell-page.console-shell-page.finance-console.finance-console.pixgom-inner-console.pixgom-inner-console.pixgom-detail-page.pixgom-detail-console.pixgom-inner-reference.pixgom-unified.pixgom-session-active div#pixgom-console-root > main.console-app-shell.buyer-react-console > section.buyer-console-error-state.buyer-console-error-state > div.console-action-row.console-action-row > a {
  height: 56px !important;
  min-height: 56px !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  color: #0b1020 !important;
  border: 1px solid rgba(11, 16, 32, 0.16) !important;
  box-shadow: rgba(11, 16, 32, 0.62) 0px 18px 34px -26px !important;
  font-weight: 950 !important;
}

/* v45: exact auth form and hero action parity with home CTA */
html body.auth-page.auth-page.marketing-auth.app-connected-site.pixgom-inner.pixgom-unified .inner-hero-actions.inner-hero-actions > a.inner-primary.inner-primary,
html body.auth-page.auth-page.marketing-auth.app-connected-site.pixgom-inner.pixgom-unified .auth-card.auth-card .button.button-primary,
html body.auth-page.auth-page.marketing-auth.app-connected-site.pixgom-inner.pixgom-unified .auth-card.auth-card button.button.button-primary,
html body.auth-page.auth-page.marketing-auth.app-connected-site.pixgom-inner.pixgom-unified .auth-card.auth-card button[type="submit"].button.button-primary {
  height: 56px !important;
  min-height: 56px !important;
  border-radius: 999px !important;
  background: #0b1020 !important;
  color: #ffffff !important;
  border: 1px solid #0b1020 !important;
  box-shadow: rgba(11, 16, 32, 0.62) 0px 18px 34px -26px !important;
  font-weight: 950 !important;
}

html body.auth-page.auth-page.marketing-auth.app-connected-site.pixgom-inner.pixgom-unified .inner-hero-actions.inner-hero-actions > a.inner-secondary.inner-secondary,
html body.auth-page.auth-page.marketing-auth.app-connected-site.pixgom-inner.pixgom-unified .auth-card.auth-card .button.google-button,
html body.auth-page.auth-page.marketing-auth.app-connected-site.pixgom-inner.pixgom-unified .auth-card.auth-card button.button.google-button {
  height: 56px !important;
  min-height: 56px !important;
  border-radius: 999px !important;
  background: #ffffff !important;
  color: #0b1020 !important;
  border: 1px solid rgba(11, 16, 32, 0.16) !important;
  box-shadow: rgba(11, 16, 32, 0.62) 0px 18px 34px -26px !important;
  font-weight: 950 !important;
}

html body.auth-page.auth-page.marketing-auth.app-connected-site.pixgom-inner.pixgom-unified .auth-card.auth-card .button.kakao-button,
html body.auth-page.auth-page.marketing-auth.app-connected-site.pixgom-inner.pixgom-unified .auth-card.auth-card button.button.kakao-button {
  height: 56px !important;
  min-height: 56px !important;
  border-radius: 999px !important;
  background: #ffd400 !important;
  color: #0b1020 !important;
  border: 1px solid #ffd400 !important;
  box-shadow: rgba(11, 16, 32, 0.62) 0px 18px 34px -26px !important;
  font-weight: 950 !important;
}

@media (max-width: 860px) {
  html body.auth-page.auth-page.marketing-auth.app-connected-site.pixgom-inner.pixgom-unified .auth-card.auth-card .button.button-primary,
  html body.auth-page.auth-page.marketing-auth.app-connected-site.pixgom-inner.pixgom-unified .auth-card.auth-card .button.kakao-button,
  html body.auth-page.auth-page.marketing-auth.app-connected-site.pixgom-inner.pixgom-unified .auth-card.auth-card .button.google-button {
    width: 100% !important;
    font-size: 16px !important;
  }
}

/* v46: exact desktop auth hero action parity */
@media (min-width: 861px) {
  html body.auth-page.auth-page.marketing-auth.app-connected-site.pixgom-inner.pixgom-detail-page.pixgom-inner-reference.pixgom-unified.pixgom-unified section.inner-hero-copy.inner-hero-copy div.inner-hero-actions.inner-hero-actions a.inner-primary.inner-primary,
  html body.auth-page.auth-page.marketing-auth.app-connected-site.pixgom-inner.pixgom-unified.pixgom-unified section.inner-hero-copy.inner-hero-copy div.inner-hero-actions.inner-hero-actions a.inner-primary.inner-primary {
    height: 56px !important;
    min-height: 56px !important;
    border-radius: 999px !important;
    background: #0b1020 !important;
    color: #ffffff !important;
    border: 1px solid #0b1020 !important;
    box-shadow: rgba(11, 16, 32, 0.62) 0px 18px 34px -26px !important;
    font-weight: 950 !important;
  }

  html body.auth-page.auth-page.marketing-auth.app-connected-site.pixgom-inner.pixgom-detail-page.pixgom-inner-reference.pixgom-unified.pixgom-unified section.inner-hero-copy.inner-hero-copy div.inner-hero-actions.inner-hero-actions a.inner-secondary.inner-secondary,
  html body.auth-page.auth-page.marketing-auth.app-connected-site.pixgom-inner.pixgom-unified.pixgom-unified section.inner-hero-copy.inner-hero-copy div.inner-hero-actions.inner-hero-actions a.inner-secondary.inner-secondary {
    height: 56px !important;
    min-height: 56px !important;
    border-radius: 999px !important;
    background: #ffffff !important;
    color: #0b1020 !important;
    border: 1px solid rgba(11, 16, 32, 0.16) !important;
    box-shadow: rgba(11, 16, 32, 0.62) 0px 18px 34px -26px !important;
    font-weight: 950 !important;
  }
}

/* v47: Android mobile apply title wrapping parity */
@media (max-width: 860px) {
  html body.auth-page.pixgom-inner-apply .auth-card.auth-card > h1,
  html body.auth-page.pixgom-inner-apply .apply-login-gate.apply-login-gate strong {
    max-width: 100% !important;
    font-size: clamp(30px, 8.2vw, 34px) !important;
    line-height: 1.16 !important;
    letter-spacing: -0.065em !important;
    word-break: normal !important;
    overflow-wrap: anywhere !important;
    white-space: normal !important;
  }
}

/* v48: Android apply Korean title natural wrapping */
@media (max-width: 860px) {
  html body.auth-page.pixgom-inner-apply .auth-card.auth-card > h1 {
    max-width: 100% !important;
    font-size: clamp(29px, 7.4vw, 32px) !important;
    line-height: 1.18 !important;
    letter-spacing: -0.055em !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
    white-space: normal !important;
  }

  html body.auth-page.pixgom-inner-apply .apply-login-gate.apply-login-gate strong {
    max-width: 100% !important;
    font-size: clamp(28px, 7vw, 30px) !important;
    line-height: 1.2 !important;
    letter-spacing: -0.055em !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
    white-space: normal !important;
  }
}
