:root {
  --bg: #f5f5f7;
  --bg-dark: #000;
  --surface: #fff;
  --text: #1d1d1f;
  --text-dark: #f5f5f7;
  --muted: #6e6e73;
  --line: #d2d2d7;
  --blue: #0071e3;
  --blue-hover: #0077ed;
  --link: #0066cc;
  --eyebrow: #bf4800;
  --radius: 18px;
  --nav-h: 48px;
  --font: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Helvetica Neue", "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

html, body {
  margin: 0;
  min-height: 100%;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.47;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--link); text-decoration: none; }
a:hover { text-decoration: underline; }

img { max-width: 100%; }

.container-narrow {
  width: min(980px, calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--nav-h);
  background: rgba(22, 22, 23, 0.8);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
}

.gnav {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: min(1024px, calc(100% - 32px));
  margin: 0 auto;
}

.gnav-brand {
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 600;
  font-size: 19px;
  letter-spacing: -0.02em;
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand-logo {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  display: block;
  object-fit: cover;
}

.gnav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  flex: 1;
}

.gnav-link,
.gnav-icon {
  color: #d2d2d7 !important;
  font-size: 12px;
  text-decoration: none !important;
  font-weight: 400;
}

.gnav-link:hover,
.gnav-icon:hover { color: #fff !important; }

.gnav-tools {
  display: flex;
  align-items: center;
  gap: 16px;
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: #fff;
  font-size: 22px;
  line-height: 1;
}

.local-nav {
  position: sticky;
  top: var(--nav-h);
  z-index: 40;
  background: rgba(255, 255, 255, 0.86);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}

.local-nav-inner {
  width: min(980px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.local-nav strong { font-size: 21px; letter-spacing: -0.02em; }

.local-nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 12px;
}

.local-nav-links a { color: var(--text); text-decoration: none; }
.local-nav-links a:hover { color: var(--link); }

.btn-buy,
.btn-accent {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--blue);
  color: #fff !important;
  border: 0;
  border-radius: 980px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none !important;
  line-height: 1.3;
}

.btn-buy:hover,
.btn-accent:hover { background: var(--blue-hover); color: #fff !important; }

.btn-buy:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  background: var(--blue);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  color: var(--text);
  background: transparent;
  border-radius: 980px;
  padding: 8px 16px;
  font-size: 14px;
  text-decoration: none !important;
}

.btn-ghost:hover { border-color: var(--text); color: var(--text); }

.cta-row {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin-top: 14px;
  font-size: 19px;
}

.cta-row a { text-decoration: none; }
.cta-row a::after { content: " ›"; }

.unit {
  text-align: center;
  padding: 64px 24px 0;
  overflow: hidden;
}

.unit h2 {
  font-size: clamp(32px, 6vw, 56px);
  letter-spacing: -0.015em;
  line-height: 1.07;
  font-weight: 600;
  margin: 0;
}

.unit .subhead {
  font-size: clamp(19px, 2.4vw, 28px);
  line-height: 1.14;
  font-weight: 400;
  margin: 8px auto 0;
  max-width: 22em;
}

.unit .eyebrow {
  color: var(--eyebrow);
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
}

.unit-visual {
  margin: 28px auto 0;
  width: min(720px, 100%);
}

.unit-visual img {
  width: 100%;
  display: block;
}

.unit--dark {
  background: #000;
  color: var(--text-dark);
}

.unit--dark .subhead { color: #86868b; }
.unit--dark .cta-row a { color: #2997ff; }

.unit--light {
  background: #fafafa;
  color: var(--text);
}

.unit--light .subhead { color: var(--muted); }

.unit--gray {
  background: #f5f5f7;
  color: var(--text);
}

.unit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 12px;
}

.unit-tile {
  background: #fff;
  text-align: center;
  padding: 48px 24px 0;
  min-height: 520px;
  overflow: hidden;
}

.unit-tile h3 {
  font-size: 40px;
  letter-spacing: -0.02em;
  margin: 0;
  font-weight: 600;
}

.unit-tile p {
  color: var(--muted);
  font-size: 21px;
  margin: 8px 0 0;
}

.hero-store {
  text-align: left;
  padding: 72px 0 36px;
}

.hero-store h1 {
  font-size: clamp(40px, 7vw, 64px);
  letter-spacing: -0.025em;
  font-weight: 600;
  line-height: 1.05;
  margin: 0;
}

.hero-store h1 span { color: var(--muted); }

.page-hero {
  padding: 72px 0 24px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(36px, 6vw, 56px);
  letter-spacing: -0.02em;
  font-weight: 600;
  margin: 0;
}

.bag {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 56px 0 96px;
}

.bag-hero h1 {
  margin: 0;
  font-size: clamp(40px, 5vw, 56px);
  letter-spacing: -0.035em;
  line-height: 1.07;
  font-weight: 600;
}

.bag-hero p {
  margin: 12px 0 28px;
  color: var(--muted);
  font-size: 21px;
}

.bag-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 56px;
  align-items: start;
  margin-top: 28px;
}

.bag-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.bag-item {
  display: grid;
  grid-template-columns: 128px minmax(0, 1fr) auto;
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid var(--line);
  transition: opacity 0.16s ease;
}

.bag-thumb {
  display: block;
  overflow: hidden;
  border-radius: 20px;
  background: #f5f5f7;
}

.bag-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center 40%;
}

.bag-info h2 {
  margin: 0;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.bag-info h2 a {
  color: var(--text);
  text-decoration: none;
}

.bag-info h2 a:hover {
  text-decoration: underline;
}

.bag-spec {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.bag-swatch {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.16);
  flex: 0 0 auto;
}

.bag-tools {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 20px;
}

.bag-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 980px;
  overflow: hidden;
  background: #fff;
}

.bag-qty button {
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 18px;
  line-height: 1;
  padding: 0;
}

.bag-qty button:hover:not(:disabled) {
  background: #f5f5f7;
}

.bag-qty button:disabled {
  color: #d2d2d7;
}

.bag-qty span {
  min-width: 1.75rem;
  text-align: center;
  font-size: 14px;
  font-variant-numeric: tabular-nums;
}

.bag-remove {
  border: 0;
  background: none;
  color: var(--link);
  font-size: 14px;
  padding: 0;
  line-height: 1.2;
}

.bag-remove:hover {
  text-decoration: underline;
}

.bag-price {
  margin: 0;
  font-size: 21px;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.bag-summary {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  padding-top: 32px;
  border-top: 1px solid var(--line);
}

.bag-summary-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin: 0 0 22px;
  font-size: 21px;
  letter-spacing: -0.02em;
}

.bag-summary .btn-accent {
  width: 100%;
  min-height: 44px;
  font-size: 17px;
}

.bag-continue {
  display: block;
  margin-top: 16px;
  text-align: center;
  font-size: 14px;
}

@media (max-width: 800px) {
  .bag {
    padding-top: 36px;
  }

  .bag-layout {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .bag-item {
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 16px;
    padding: 24px 0;
  }

  .bag-price {
    grid-column: 2;
    font-size: 17px;
  }

  .bag-summary {
    position: static;
    padding: 24px 0 0;
  }
}

.check {
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
  padding: 56px 0 96px;
}

.check-hero h1 {
  margin: 0;
  font-size: clamp(40px, 5vw, 56px);
  letter-spacing: -0.035em;
  line-height: 1.07;
  font-weight: 600;
}

.check-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 56px;
  align-items: start;
  margin-top: 36px;
}

.check-field {
  margin: 0 0 18px;
}

.check-apt {
  margin-top: 8px;
}

.check-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.check-pay {
  width: 100%;
  min-height: 48px;
  margin-top: 8px;
  font-size: 17px;
}

.check-summary {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
}

.check-summary h2 {
  margin: 0 0 8px;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.check-lines {
  list-style: none;
  margin: 0;
  padding: 0;
}

.check-line {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: start;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}

.check-thumb {
  display: block;
  overflow: hidden;
  border-radius: 14px;
  background: #f5f5f7;
}

.check-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center 40%;
}

.check-line-info h3 {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.check-line-info h3 a {
  color: var(--text);
  text-decoration: none;
}

.check-line-info h3 a:hover {
  text-decoration: underline;
}

.check-line-info p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.check-line-price {
  margin: 0;
  font-size: 15px;
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.check-totals {
  margin: 8px 0 0;
  padding-top: 8px;
  border-top: 1px solid var(--line);
}

.check-totals > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  color: var(--muted);
  font-size: 15px;
}

.check-totals dt,
.check-totals dd {
  margin: 0;
}

.check-grand {
  color: var(--text) !important;
  font-size: 21px !important;
  font-weight: 600;
  letter-spacing: -0.02em;
  padding-top: 16px !important;
  border-top: 1px solid var(--line);
}

@media (max-width: 860px) {
  .check {
    padding-top: 36px;
  }

  .check-layout,
  .check-split {
    grid-template-columns: 1fr;
  }

  .check-summary {
    position: static;
    order: -1;
  }
}

.kicker {
  color: var(--eyebrow);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
}

.lead-muted {
  color: var(--muted);
  font-size: 21px;
  max-width: 28em;
  margin-left: auto;
  margin-right: auto;
}

.legal-doc {
  max-width: 40rem;
}

.legal-doc .kicker {
  margin-bottom: 8px;
}

.legal-doc h1 {
  font-size: clamp(32px, 5vw, 44px);
  letter-spacing: -0.02em;
  font-weight: 600;
  margin: 0 0 12px;
}

.legal-intro {
  color: var(--muted);
  font-size: 18px;
  margin: 0 0 12px;
}

.legal-meta {
  color: var(--muted);
  font-size: 14px;
  margin: 0 0 32px;
}

.legal-doc h2 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 36px 0 12px;
}

.legal-doc h3 {
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 24px 0 8px;
}

.legal-doc p {
  margin: 0 0 12px;
}

.legal-contact {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 15px;
}

.legal-contact p { margin: 0 0 8px; }
.legal-contact p:last-child { margin-bottom: 0; }

.section { padding: 48px 0 80px; }

.panel {
  background: var(--surface);
  border-radius: var(--radius);
  border: 0;
  box-shadow: none;
}

.product-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
  height: 100%;
  text-align: center;
  padding: 36px 24px 28px;
}

.product-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: #f5f5f7;
  border-radius: 16px;
}

.product-card h3 {
  font-size: 28px;
  margin: 18px 0 6px;
  letter-spacing: -0.02em;
}

.product-card h3 a { color: var(--text); text-decoration: none; }
.price { font-weight: 400; color: var(--muted); font-size: 17px; }

.chapter {
  padding: 96px 24px;
  text-align: center;
}

.chapter h2 {
  font-size: clamp(32px, 5vw, 48px);
  letter-spacing: -0.02em;
  font-weight: 600;
  margin: 0 0 12px;
}

.chapter p {
  color: var(--muted);
  font-size: 21px;
  max-width: 22em;
  margin: 0 auto;
}

.chapter--dark {
  background: #000;
  color: #f5f5f7;
}

.chapter--dark p { color: #86868b; }

.buy-wrap {
  background: #fff;
  padding: 80px 0 120px;
}

.buy-wrap h2 {
  text-align: center;
  font-size: 48px;
  letter-spacing: -0.025em;
  font-weight: 600;
  margin-bottom: 8px;
}

.buy-wrap .from-price {
  text-align: center;
  color: var(--muted);
  font-size: 21px;
  margin-bottom: 36px;
}

.buy-step { margin-bottom: 28px; }
.buy-step h3 { letter-spacing: -0.02em; }

.option-grid {
  display: grid;
  gap: 12px;
}

.option-card[hidden] { display: none; }

.option-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 16px 18px;
  cursor: pointer;
  background: #fff;
}

.option-card:has(input:checked) {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue);
}

.option-card input { display: none; }
.option-title { font-weight: 600; }
.option-meta { color: var(--muted); font-size: 14px; grid-column: 1; }
.option-price { grid-row: 1 / span 2; align-self: center; font-size: 14px; color: var(--muted); }

.form-control, .form-select, textarea.form-control {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 12px;
  min-height: 48px;
}

.form-control:focus, .form-select:focus {
  background: #fff;
  color: var(--text);
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 113, 227, 0.16);
}

.table { color: var(--text); }
.table > :not(caption) > * > * {
  background: transparent;
  border-color: var(--line);
  color: var(--text);
}

.notice {
  background: #e8f3fd;
  border: 0;
  color: var(--text);
  border-radius: 12px;
  padding: 0.9rem 1rem;
  margin: 16px auto;
  width: min(980px, calc(100% - 32px));
}

.site-footer {
  background: #f5f5f7;
  color: #6e6e73;
  font-size: 12px;
  padding: 20px 0 40px;
  border-top: 1px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 24px;
  padding-top: 24px;
}

.footer-grid h4 {
  color: #1d1d1f;
  font-size: 12px;
  margin: 0 0 8px;
}

.footer-grid a {
  display: block;
  color: #424245;
  text-decoration: none;
  margin: 6px 0;
}

.footer-grid a:hover { text-decoration: underline; }

.cart-badge {
  background: #fff;
  color: #000;
  border-radius: 999px;
  padding: 0 6px;
  font-size: 11px;
  font-weight: 600;
  margin-left: 4px;
}

.crumbs {
  width: min(980px, calc(100% - 32px));
  margin: 12px auto 0;
  font-size: 12px;
  color: var(--muted);
}

.crumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 0;
}

.crumbs li:not(:last-child)::after { content: " /"; color: #86868b; margin-left: 6px; }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { text-decoration: underline; }

.faq {
  padding: 64px 0 96px;
  background: #fff;
}

.faq h2 {
  font-size: 40px;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

.faq details {
  border-top: 1px solid var(--line);
  padding: 16px 0;
}

.faq summary {
  cursor: pointer;
  font-weight: 600;
  font-size: 19px;
}

.faq details p {
  color: var(--muted);
  margin: 10px 0 0;
  max-width: 42rem;
}

.entity-facts {
  padding: 64px 24px 96px;
  background: #fff;
}

.entity-facts h2 {
  font-size: 32px;
  letter-spacing: -0.02em;
}

.entity-facts dl {
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 10px 24px;
  margin-top: 24px;
}

.entity-facts dt { color: var(--muted); }
.entity-facts dd { margin: 0; }

.sso-stack { display: grid; gap: 10px; margin-bottom: 8px; }
.sso-stack form { margin: 0; }
.btn-sso {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: #1d1d1f;
  font-size: 15px;
  font-weight: 500;
}
.btn-sso svg { width: 18px; height: 18px; }
.btn-sso:hover { background: #f5f5f7; }
.btn-sso-apple { background: #000; color: #fff; border-color: #000; }
.btn-sso-apple:hover { background: #1d1d1f; color: #fff; }
.sso-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--muted);
  font-size: 13px;
  margin: 18px 0;
}
.sso-divider::before,
.sso-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.field-error {
  display: block;
  color: #b42318;
  font-size: 13px;
  margin-top: 6px;
  min-height: 0;
}

.field-validation-valid {
  display: none;
}

.form-alert, .validation-summary-errors {
  background: #fdecec;
  color: #b42318;
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 16px;
  font-size: 14px;
}

.validation-summary-valid { display: none; }

.form-control.input-validation-error,
.form-control.is-invalid,
.form-select.input-validation-error,
.form-select.is-invalid {
  border-color: #b42318;
}

.phone-row {
  display: grid;
  grid-template-columns: minmax(9.5rem, 12.5rem) 1fr;
  gap: 8px;
}

.password-hints {
  list-style: none;
  padding: 8px 0 0;
  margin: 0;
  font-size: 13px;
  color: var(--muted);
}

.password-hints li { margin: 2px 0; }
.password-hints li::before { content: "○ "; }
.password-hints li.is-ok { color: #0e7a3d; }
.password-hints li.is-ok::before { content: "✓ "; }
.password-hints li.is-bad { color: #b42318; }
.password-hints li.is-bad::before { content: "× "; }

.password-match {
  color: #0e7a3d;
  font-size: 13px;
  margin: 6px 0 0;
}

.password-match.is-mismatch {
  color: #b42318;
}

.lang-prompt {
  background: #f5f5f7;
  border-bottom: 1px solid var(--line);
  padding: 12px 20px;
}

.lang-prompt-inner {
  width: min(980px, 100%);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 28px;
  text-align: center;
}

.lang-prompt-text {
  margin: 0;
  font-size: 14px;
  color: var(--text);
}

.lang-prompt-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  align-items: center;
  justify-content: center;
}

.lang-prompt-actions form { margin: 0; }

.lang-prompt-use,
.lang-prompt-stay {
  border: 0;
  background: none;
  padding: 0;
  font: inherit;
  font-size: 14px;
  color: var(--link);
  cursor: pointer;
}

.lang-prompt-use:hover,
.lang-prompt-stay:hover { text-decoration: underline; }

.lang-prompt-use { font-weight: 600; }

.footer-locale-row { display: flex; }
.footer-locale {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #1d1d1f !important;
  text-decoration: none !important;
  font-size: 12px;
}
.footer-locale:hover { text-decoration: underline !important; }

.footer-copy,
.footer-beian-row { color: #6e6e73; }
.footer-beian {
  color: #6e6e73 !important;
  text-decoration: none !important;
}
.footer-beian:hover { text-decoration: underline !important; }

.artwork-beian {
  padding: 8px 16px calc(88px + env(safe-area-inset-bottom, 0px));
  text-align: center;
  font-size: 12px;
}
.artwork-beian a {
  color: #6e6e73 !important;
  text-decoration: none !important;
}
.artwork-beian a:hover { text-decoration: underline !important; }

.lang-choice {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border: 0;
  background: transparent;
  padding: 14px 16px;
  text-align: left;
  font: inherit;
  color: var(--text);
  cursor: pointer;
  border-radius: 12px;
}
.lang-choice:hover { background: #f5f5f7; }
.lang-choice.is-current { background: #f5f5f7; }
.lang-choice-name { font-size: 17px; }
.lang-choice-current { font-size: 13px; color: var(--muted); }

.admin-shell { display: grid; grid-template-columns: 240px 1fr; min-height: 100vh; background: #fff; }
.admin-side {
  background: #1d1d1f;
  padding: 1.5rem;
  color: #d2d2d7;
}
.admin-side a { display: block; color: #d2d2d7; padding: 0.55rem 0; text-decoration: none; }
.admin-side a:hover { color: #fff; }
.admin-side .navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.admin-main { padding: 2rem; background: var(--bg); }

@media (max-width: 834px) {
  .menu-toggle { display: block; }
  .gnav-links {
    display: none;
    position: absolute;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: #161617;
    flex-direction: column;
    align-items: flex-start;
    padding: 16px 24px 24px;
    gap: 16px;
  }
  .gnav-links.is-open { display: flex; }
  .unit-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .admin-shell { grid-template-columns: 1fr; }
  .highlight-grid,
  .expression-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

.artwork-body-page { background: var(--bg); min-height: 100vh; }
.artwork-topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  background: rgba(22, 22, 23, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.artwork-topbar-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff !important;
  text-decoration: none !important;
  font-weight: 600;
  font-size: 17px;
}
.artwork-topbar-locale {
  color: #d2d2d7 !important;
  font-size: 13px;
  text-decoration: none !important;
}
.artwork-share { padding-top: 28px; padding-bottom: 120px; }
.artwork-share-wrap { max-width: 36rem; }
.artwork-card {
  background: #fff;
  border-radius: 22px;
  overflow: hidden;
}
.artwork-cover {
  margin: 0;
  background: #111;
  aspect-ratio: 1;
}
.artwork-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.artwork-body { padding: 24px 24px 8px; }
.artwork-creator {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.artwork-creator span {
  display: block;
  color: var(--muted);
  font-size: 13px;
}
.artwork-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  background: #eee;
}
.artwork-share h1 {
  font-size: 28px;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.artwork-desc { color: var(--muted); margin: 0 0 16px; }
.artwork-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  padding: 0;
  margin: 0 0 12px;
  list-style: none;
  color: var(--muted);
  font-size: 14px;
}
.artwork-ugc {
  color: var(--muted);
  font-size: 13px;
  margin: 16px 0 0;
}
.artwork-missing { padding: 32px 24px; }
.artwork-home-wrap {
  margin: 20px 0 0;
  text-align: center;
}
.artwork-home { color: var(--muted); }

.app-open-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  padding: 10px 16px calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, 0.92);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.app-open-bar-button {
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(36rem, 100%);
  margin: 0 auto;
  border: 0;
  background: transparent;
  padding: 0;
  text-align: left;
  font: inherit;
  color: inherit;
  cursor: pointer;
}
.app-open-icon {
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  object-fit: cover;
  background: #111;
}
.app-open-copy {
  min-width: 0;
  flex: 1;
}
.app-open-copy strong,
.app-open-copy small {
  display: block;
}
.app-open-copy strong {
  font-size: 15px;
  font-weight: 600;
}
.app-open-copy small {
  color: var(--muted);
  font-size: 12px;
  margin-top: 2px;
}
.app-open-cta {
  flex: 0 0 auto;
  background: var(--blue);
  color: #fff;
  border-radius: 980px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 600;
}

.pixluna-home {
  background: #000;
  color: #f5f7fb;
  padding: 28px 0 52px;
}

.pixluna-shell {
  width: min(1440px, calc(100% - 28px));
  margin: 0 auto;
}

.mosaic-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
    linear-gradient(180deg, #0c0f18 0%, #05070d 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 20px 80px rgba(0, 0, 0, 0.28);
}

.mosaic-card img {
  display: block;
  width: 100%;
}

.card-head {
  position: relative;
  z-index: 2;
}

.card-kicker,
.hero-brand {
  margin: 0 0 14px;
  color: #9ba6ff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.mosaic-card h2,
.mosaic-card h1 {
  margin: 0;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.mosaic-card--hero {
  min-height: 760px;
  padding: 54px 48px 28px;
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 12px 20px;
  background: #000;
  box-shadow: none;
}

.hero-copy {
  align-self: center;
  padding-top: 8px;
  max-width: 540px;
}

.hero-copy h1 {
  font-size: clamp(52px, 6.6vw, 108px);
  color: #fff;
}

.hero-canvas {
  background: linear-gradient(90deg, #ff5ad8 0%, #8b6cff 46%, #3ecbff 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-lead {
  margin: 22px 0 0;
  max-width: 26rem;
  color: #c5cad8;
  font-size: clamp(18px, 1.7vw, 26px);
  line-height: 1.3;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.btn-watch,
.hero-play {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  cursor: pointer;
  color: #fff;
  font: inherit;
  font-weight: 600;
}

.btn-watch {
  min-height: 48px;
  padding: 12px 18px;
  border-radius: 980px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.btn-watch:hover,
.hero-play:hover {
  color: #fff;
}

.btn-watch-icon,
.hero-play-icon {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: currentColor;
  flex: 0 0 auto;
  clip-path: polygon(32% 18%, 82% 50%, 32% 82%);
}

.hero-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  min-width: 132px;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 980px;
  background: rgba(8, 10, 16, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(10px);
}

.hero-play-icon {
  width: 16px;
  height: 16px;
}

.btn-ghost--dark {
  border-color: rgba(255, 255, 255, 0.18);
  color: #f5f7fb;
}

.btn-ghost--dark:hover {
  border-color: rgba(255, 255, 255, 0.38);
  color: #fff;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.hero-visual img {
  width: min(100%, 720px);
  max-height: 620px;
  object-fit: contain;
  object-position: right bottom;
  filter: drop-shadow(0 28px 60px rgba(0, 0, 0, 0.45));
}

.hero-feats {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
  margin: 8px 0 0;
  padding: 22px 8px 8px;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-feats li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  text-align: center;
}

.hero-feats img,
.hero-feat-icon {
  width: 40px;
  height: 40px;
}

.hero-feat-icon {
  display: grid;
  place-items: center;
  color: #d7c7ff;
}

.hero-feat-icon svg {
  width: 40px;
  height: 40px;
  display: block;
}

.hero-feats span {
  max-width: 12.5rem;
  color: #e8ecf8;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.3;
}

.home-mood,
.home-app,
.home-offon,
.home-facts,
.home-cta {
  margin-top: 18px;
}

.home-mood,
.home-app,
.home-offon,
.home-cta,
.home-facts article {
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: #050508;
}

.home-mood {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  grid-template-rows: 1fr auto;
  grid-template-areas:
    "copy frame"
    "thumbs frame";
  gap: 0;
  min-height: 640px;
  overflow: hidden;
  padding: 0;
}

.home-mood-copy,
.home-mood-thumbs {
  position: relative;
  z-index: 2;
  background: linear-gradient(90deg, #050508 0%, #050508 78%, rgba(5, 5, 8, 0));
}

.home-mood-copy {
  grid-area: copy;
  align-self: end;
  padding: 36px 24px 12px 32px;
}

.home-mood h2,
.home-app h2,
.home-offon h2,
.home-cta h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(34px, 4vw, 58px);
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.home-mood-lead,
.home-facts p,
.home-cta p {
  margin: 16px 0 0;
  max-width: 28rem;
  color: #b8bfd4;
  font-size: 17px;
  line-height: 1.5;
}

.home-mood-frame {
  grid-area: 1 / 2 / -1 / -1;
  position: relative;
  min-height: 640px;
  background: #050508;
}

.home-mood-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, #050508 0%, rgba(5, 5, 8, 0.72) 16%, rgba(5, 5, 8, 0) 42%);
}

.home-mood-frame img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 40%;
}

.home-mood-thumbs {
  grid-area: thumbs;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  align-content: start;
  padding: 12px 24px 28px 32px;
}

.home-mood-thumb {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 44px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  color: #dce2f8;
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.home-mood-thumb img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 42%;
  border-radius: 12px;
}

.home-mood-thumb span {
  padding: 0 2px 2px;
  font-size: 13px;
  font-weight: 600;
}

.home-mood-thumb:hover,
.home-mood-thumb:focus-visible {
  border-color: rgba(255, 90, 216, 0.7);
}

.home-mood-thumb.is-active {
  border-color: #ff5ad8;
  box-shadow: 0 0 0 1px #ff5ad8;
}

.home-app {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(0, 1.3fr);
  gap: 16px 20px;
  align-items: center;
  padding: 32px 32px 28px;
  overflow: hidden;
}

.home-app-copy {
  max-width: 26rem;
  padding: 0 8px 0 0;
}

.home-app-copy h2 {
  min-height: 2.2em;
}

.home-app-copy .home-mood-lead {
  min-height: 4.6em;
}

.home-app-copy .btn-accent {
  margin-top: 22px;
  min-height: 48px;
  padding: 12px 22px;
    font-size: 16px;
  font-weight: 600;
}

.home-app-stage {
  min-width: 0;
}

.home-app-cluster {
  position: relative;
  height: 540px;
}

.home-app-phone {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 230px;
  height: 430px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  transform-origin: center center;
  transition: transform 0.45s ease, opacity 0.45s ease, filter 0.45s ease;
}

.home-app-phone img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: 32px;
  border: 1px solid rgba(180, 140, 255, 0.28);
  box-shadow:
    0 0 0 8px #121218,
    0 22px 48px rgba(0, 0, 0, 0.45);
}

.home-app-phone.is-center {
  z-index: 3;
  width: 300px;
  height: 520px;
  transform: translate(-50%, -50%) rotate(0deg);
  filter: none;
}

.home-app-phone.is-left {
  z-index: 1;
  opacity: 0.58;
  filter: saturate(0.8);
  transform: translate(-108%, -46%) rotate(-12deg) scale(0.86);
}

.home-app-phone.is-right {
  z-index: 1;
  opacity: 0.58;
  filter: saturate(0.8);
  transform: translate(8%, -46%) rotate(12deg) scale(0.86);
}

.home-app-phone.is-away {
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.7);
}

.home-app-phone.is-left:hover,
.home-app-phone.is-right:hover,
.home-app-phone.is-left:focus-visible,
.home-app-phone.is-right:focus-visible {
  opacity: 0.88;
}

.home-app-pills {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}

.home-app-pill {
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 980px;
  background: rgba(255, 255, 255, 0.04);
  color: #c5cad8;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.home-app-pill.is-active {
  border-color: #8b6cff;
  background: rgba(139, 108, 255, 0.18);
  color: #fff;
}

.home-offon {
  padding: 36px 32px 28px;
}

.home-offon-pair {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin-top: 28px;
}

.home-offon-pair figure {
  margin: 0;
  padding: 16px 16px 14px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
}

.home-offon-off img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 40%;
  border-radius: 18px;
  filter: brightness(0.78) saturate(0.82);
}

.home-offon-on {
  --offon-tint: 255, 36, 36;
  background:
    radial-gradient(ellipse at 50% 38%, rgba(var(--offon-tint), 0.22), transparent 58%),
    rgba(255, 255, 255, 0.04);
}

.home-offon-glow {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  border-radius: 18px;
  isolation: isolate;
  animation: home-offon-pulse 3.2s ease-in-out infinite;
}

.home-offon-glow img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.home-offon-led {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  mix-blend-mode: screen;
  filter: saturate(1.25) brightness(1.08);
  opacity: 1;
  transition: opacity 0.2s ease;
}

.home-offon-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
}

.home-offon-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.28);
  cursor: pointer;
}

.home-offon-dots button.is-active {
  width: 20px;
  background: rgb(var(--offon-tint));
}

.home-offon-pair figcaption {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.home-offon-live {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgb(var(--offon-tint));
  box-shadow: 0 0 0 0 rgba(var(--offon-tint), 0.7);
  animation: home-offon-live 1.8s ease-out infinite;
}

@keyframes home-offon-pulse {
  0%,
  100% {
    box-shadow: 0 0 18px rgba(0, 180, 255, 0.12);
    filter: brightness(1);
  }
  50% {
    box-shadow: 0 0 42px rgba(var(--offon-tint), 0.32);
    filter: brightness(1.08);
  }
}

@keyframes home-offon-live {
  0% {
    box-shadow: 0 0 0 0 rgba(var(--offon-tint), 0.65);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(var(--offon-tint), 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(var(--offon-tint), 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-offon-glow,
  .home-offon-live {
    animation: none;
  }
}

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

.home-facts article {
  padding: 22px 16px 20px;
}

.home-facts h3 {
  margin: 0;
  color: #fff;
  font-size: clamp(22px, 2.2vw, 36px);
  letter-spacing: -0.06em;
  line-height: 1.05;
}

.home-facts p {
  max-width: none;
  font-size: 14px;
  line-height: 1.45;
}

.home-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 36px 32px;
}

.home-cta-copy {
  text-align: center;
}

.home-cta-copy p {
  margin-left: auto;
  margin-right: auto;
}

.home-cta .btn-accent {
  margin-top: 22px;
  min-height: 48px;
  padding: 12px 22px;
  font-size: 16px;
  font-weight: 600;
}

.home-cta-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.home-cta-strip img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 30%;
  border-radius: 22px;
}

@media (max-width: 1100px) {
  .mosaic-card--hero {
    min-height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-visual {
    min-height: 0;
    aspect-ratio: 16 / 11;
    max-height: 420px;
    justify-content: center;
  }

  .hero-visual img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    object-position: 68% 55%;
  }

  .hero-feats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 18px;
  }

  .home-mood {
    grid-template-columns: 1fr;
    grid-template-rows: auto 420px auto;
    grid-template-areas:
      "copy"
      "frame"
      "thumbs";
    min-height: 0;
  }

  .home-mood-copy,
  .home-mood-thumbs {
    background: #050508;
  }

  .home-mood-copy {
    padding: 28px 24px 8px;
  }

  .home-mood-thumbs {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    padding: 16px 24px 24px;
  }

  .home-mood-frame {
    grid-area: frame;
    min-height: 420px;
  }

  .home-mood-frame::after {
    background: linear-gradient(180deg, #050508 0%, rgba(5, 5, 8, 0) 22%);
  }

  .home-cta {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .pixluna-home {
    padding-top: 16px;
  }

  .pixluna-shell {
    width: min(100%, calc(100% - 16px));
  }

  .mosaic-card--hero {
    grid-column: span 1;
    min-height: auto;
    border-radius: 28px;
    padding: 24px 20px 18px;
  }

  .hero-copy h1,
  .home-mood h2,
  .home-app h2,
  .home-offon h2,
  .home-cta h2 {
    font-size: clamp(36px, 11vw, 56px);
  }

  .hero-actions {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .hero-actions > * {
    flex: 1 1 100%;
    min-height: 48px;
  }

  .hero-play {
    min-width: 148px;
    min-height: 52px;
  }

  .hero-visual {
    min-height: 0;
    max-height: 260px;
    aspect-ratio: 1.05;
    margin: 4px 0 0;
  }

  .hero-visual img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: cover;
    object-position: 70% 58%;
  }

  .hero-feats {
    gap: 14px 6px;
    margin-top: 4px;
    padding: 16px 0 2px;
  }

  .hero-feats img,
  .hero-feat-icon,
  .hero-feat-icon svg {
    width: 36px;
    height: 36px;
  }

  .hero-feats span {
    font-size: 12px;
  }

  .home-offon,
  .home-cta {
    padding: 24px 18px 20px;
    border-radius: 28px;
  }

  .home-mood,
  .home-app {
    border-radius: 28px;
  }

  .home-app {
    padding: 24px 18px 20px;
    grid-template-columns: 1fr;
  }

  .home-app-copy {
    max-width: none;
    padding: 0;
  }

  .home-app-cluster {
    height: 440px;
  }

  .home-app-phone.is-left,
  .home-app-phone.is-right {
    display: none;
  }

  .home-app-phone.is-center {
    width: min(260px, 72%);
    height: 420px;
  }

  .home-mood-copy {
    padding: 24px 18px 8px;
  }

  .home-mood-frame {
    min-height: 320px;
  }

  .home-mood-thumbs {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding: 12px 18px 20px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .home-mood-thumb {
    flex: 0 0 92px;
    scroll-snap-align: start;
  }

  .home-offon-pair {
    grid-template-columns: 1fr;
  }

  .home-facts {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .home-facts article {
    flex: 0 0 min(220px, 72vw);
    scroll-snap-align: start;
    border-radius: 28px;
    padding: 24px 20px;
  }

  .home-cta-strip {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .home-cta-strip img {
    flex: 0 0 42%;
    scroll-snap-align: start;
  }
}

body.is-video-open {
  overflow: hidden;
}

.video-sheet[hidden] {
  display: none !important;
}

.video-sheet {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  flex-direction: column;
  background: #000;
  padding:
    max(12px, env(safe-area-inset-top))
    max(12px, env(safe-area-inset-right))
    max(12px, env(safe-area-inset-bottom))
    max(12px, env(safe-area-inset-left));
}

.video-sheet-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 48px;
  padding: 4px 4px 12px;
}

.video-sheet-bar p {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
}

.video-sheet-close {
  min-height: 44px;
  min-width: 72px;
  padding: 8px 14px;
  border: 0;
  border-radius: 980px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font: inherit;
  font-weight: 600;
}

.video-sheet-stage {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
}

.video-sheet video {
  display: block;
  width: 100%;
  height: auto;
  max-height: calc(100dvh - 96px);
  background: #000;
}

@media (min-width: 761px) {
  .video-sheet {
    background: rgba(0, 0, 0, 0.88);
    align-items: center;
    justify-content: center;
    padding: 32px;
  }

  .video-sheet-bar,
  .video-sheet-stage {
    width: min(920px, 100%);
  }

  .video-sheet-stage {
    flex: 0 0 auto;
  }

  .video-sheet video {
    max-height: min(72vh, 560px);
    border-radius: 16px;
  }
}

.pdp-local-nav {
  background: rgba(22, 22, 23, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.pdp-local-nav strong,
.pdp-local-nav .local-nav-links a {
  color: #f5f5f7;
}

.pdp-local-inner {
  width: min(1120px, calc(100% - 40px));
}

.pdp-local-nav .btn-buy {
  min-height: 28px;
  padding: 4px 14px;
  font-size: 12px;
}

.pdp {
  background: #000;
  color: #f5f5f7;
}

.pdp-stage {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 56px 0 32px;
}

.pdp-stage-copy h1 {
  margin: 0;
  font-size: clamp(40px, 6vw, 72px);
  letter-spacing: -0.045em;
  line-height: 1.02;
  font-weight: 600;
}

.pdp-kicker {
  margin: 0 0 10px;
  color: #86868b;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
}

.pdp-tagline {
  margin: 10px 0 0;
  color: #f5f5f7;
  font-size: clamp(22px, 3vw, 32px);
  letter-spacing: -0.03em;
}

.pdp-lead {
  margin: 12px 0 0;
  max-width: 32rem;
  color: #86868b;
  font-size: 17px;
  line-height: 1.47;
}

.pdp-split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 28px;
  align-items: start;
  margin-top: 36px;
}

.pdp-gallery-frame {
  overflow: hidden;
  border-radius: 28px;
  background: #111;
}

.pdp-gallery-frame img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center 40%;
}

.pdp-thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.pdp-thumb {
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  overflow: hidden;
  background: #111;
  cursor: pointer;
}

.pdp-thumb.is-active {
  border-color: #0071e3;
  box-shadow: 0 0 0 1px #0071e3;
}

.pdp-thumb img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center 40%;
}

.pdp-buy {
  position: sticky;
  top: calc(var(--nav-h) + 64px);
}

.pdp-buy-card {
  padding: 28px 24px 24px;
  border-radius: 24px;
  background: #1d1d1f;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.pdp-price {
  margin: 0 0 22px;
  font-size: 21px;
  letter-spacing: -0.02em;
}

.pdp-buy-card h2 {
  margin: 0 0 12px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.pdp-fit {
  margin: 0 0 20px;
  color: #86868b;
  font-size: 13px;
  line-height: 1.4;
}

.pdp .option-card {
  background: #000;
  border-color: rgba(255, 255, 255, 0.14);
  color: #f5f5f7;
}

.pdp .option-card:has(input:checked) {
  border-color: #0071e3;
  box-shadow: 0 0 0 1px #0071e3;
}

.pdp .option-price,
.pdp .option-meta {
  color: #86868b;
}

.pdp-color-card {
  grid-template-columns: 22px 1fr auto;
  align-items: center;
}

.pdp-color-card .option-title {
  grid-column: 2;
}

.pdp-color-card .option-meta {
  grid-column: 2;
}

.pdp-color-card .option-price {
  grid-column: 3;
  grid-row: 1 / span 2;
}

.pdp-swatch {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  grid-row: 1 / span 2;
}

.pdp-qty {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 8px 0 20px;
}

.pdp-qty label {
  margin: 0;
  font-size: 14px;
}

.pdp-qty input {
  width: 5.5rem;
  min-height: 44px;
  padding: 0 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: #000;
  color: #f5f5f7;
}

.pdp-add {
  width: 100%;
  min-height: 48px;
  font-size: 17px;
}

.pdp-chapter {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 24px;
  text-align: center;
}

.pdp-chapter h2 {
  margin: 28px 0 0;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.04em;
  font-weight: 600;
}

.pdp-chapter > p {
  margin: 14px auto 0;
  max-width: 34rem;
  color: #86868b;
  font-size: 19px;
  line-height: 1.47;
}

.pdp-chapter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.pdp-chapter-grid figure {
  margin: 0;
}

.pdp-chapter-grid img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  object-position: center 40%;
  border-radius: 24px;
}

.pdp-chapter-grid figcaption {
  margin-top: 10px;
  color: #f5f5f7;
  font-weight: 600;
}

.pdp-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 36px 0 28px;
  padding: 0;
  list-style: none;
  counter-reset: pdp-step;
}

.pdp-steps li {
  position: relative;
  padding: 22px 18px 18px;
  border-radius: 18px;
  background: #1d1d1f;
  color: #f5f5f7;
  font-size: 17px;
  letter-spacing: -0.02em;
  text-align: left;
  counter-increment: pdp-step;
}

.pdp-steps li::before {
  content: counter(pdp-step);
  display: block;
  margin-bottom: 10px;
  color: #86868b;
  font-size: 13px;
}

.pdp-specs,
.pdp-box {
  width: min(820px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 24px;
}

.pdp-specs h2,
.pdp-box h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 48px);
  letter-spacing: -0.04em;
  font-weight: 600;
}

.pdp-specs dl {
  margin: 36px 0 0;
}

.pdp-specs dl > div {
  display: grid;
  grid-template-columns: minmax(120px, 0.4fr) minmax(0, 1fr);
  gap: 16px;
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.pdp-specs dt {
  color: #f5f5f7;
  font-weight: 600;
}

.pdp-specs dd {
  margin: 0;
  color: #86868b;
}

.pdp-box {
  padding-bottom: 96px;
}

.pdp-box p:last-child {
  margin: 16px 0 0;
  color: #86868b;
  font-size: 19px;
}

@media (max-width: 900px) {
  .pdp-split,
  .pdp-chapter-grid,
  .pdp-steps {
    grid-template-columns: 1fr;
  }

  .pdp-buy {
    position: static;
  }

  .pdp-stage {
    padding-top: 32px;
  }
}

.site-page {
  background: #000;
  color: #f5f5f7;
}

.site-page a:not(.btn-accent) {
  color: #2997ff;
}

.site-page-hero,
.site-page-block,
.site-page-close {
  width: min(720px, calc(100% - 40px));
  margin: 0 auto;
}

.site-page-hero {
  padding: 72px 0 12px;
}

.site-page-hero h1 {
  margin: 0;
  font-size: clamp(40px, 6vw, 64px);
  letter-spacing: -0.04em;
  line-height: 1.05;
  font-weight: 600;
}

.site-page-hero p {
  margin: 16px 0 0;
  max-width: 34rem;
  color: #86868b;
  font-size: 21px;
  line-height: 1.47;
}

.site-help {
  width: min(1120px, calc(100% - 40px));
  margin: 40px auto 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.site-help article {
  padding: 28px 24px 24px;
  border-radius: 22px;
  background: #1d1d1f;
}

.site-help h2 {
  margin: 0;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.site-help p {
  margin: 10px 0 0;
  color: #86868b;
  font-size: 15px;
  line-height: 1.47;
}

.site-page-block {
  padding: 56px 0 8px;
}

.site-page-block h2,
.site-page-close h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 40px);
  letter-spacing: -0.04em;
  font-weight: 600;
}

.site-page-block p,
.site-page-close p {
  margin: 14px 0 0;
  max-width: 34rem;
  color: #86868b;
  font-size: 19px;
  line-height: 1.47;
}

.site-page-close {
  padding: 48px 0 96px;
}

.site-page-close .btn-accent {
  margin-top: 24px;
}

.site-page-mail {
  margin-top: 20px;
  font-size: 15px;
}

.site-page .site-page-mail a {
  color: #86868b;
}

.site-page-mail a:hover {
  color: #f5f5f7;
}

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

  .site-page-hero {
    padding-top: 40px;
  }
}
