:root {
  --seekcod-red: #dd403c;
  --seekcod-red-dark: #a92825;
  --seekcod-ink: #151515;
  --seekcod-muted: #66625d;
  --seekcod-line: #e7e2de;
  --seekcod-header-height: 92px;
}

body.seekcod-storefront {
  margin: 0;
  overflow-x: clip;
  background: #fff;
  color: var(--seekcod-ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.seekcod-storefront img {
  max-width: 100%;
}

.seekcod-storefront button,
.seekcod-storefront input,
.seekcod-storefront select,
.seekcod-storefront textarea {
  font: inherit;
}

.seekcod-site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  width: 100%;
  min-height: var(--seekcod-header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 12px clamp(18px, 4vw, 50px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  color: var(--seekcod-ink);
}

.admin-bar .seekcod-site-header {
  top: 32px;
}

.seekcod-brand {
  display: inline-grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 900;
}

.seekcod-brand img {
  width: 66px;
  height: 66px;
  object-fit: contain;
  filter: invert(1) contrast(1.18);
}

.seekcod-top-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(18px, 3vw, 36px);
  color: var(--seekcod-ink);
  font-size: clamp(15px, 1.5vw, 19px);
  font-weight: 780;
}

.seekcod-top-nav a {
  color: inherit;
  text-decoration: none;
}

.seekcod-top-nav a:hover,
.seekcod-top-nav a:focus-visible,
.seekcod-top-nav a[aria-current="page"] {
  color: var(--seekcod-red);
}

.seekcod-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.seekcod-cart-link {
  position: relative;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--seekcod-ink);
  text-decoration: none;
}

.seekcod-cart-link svg {
  width: 31px;
  height: 31px;
  overflow: visible;
}

.seekcod-cart-link path {
  fill: none;
  stroke: currentColor;
  stroke-width: 2.25;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.seekcod-cart-count {
  position: absolute;
  top: 2px;
  right: -1px;
  min-width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--seekcod-red);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  box-shadow: 0 0 0 2px #fff;
}

.seekcod-cart-count[data-count="0"] {
  display: none;
}

.seekcod-menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--seekcod-ink);
  cursor: pointer;
}

.seekcod-menu-toggle span {
  grid-area: 1 / 1;
  width: 27px;
  height: 3px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 160ms ease;
}

.seekcod-menu-toggle span:nth-child(1) {
  transform: translateY(-9px);
}

.seekcod-menu-toggle span:nth-child(3) {
  transform: translateY(9px);
}

.seekcod-site-header.is-menu-open .seekcod-menu-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

.seekcod-site-header.is-menu-open .seekcod-menu-toggle span:nth-child(2) {
  opacity: 0;
}

.seekcod-site-header.is-menu-open .seekcod-menu-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

.seekcod-site-footer {
  padding: clamp(36px, 5vw, 60px) 22px;
  background: var(--seekcod-ink);
  color: #fff;
}

.seekcod-footer-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(300px, 1fr);
  gap: 28px clamp(30px, 5vw, 72px);
}

.seekcod-footer-brand {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: center;
}

.seekcod-footer-brand img {
  width: 66px;
  height: 66px;
  object-fit: contain;
}

.seekcod-footer-brand strong {
  display: block;
  color: #fff;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
}

.seekcod-footer-brand p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

.seekcod-footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-content: start;
  gap: 12px 20px;
}

.seekcod-footer-links a {
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
}

.seekcod-footer-links a:hover,
.seekcod-footer-links a:focus-visible {
  color: #fff;
}

.seekcod-footer-note {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 12px 24px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  font-weight: 750;
}

.seekcod-home-main {
  min-height: calc(100svh - var(--seekcod-header-height));
}

.seekcod-home-hero {
  position: relative;
  min-height: calc(100svh - var(--seekcod-header-height));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  place-items: center;
  padding: clamp(46px, 6vw, 86px) clamp(44px, 7vw, 112px) clamp(44px, 5vw, 70px);
  overflow: hidden;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.035) 0 1px, transparent 1px 8px),
    var(--seekcod-red);
  color: #fff;
  isolation: isolate;
}

.seekcod-home-frame {
  position: absolute;
  inset: 26px;
  pointer-events: none;
}

.seekcod-home-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.seekcod-home-copy {
  position: relative;
  z-index: 2;
  text-align: center;
}

.seekcod-home-copy h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(46px, 5.2vw, 76px);
  line-height: 0.94;
  font-weight: 950;
}

.seekcod-home-copy p {
  width: min(600px, 100%);
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(14px, 1.25vw, 18px);
  line-height: 1.6;
  font-weight: 760;
}

.seekcod-home-stage {
  position: relative;
  z-index: 2;
  width: min(1500px, 100%);
  display: grid;
  grid-template-columns: 0.72fr 0.72fr minmax(250px, 1.08fr) 0.72fr auto;
  align-items: center;
  gap: clamp(12px, 2vw, 34px);
}

.seekcod-home-mark {
  width: 100%;
  max-height: 320px;
  object-fit: contain;
  filter: drop-shadow(0 24px 38px rgba(106, 20, 17, 0.15));
  animation: seekcodMarkFloat 5.4s ease-in-out infinite;
}

.seekcod-home-walker {
  --seekcod-walker-pose: none;
  width: 100%;
  max-height: 185px;
  object-fit: contain;
  transform-origin: 50% 100%;
  animation: seekcodWalkerStep 2.1s ease-in-out infinite;
}

.seekcod-home-walker-b {
  --seekcod-walker-pose: scaleX(-1);
  animation-delay: -0.7s;
}

.seekcod-home-walker-a,
.seekcod-home-walker-c {
  animation-name: seekcodWalkerFloat;
  animation-duration: 3.2s;
}

.seekcod-home-walker-a {
  --seekcod-walker-pose: rotate(-1.5deg);
}

.seekcod-home-walker-c {
  --seekcod-walker-pose: rotate(1.5deg);
  animation-delay: -1.6s;
}

.seekcod-home-go {
  position: relative;
  z-index: 4;
  top: auto;
  right: auto;
  justify-self: end;
  display: inline-grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 14px;
  color: #fff;
  text-decoration: none;
}

.seekcod-home-go span {
  font-size: clamp(42px, 4.5vw, 68px);
  font-weight: 950;
  line-height: 0.9;
}

.seekcod-home-go svg {
  width: clamp(70px, 8vw, 118px);
}

.seekcod-home-go path {
  fill: none;
  stroke: currentColor;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.seekcod-home-go:hover svg,
.seekcod-home-go:focus-visible svg {
  translate: 8px 0;
}

.seekcod-home-closing {
  position: relative;
  z-index: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(16px, 1.5vw, 22px);
  font-weight: 850;
}

.seekcod-language-toggle {
  position: absolute;
  top: 24px;
  left: max(20px, calc((100vw - 1180px) / 2));
  z-index: 20;
  min-width: 42px;
  min-height: 28px;
  padding: 0 7px;
  border: 1px solid rgba(21, 21, 21, 0.28);
  border-radius: 4px;
  background: #fff;
  color: var(--seekcod-ink);
  cursor: pointer;
  font-size: 10px;
  font-weight: 900;
}

.seekcod-games-main {
  position: relative;
  min-height: 100svh;
  padding: clamp(74px, 8vw, 112px) 22px;
  background: #fff;
}

.seekcod-games-heading {
  width: min(820px, 100%);
  margin: 0 auto;
  text-align: center;
}

.seekcod-kicker {
  margin: 0 0 14px;
  color: var(--seekcod-red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.seekcod-games-heading h1 {
  margin: 0;
  color: var(--seekcod-ink);
  font-size: clamp(64px, 10vw, 132px);
  line-height: 0.88;
}

.seekcod-games-heading > p:last-child {
  width: min(640px, 100%);
  margin: 24px auto 0;
  color: var(--seekcod-muted);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.58;
}

.seekcod-games-list {
  width: min(1180px, 100%);
  margin: clamp(54px, 7vw, 88px) auto 0;
  display: grid;
  gap: 18px;
}

.seekcod-game-card {
  display: grid;
  grid-template-columns: minmax(270px, 0.64fr) minmax(0, 1fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
  padding: clamp(18px, 3vw, 32px);
  border: 1px solid var(--seekcod-line);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 22px 56px rgba(18, 18, 18, 0.08);
}

.seekcod-game-card figure {
  width: min(100%, 420px);
  justify-self: center;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(18, 18, 18, 0.14);
  border-radius: 4px;
  background: #fff;
}

.seekcod-game-card figure img {
  width: 100%;
  aspect-ratio: 0.75;
  display: block;
  object-fit: cover;
}

.seekcod-game-card-jargo figure img {
  object-fit: contain;
}

.seekcod-game-copy {
  text-align: center;
}

.seekcod-game-copy h2 {
  margin: 0;
  color: var(--seekcod-ink);
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.9;
}

.seekcod-game-card-jargo h2 {
  font-size: clamp(34px, 4.7vw, 64px);
  line-height: 0.96;
}

.seekcod-jp-title {
  margin: 14px 0 0;
  color: var(--seekcod-red);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 880;
}

.seekcod-game-copy > p:not(.seekcod-kicker):not(.seekcod-jp-title) {
  width: min(600px, 100%);
  margin: 24px auto 0;
  color: var(--seekcod-muted);
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.58;
}

.seekcod-game-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.seekcod-game-tags span {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid rgba(221, 64, 60, 0.32);
  border-radius: 999px;
  background: rgba(221, 64, 60, 0.07);
  color: var(--seekcod-red-dark);
  font-size: 13px;
  font-weight: 850;
}

.seekcod-details-link,
.seekcod-coming-soon {
  min-width: 160px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  padding: 0 24px;
  border: 2px solid var(--seekcod-ink);
  border-radius: 4px;
  background: var(--seekcod-ink);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
}

.seekcod-details-link:hover,
.seekcod-details-link:focus-visible {
  border-color: var(--seekcod-red);
  background: var(--seekcod-red);
}

.seekcod-coming-soon {
  border-color: var(--seekcod-line);
  background: #fff;
  color: var(--seekcod-muted);
}

.seekcod-commerce-main {
  min-height: calc(100svh - var(--seekcod-header-height));
  background: #fff;
}

.seekcod-commerce-heading {
  padding: clamp(54px, 7vw, 92px) 22px;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.04) 0 1px, transparent 1px 8px),
    var(--seekcod-red);
  color: #fff;
  text-align: center;
}

.seekcod-commerce-heading .seekcod-kicker {
  color: rgba(255, 255, 255, 0.74);
}

.seekcod-commerce-heading h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(54px, 8vw, 108px);
  line-height: 0.88;
}

.seekcod-commerce-heading > p:last-child {
  width: min(680px, 100%);
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.55;
}

.seekcod-commerce-content {
  width: min(1200px, calc(100% - 44px));
  margin: 0 auto;
  padding: clamp(50px, 7vw, 88px) 0;
}

.seekcod-commerce-content > .wp-block-heading:first-child {
  display: none;
}

.seekcod-commerce-content .wc-block-components-notice-banner {
  border: 1px solid var(--seekcod-line);
  border-left: 5px solid var(--seekcod-red);
  border-radius: 4px;
  background: #fff;
}

.seekcod-commerce-content .wc-block-components-text-input input,
.seekcod-commerce-content .wc-block-components-combobox .wc-block-components-combobox-control input,
.seekcod-commerce-content .wc-block-components-address-form__address_2-toggle {
  border: 1px solid rgba(21, 21, 21, 0.28) !important;
  border-radius: 4px !important;
  background: #fff !important;
  box-shadow: none !important;
}

.seekcod-commerce-content .wc-block-components-text-input input:focus,
.seekcod-commerce-content .wc-block-components-combobox .wc-block-components-combobox-control input:focus {
  border-color: var(--seekcod-red) !important;
  box-shadow: 0 0 0 3px rgba(221, 64, 60, 0.15) !important;
}

.seekcod-commerce-content .wc-block-cart-item__quantity {
  display: flex !important;
  align-items: center;
  gap: 10px;
}

.seekcod-commerce-content .wc-block-components-quantity-selector {
  width: 134px !important;
  flex: 0 0 134px;
  margin: 0 !important;
}

.seekcod-commerce-content .wc-block-cart-item__remove-link {
  position: static !important;
  width: 34px !important;
  height: 34px !important;
  flex: 0 0 34px;
  display: grid !important;
  place-items: center;
  margin: 0 !important;
  padding: 5px !important;
  border: 1px solid var(--seekcod-line) !important;
  border-radius: 4px !important;
  background: #fff !important;
  color: var(--seekcod-ink) !important;
}

.seekcod-commerce-content .wc-block-cart-item__remove-link:hover {
  border-color: var(--seekcod-red) !important;
  color: var(--seekcod-red) !important;
}

.seekcod-commerce-content .wc-block-cart__submit-button,
.seekcod-commerce-content .wc-block-components-checkout-place-order-button {
  min-height: 58px !important;
  border: 2px solid var(--seekcod-red) !important;
  border-radius: 4px !important;
  background: var(--seekcod-red) !important;
  color: #fff !important;
  font-weight: 900 !important;
}

.seekcod-commerce-content .wc-block-cart__submit-button:hover,
.seekcod-commerce-content .wc-block-components-checkout-place-order-button:hover {
  border-color: var(--seekcod-ink) !important;
  background: var(--seekcod-ink) !important;
}

.seekcod-commerce-content .wc-block-components-sidebar,
.seekcod-commerce-content .wp-block-woocommerce-checkout-order-summary-block {
  border-color: var(--seekcod-line) !important;
  border-radius: 4px !important;
}

.seekcod-commerce-content .wc-block-components-totals-wrapper {
  border-color: var(--seekcod-line) !important;
}

.seekcod-commerce-content .wc-block-components-express-payment__event-buttons {
  gap: 10px !important;
}

.seekcod-commerce-content .wc-block-components-express-payment__event-buttons > li {
  min-height: 50px;
}

.seekcod-contact-main {
  width: min(1180px, calc(100% - 44px));
  min-height: calc(100svh - var(--seekcod-header-height));
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.75fr);
  align-items: center;
  gap: clamp(38px, 7vw, 94px);
  margin: 0 auto;
  padding: clamp(58px, 8vw, 106px) 0;
  background: #fff;
}

.seekcod-contact-copy .seekcod-kicker {
  color: var(--seekcod-red);
}

.seekcod-contact-copy h1 {
  margin: 12px 0 0;
  font-size: clamp(62px, 9vw, 116px);
  line-height: 0.88;
}

.seekcod-contact-copy > p:not(.seekcod-kicker) {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--seekcod-muted);
  font-size: clamp(16px, 1.7vw, 21px);
  line-height: 1.62;
}

.seekcod-contact-copy > p[lang="ja"] {
  margin-top: 12px;
  font-size: 16px;
}

.seekcod-contact-details {
  margin: 34px 0 0;
  border-top: 2px solid var(--seekcod-ink);
}

.seekcod-contact-details > div {
  display: grid;
  grid-template-columns: 94px 1fr;
  gap: 18px;
  padding: 17px 0;
  border-bottom: 1px solid var(--seekcod-line);
}

.seekcod-contact-details dt {
  color: var(--seekcod-red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.seekcod-contact-details dd {
  margin: 0;
  color: var(--seekcod-ink);
  font-size: 16px;
  font-weight: 760;
  line-height: 1.4;
}

.seekcod-contact-details a {
  color: inherit;
  text-underline-offset: 3px;
}

.seekcod-contact-form-shell {
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid var(--seekcod-line);
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 22px 60px rgba(21, 21, 21, 0.08);
}

.seekcod-contact-form-content > h1,
.seekcod-contact-form-content > h2,
.seekcod-contact-form-content > p,
.seekcod-contact-form-content > figure {
  display: none;
}

.seekcod-contact-form-content > * > :first-child,
.seekcod-contact-form-content .wp-block-pullquote,
.seekcod-contact-form-content > * > .wp-block-paragraph {
  display: none;
}

.seekcod-contact-form-content .nfd-p-lg,
.seekcod-contact-form-content .has-global-padding {
  padding: 0 !important;
  background: transparent !important;
}

.seekcod-contact-form-content form {
  display: grid;
  gap: 16px;
  margin: 0;
}

.seekcod-contact-form-content .grunion-field-wrap,
.seekcod-contact-form-content label {
  display: grid;
  gap: 7px;
  margin: 0;
}

.seekcod-contact-form-content label,
.seekcod-contact-form-content .grunion-field-label {
  color: var(--seekcod-ink);
  font-size: 13px;
  font-weight: 900;
}

.seekcod-contact-form-content input,
.seekcod-contact-form-content textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid rgba(21, 21, 21, 0.26);
  border-radius: 4px;
  background: #fff;
  color: var(--seekcod-ink);
}

.seekcod-contact-form-content textarea {
  min-height: 160px;
  resize: vertical;
}

.seekcod-contact-form-content input:focus,
.seekcod-contact-form-content textarea:focus {
  outline: 3px solid rgba(221, 64, 60, 0.15);
  border-color: var(--seekcod-red);
}

.seekcod-contact-form-content button[type="submit"] {
  min-height: 54px;
  padding: 0 22px;
  border: 2px solid var(--seekcod-red);
  border-radius: 4px;
  background: var(--seekcod-red);
  color: #fff;
  cursor: pointer;
  font-weight: 900;
}

.seekcod-contact-form-content button[type="submit"]:hover {
  border-color: var(--seekcod-ink);
  background: var(--seekcod-ink);
}

.seekcod-contact-form-content .contact-form__disclaimer,
.seekcod-contact-form-content .grunion-field-checkbox-multiple-wrap {
  color: var(--seekcod-muted);
  font-size: 12px;
  line-height: 1.5;
}

.seekcod-about-main {
  overflow: hidden;
  background: #fff;
}

.seekcod-about-hero {
  position: relative;
  min-height: min(68svh, 760px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--seekcod-ink);
  isolation: isolate;
}

.seekcod-about-hero::after {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(7, 8, 9, 0.38);
  content: "";
}

.seekcod-about-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.seekcod-about-hero-copy {
  position: relative;
  z-index: 2;
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: clamp(42px, 7vw, 88px) 22px;
  color: #fff;
}

.seekcod-about-hero-copy .seekcod-kicker {
  color: rgba(255, 255, 255, 0.76);
}

.seekcod-about-hero-copy h1 {
  margin: 12px 0 0;
  color: #fff;
  font-size: clamp(64px, 10vw, 142px);
  line-height: 0.86;
}

.seekcod-about-hero-copy > p:last-child {
  margin: 24px 0 0;
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 900;
}

.seekcod-about-language-bar {
  border-bottom: 1px solid var(--seekcod-line);
  background: #fff;
}

.seekcod-about-language-bar > div {
  width: min(1180px, 100%);
  min-height: 92px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto;
  padding: 16px 22px;
}

.seekcod-about-language-bar p {
  margin: 0;
  font-size: 22px;
  font-weight: 900;
}

.seekcod-about-language-switch {
  min-width: 250px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 4px;
  border: 2px solid var(--seekcod-ink);
  border-radius: 6px;
}

.seekcod-about-language-switch button {
  min-height: 44px;
  padding: 0 18px;
  border: 0;
  border-radius: 3px;
  background: transparent;
  color: var(--seekcod-ink);
  cursor: pointer;
  font-weight: 900;
}

.seekcod-about-language-switch button[aria-selected="true"] {
  background: var(--seekcod-ink);
  color: #fff;
}

.seekcod-about-panel[hidden] {
  display: none;
}

.seekcod-about-origin {
  padding: clamp(64px, 9vw, 124px) 22px;
  background: #fff;
}

.seekcod-about-origin > div,
.seekcod-about-create > div:first-child {
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: clamp(42px, 8vw, 110px);
  margin: 0 auto;
}

.seekcod-about-origin header > span,
.seekcod-about-create-copy > span {
  color: var(--seekcod-red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.seekcod-about-origin h2 {
  margin: 16px 0 0;
  font-size: clamp(54px, 7vw, 94px);
  line-height: 0.92;
}

.seekcod-about-origin header > p {
  margin: 22px 0 0;
  color: var(--seekcod-red);
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 850;
  line-height: 1.45;
}

.seekcod-about-origin-copy {
  padding-top: 24px;
  color: var(--seekcod-muted);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.7;
}

.seekcod-about-origin-copy p {
  margin: 0 0 24px;
}

.seekcod-about-origin-copy p:last-child {
  margin: 34px 0 0;
  color: var(--seekcod-ink);
  font-size: clamp(22px, 2.7vw, 34px);
  font-weight: 900;
  line-height: 1.35;
}

.seekcod-about-create {
  position: relative;
  overflow: hidden;
  padding: clamp(66px, 8vw, 108px) 22px 118px;
  background: var(--seekcod-ink);
  color: #fff;
}

.seekcod-about-create > div:first-child {
  grid-template-columns: minmax(280px, 0.88fr) minmax(0, 1.12fr);
}

.seekcod-about-create-copy h2 {
  margin: 14px 0 0;
  color: #fff;
  font-size: clamp(48px, 6vw, 82px);
  line-height: 0.95;
}

.seekcod-about-create-copy p {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(16px, 1.8vw, 20px);
  line-height: 1.7;
}

.seekcod-about-values {
  border-top: 2px solid rgba(255, 255, 255, 0.82);
}

.seekcod-about-values > div {
  display: grid;
  grid-template-columns: 50px minmax(130px, 0.58fr) minmax(0, 1fr);
  gap: 14px;
  align-items: baseline;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.seekcod-about-values b {
  color: var(--seekcod-red);
  font-size: 13px;
}

.seekcod-about-values strong {
  font-size: clamp(20px, 2.2vw, 28px);
}

.seekcod-about-values span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
  line-height: 1.5;
}

.seekcod-about-walker-line {
  position: absolute;
  right: 0;
  bottom: 48px;
  left: 0;
  height: 2px;
  border-top: 2px dashed rgba(255, 255, 255, 0.32);
}

.seekcod-about-walker-line img {
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 62px;
  height: 82px;
  object-fit: contain;
  animation: seekcodAboutWalk 18s linear infinite;
}

.seekcod-about-manifesto {
  padding: clamp(68px, 9vw, 120px) 22px;
  background: var(--seekcod-red);
  color: #fff;
  text-align: center;
}

.seekcod-about-manifesto p {
  margin: 0;
  font-size: clamp(44px, 7vw, 94px);
  font-weight: 940;
  line-height: 1;
}

.seekcod-about-manifesto p + p {
  margin-top: 8px;
}

.seekcod-about-manifesto small {
  max-width: 800px;
  display: block;
  margin: 38px auto 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(16px, 2vw, 21px);
  line-height: 1.7;
}

.seekcod-about-cta {
  min-height: 260px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(24px, 4vw, 54px);
  padding: clamp(42px, 6vw, 72px) max(22px, calc((100vw - 1180px) / 2));
  border-top: 1px solid var(--seekcod-line);
  background: #f7f5f3;
}

.seekcod-about-cta > img {
  width: clamp(92px, 12vw, 156px);
  height: clamp(92px, 12vw, 156px);
  object-fit: contain;
  filter: invert(1) contrast(1.15);
}

.seekcod-about-cta div > span {
  color: var(--seekcod-red);
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
}

.seekcod-about-cta h2 {
  max-width: 680px;
  margin: 10px 0 0;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
}

.seekcod-about-cta > a {
  min-height: 54px;
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 0 22px;
  border: 2px solid var(--seekcod-red);
  border-radius: 4px;
  background: var(--seekcod-red);
  color: #fff;
  text-decoration: none;
  font-weight: 900;
}

.seekcod-policy-main {
  min-height: calc(100svh - var(--seekcod-header-height));
  background: #fff;
}

.seekcod-policy-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(62px, 9vw, 124px) 24px;
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 9px),
    var(--seekcod-red);
  color: #fff;
}

.seekcod-policy-hero::after {
  position: absolute;
  right: clamp(-70px, -3vw, -20px);
  bottom: -90px;
  width: clamp(220px, 30vw, 430px);
  aspect-ratio: 1;
  border: clamp(35px, 5vw, 72px) solid rgba(255, 255, 255, 0.11);
  border-radius: 50%;
  content: "";
}

.seekcod-policy-hero > div {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.seekcod-policy-hero .seekcod-kicker {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.78);
}

.seekcod-policy-hero h1 {
  max-width: 980px;
  margin: 0;
  color: #fff;
  font-size: clamp(52px, 8vw, 112px);
  line-height: 0.94;
  letter-spacing: 0;
}

.seekcod-policy-hero h1[lang="ja"] {
  max-width: 1050px;
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.08;
}

.seekcod-policy-hero > div > p:last-child {
  width: min(670px, 100%);
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.65;
}

.seekcod-policy-content {
  width: min(1120px, calc(100% - 44px));
  margin: 0 auto;
  padding: clamp(58px, 8vw, 110px) 0;
}

.seekcod-policy-intro {
  width: min(850px, 100%);
  margin: 0 0 clamp(54px, 7vw, 86px);
  color: var(--seekcod-muted);
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 640;
  line-height: 1.55;
}

.seekcod-policy-section {
  display: grid;
  grid-template-columns: minmax(220px, 0.75fr) minmax(0, 1.5fr);
  gap: clamp(34px, 7vw, 100px);
  padding: clamp(34px, 5vw, 60px) 0;
  border-top: 1px solid var(--seekcod-line);
}

.seekcod-policy-section h2 {
  margin: 0;
  font-size: clamp(24px, 2.6vw, 38px);
  line-height: 1.13;
}

.seekcod-policy-section > div {
  color: var(--seekcod-muted);
  font-size: 17px;
  line-height: 1.72;
}

.seekcod-policy-section p,
.seekcod-policy-section ul {
  margin: 0;
}

.seekcod-policy-section p + p,
.seekcod-policy-section p + ul,
.seekcod-policy-section ul + p {
  margin-top: 18px;
}

.seekcod-policy-section ul {
  padding-left: 1.25em;
}

.seekcod-policy-section li + li {
  margin-top: 9px;
}

.seekcod-policy-section a,
.seekcod-legal-table a {
  color: var(--seekcod-red-dark);
  font-weight: 800;
  text-underline-offset: 3px;
}

.seekcod-policy-meta {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding-top: 30px;
  border-top: 2px solid var(--seekcod-ink);
  color: var(--seekcod-muted);
  font-size: 14px;
  font-weight: 760;
}

.seekcod-legal-table {
  margin: 0;
  border-top: 2px solid var(--seekcod-ink);
}

.seekcod-legal-table > div {
  display: grid;
  grid-template-columns: minmax(180px, 0.68fr) minmax(0, 1.7fr);
  gap: clamp(28px, 6vw, 90px);
  padding: 27px 0;
  border-bottom: 1px solid var(--seekcod-line);
}

.seekcod-legal-table dt {
  font-weight: 900;
}

.seekcod-legal-table dd {
  margin: 0;
  color: var(--seekcod-muted);
  line-height: 1.7;
}

.seekcod-legal-table + .seekcod-policy-meta {
  margin-top: 58px;
}

.seekcod-senso-main {
  --senso-red: #e33f3b;
  --senso-black: #17191a;
  overflow: hidden;
  background: #fff;
}

.seekcod-senso-language {
  position: fixed;
  top: calc(var(--seekcod-header-height) + 20px);
  left: clamp(18px, 3vw, 46px);
  z-index: 80;
  border-color: rgba(255, 255, 255, 0.54);
  background: rgba(17, 19, 20, 0.82);
  color: #fff;
  backdrop-filter: blur(8px);
}

.admin-bar .seekcod-senso-language {
  top: calc(var(--seekcod-header-height) + 52px);
}

.seekcod-senso-hero {
  position: relative;
  min-height: calc(100svh - var(--seekcod-header-height));
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--senso-black);
  color: #fff;
  isolation: isolate;
}

.seekcod-senso-hero-city,
.seekcod-senso-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.seekcod-senso-hero-city {
  z-index: -3;
  object-fit: cover;
  object-position: center 42%;
  filter: saturate(0.88) contrast(1.04);
}

.seekcod-senso-overlay {
  z-index: -2;
  background: rgba(17, 18, 19, 0.64);
}

.seekcod-senso-hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0 38% 0 0;
  background: rgba(216, 49, 45, 0.9);
  clip-path: polygon(0 0, 86% 0, 100% 50%, 78% 100%, 0 100%);
  mix-blend-mode: multiply;
}

.seekcod-senso-back {
  position: absolute;
  top: 20px;
  right: clamp(18px, 3vw, 46px);
  z-index: 22;
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-radius: 4px;
  background: rgba(16, 16, 16, 0.78);
  color: #fff;
  text-decoration: none;
  backdrop-filter: blur(8px);
  font-size: 12px;
  font-weight: 900;
}

.seekcod-senso-hero-inner {
  position: relative;
  z-index: 2;
  width: min(1360px, 100%);
  min-height: calc(100svh - var(--seekcod-header-height));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(300px, 0.58fr);
  gap: clamp(40px, 7vw, 112px);
  align-items: center;
  padding: clamp(86px, 9vw, 126px) clamp(24px, 6vw, 92px) clamp(110px, 10vw, 144px);
}

.seekcod-senso-locator {
  display: flex;
  justify-content: space-between;
  gap: 10px 24px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.54);
  color: rgba(255, 255, 255, 0.76);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  font-weight: 800;
}

.seekcod-senso-overline {
  margin: 28px 0 0;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.seekcod-senso-hero-copy h1 {
  margin: 16px 0 0;
  color: #fff;
  font-size: clamp(74px, 9.4vw, 144px);
  line-height: 0.76;
  font-weight: 950;
  text-shadow: 8px 8px 0 rgba(112, 20, 18, 0.72);
  animation: seekcodSensoTitleIn 760ms cubic-bezier(0.18, 0.86, 0.26, 1) both;
}

.seekcod-senso-title-jp {
  margin: 20px 0 0;
  color: #fff;
  font-size: clamp(20px, 2.2vw, 30px);
  font-weight: 900;
}

.seekcod-senso-lead {
  width: min(680px, 100%);
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(16px, 1.55vw, 21px);
  line-height: 1.62;
}

.seekcod-senso-hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px 24px;
  margin-top: 30px;
}

.seekcod-senso-hero-actions a {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  padding: 0 22px;
  border: 2px solid #fff;
  border-radius: 4px;
  background: #fff;
  color: var(--seekcod-red-dark);
  text-decoration: none;
  font-weight: 900;
}

.seekcod-senso-hero-actions > span {
  color: rgba(255, 255, 255, 0.72);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  font-weight: 800;
}

.seekcod-senso-cover {
  position: relative;
  width: min(100%, 440px);
  aspect-ratio: 0.75;
  justify-self: end;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: var(--senso-red);
  box-shadow: 18px 22px 0 rgba(17, 18, 19, 0.52), 0 36px 70px rgba(0, 0, 0, 0.3);
  transform: rotate(1.5deg);
  animation: seekcodSensoPosterIn 860ms cubic-bezier(0.18, 0.86, 0.26, 1) 100ms both;
}

.seekcod-senso-cover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.seekcod-senso-cover figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  padding: 9px 10px;
  background: rgba(17, 18, 19, 0.86);
  color: #fff;
  font-size: 11px;
  font-weight: 850;
  text-align: center;
}

.seekcod-senso-cover-product {
  border-color: rgba(255, 255, 255, 0.9);
  background: #fff;
  box-shadow: 12px 16px 0 rgba(17, 18, 19, 0.42), 0 32px 68px rgba(0, 0, 0, 0.28);
  transform: rotate(-0.65deg);
}

.seekcod-senso-cover-product figcaption {
  left: 22px;
  right: auto;
  bottom: 22px;
  max-width: calc(100% - 44px);
  padding: 10px 12px;
  text-align: left;
}

.seekcod-senso-marquee {
  position: absolute;
  z-index: 4;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 34px;
  padding: 0 24px;
  overflow: hidden;
  background: #fff;
  color: var(--senso-red);
  font-size: clamp(15px, 1.6vw, 22px);
  font-weight: 950;
  white-space: nowrap;
}

.seekcod-senso-marquee span::before {
  content: "●";
  margin-right: 28px;
  font-size: 8px;
  vertical-align: middle;
}

.seekcod-senso-premise {
  width: min(1180px, calc(100% - 44px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(150px, 0.34fr) minmax(0, 1fr);
  gap: clamp(42px, 8vw, 120px);
  padding: clamp(72px, 9vw, 132px) 0;
}

.seekcod-senso-chapter {
  align-self: start;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  padding-top: 12px;
  border-top: 2px solid currentColor;
  color: var(--senso-red);
}

.seekcod-senso-chapter span {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 12px;
  font-weight: 900;
}

.seekcod-senso-chapter p {
  margin: 0;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.seekcod-senso-premise h2,
.seekcod-senso-city h2,
.seekcod-senso-route h2,
.seekcod-senso-kit h2,
.seekcod-senso-purchase h2 {
  margin: 0;
  letter-spacing: 0;
}

.seekcod-senso-premise h2 {
  color: var(--senso-black);
  font-size: clamp(46px, 6.4vw, 94px);
  line-height: 0.94;
}

.seekcod-senso-premise > div:last-child > p {
  width: min(780px, 100%);
  margin: 34px 0 0;
  color: #5f5d5a;
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 1.72;
}

.seekcod-senso-city {
  min-height: 780px;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  background: var(--senso-black);
  color: #fff;
}

.seekcod-senso-city > figure {
  position: relative;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
  background: #d8e7ed;
}

.seekcod-senso-city > figure img {
  width: 100%;
  height: 100%;
  min-height: 780px;
  display: block;
  object-fit: cover;
}

.seekcod-senso-city figcaption {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 18px;
  background: rgba(17, 18, 19, 0.88);
  color: #fff;
  font-size: 12px;
  font-weight: 850;
}

.seekcod-senso-city-copy {
  align-self: center;
  padding: clamp(58px, 7vw, 104px);
}

.seekcod-senso-chapter-light {
  color: #f06965;
}

.seekcod-senso-city h2 {
  margin-top: 54px;
  color: #fff;
  font-size: clamp(42px, 5vw, 74px);
  line-height: 0.98;
}

.seekcod-senso-city-copy > p {
  margin: 28px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.7;
}

.seekcod-senso-observations {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 46px;
  border-top: 1px solid rgba(255, 255, 255, 0.4);
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
}

.seekcod-senso-observations div {
  min-height: 92px;
  display: grid;
  align-content: center;
  gap: 8px;
  border-right: 1px solid rgba(255, 255, 255, 0.26);
}

.seekcod-senso-observations div + div {
  padding-left: 18px;
}

.seekcod-senso-observations div:last-child {
  border-right: 0;
}

.seekcod-senso-observations b {
  color: #f06965;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
}

.seekcod-senso-observations span {
  color: #fff;
  font-size: 17px;
  font-weight: 900;
}

.seekcod-senso-route {
  padding: clamp(72px, 9vw, 130px) max(22px, calc((100vw - 1180px) / 2));
  background:
    repeating-linear-gradient(0deg, rgba(255, 255, 255, 0.045) 0 1px, transparent 1px 7px),
    var(--senso-red);
  color: #fff;
}

.seekcod-senso-route-heading {
  display: grid;
  grid-template-columns: minmax(150px, 0.34fr) minmax(0, 1fr);
  gap: clamp(42px, 8vw, 120px);
}

.seekcod-senso-route .seekcod-senso-chapter {
  color: #fff;
}

.seekcod-senso-route h2 {
  max-width: 850px;
  color: #fff;
  font-size: clamp(44px, 6vw, 88px);
  line-height: 0.96;
}

.seekcod-senso-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: clamp(56px, 7vw, 92px);
  border-top: 2px solid #fff;
}

.seekcod-senso-steps article {
  min-height: 260px;
  padding: 24px 28px 0 0;
  border-right: 1px solid rgba(255, 255, 255, 0.34);
}

.seekcod-senso-steps article + article {
  padding-left: 28px;
}

.seekcod-senso-steps article:last-child {
  border-right: 0;
}

.seekcod-senso-steps article > span {
  color: rgba(255, 255, 255, 0.7);
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  font-weight: 900;
}

.seekcod-senso-steps h3 {
  margin: 44px 0 0;
  color: #fff;
  font-size: clamp(24px, 2.4vw, 34px);
  line-height: 1.08;
}

.seekcod-senso-steps p {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.62;
}

.seekcod-senso-kit {
  display: grid;
  grid-template-columns: minmax(360px, 0.96fr) minmax(0, 1.04fr);
  background: #fff;
}

.seekcod-senso-kit > figure {
  min-height: 760px;
  margin: 0;
  overflow: hidden;
  background: var(--senso-red);
}

.seekcod-senso-kit > figure img {
  width: 100%;
  height: 100%;
  min-height: 760px;
  display: block;
  object-fit: cover;
}

.seekcod-senso-kit-copy {
  align-self: center;
  padding: clamp(58px, 8vw, 120px);
}

.seekcod-senso-kit h2 {
  margin-top: 50px;
  color: var(--senso-black);
  font-size: clamp(42px, 5vw, 72px);
  line-height: 0.98;
}

.seekcod-senso-kit-copy > p {
  margin: 28px 0 0;
  color: #5f5d5a;
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.7;
}

.seekcod-senso-kit ul {
  margin: 38px 0 0;
  padding: 0;
  list-style: none;
  border-top: 2px solid var(--senso-black);
}

.seekcod-senso-kit li {
  position: relative;
  min-height: 60px;
  display: flex;
  align-items: center;
  padding: 12px 12px 12px 34px;
  border-bottom: 1px solid #d9d7d2;
  font-weight: 850;
}

.seekcod-senso-kit li::before {
  content: "●";
  position: absolute;
  left: 4px;
  color: var(--senso-red);
  font-size: 9px;
}

.seekcod-senso-purchase {
  scroll-margin-top: var(--seekcod-header-height);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.72fr);
  gap: clamp(48px, 8vw, 120px);
  align-items: end;
  padding: clamp(72px, 9vw, 128px) max(22px, calc((100vw - 1180px) / 2));
  background: var(--senso-black);
  color: #fff;
}

.seekcod-senso-purchase-copy .seekcod-senso-overline {
  margin-top: 0;
  color: #f06965;
}

.seekcod-senso-purchase h2 {
  margin-top: 16px;
  max-width: 760px;
  color: #fff;
  font-size: clamp(44px, 5.8vw, 82px);
  line-height: 0.98;
}

.seekcod-senso-purchase-copy > p:last-child {
  width: min(650px, 100%);
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: clamp(16px, 1.7vw, 20px);
  line-height: 1.66;
}

.seekcod-add-to-cart-form {
  display: grid;
  gap: 14px;
}

.seekcod-edition-selector {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  overflow: hidden;
  min-inline-size: 0;
  margin: 0;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.52);
}

.seekcod-edition-selector label {
  position: relative;
  min-width: 0;
  min-height: 124px;
  height: 100%;
  display: grid;
  align-content: center;
  gap: 7px;
  margin: 0;
  padding: 18px;
  cursor: pointer;
}

.seekcod-edition-selector label + label {
  border-left: 1px solid rgba(255, 255, 255, 0.52);
}

.seekcod-edition-selector label:has(input:checked) {
  background: #fff;
  color: var(--senso-black);
}

.seekcod-edition-selector input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  cursor: pointer;
  opacity: 0;
}

.seekcod-edition-code {
  color: #f06965;
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  font-size: 11px;
  font-weight: 900;
}

.seekcod-edition-selector strong {
  font-size: 16px;
}

.seekcod-edition-price {
  font-size: 14px;
  font-weight: 800;
}

.seekcod-real-cart-button {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  border: 2px solid var(--senso-red);
  border-radius: 0;
  background: var(--senso-red);
  color: #fff;
  cursor: pointer;
  font-size: 18px;
  font-weight: 900;
}

.seekcod-real-cart-button:hover,
.seekcod-real-cart-button:focus-visible {
  border-color: #fff;
  background: #fff;
  color: var(--senso-black);
}

.seekcod-real-cart-button[disabled] {
  cursor: progress;
  opacity: 0.72;
}

.seekcod-cart-feedback {
  min-height: 22px;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  font-weight: 750;
}

.seekcod-cart-feedback a {
  color: #fff;
  font-weight: 900;
}

@media (max-width: 899px) {
  :root {
    --seekcod-header-height: 78px;
  }

  .seekcod-home-stage {
    grid-template-columns: 0.72fr minmax(210px, 1fr) 0.72fr auto;
  }

  .seekcod-home-walker-b {
    display: none;
  }

  .seekcod-home-go {
    right: auto;
  }

  .seekcod-game-card {
    grid-template-columns: 1fr;
  }

  .seekcod-senso-hero-inner,
  .seekcod-senso-premise,
  .seekcod-senso-route-heading,
  .seekcod-senso-city,
  .seekcod-senso-kit,
  .seekcod-senso-purchase {
    grid-template-columns: 1fr;
  }

  .seekcod-senso-hero-inner {
    min-height: auto;
    gap: 48px;
    padding: 96px 24px 118px;
  }

  .seekcod-senso-hero::before {
    inset: 0;
    clip-path: polygon(0 0, 100% 0, 100% 68%, 0 90%);
    opacity: 0.86;
  }

  .seekcod-senso-cover {
    width: min(72vw, 390px);
    justify-self: center;
  }

  .seekcod-senso-chapter {
    max-width: 240px;
  }

  .seekcod-senso-city > figure,
  .seekcod-senso-city > figure img,
  .seekcod-senso-kit > figure,
  .seekcod-senso-kit > figure img {
    min-height: 620px;
    max-height: 760px;
  }

  .seekcod-senso-city-copy,
  .seekcod-senso-kit-copy {
    padding: 68px 24px 80px;
  }
}

@media (max-width: 700px) {
  :root {
    --seekcod-header-height: 74px;
  }

  .admin-bar .seekcod-site-header {
    top: 46px;
  }

  .seekcod-site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 10px;
    padding: 8px 14px;
  }

  .seekcod-brand {
    gap: 8px;
    font-size: 23px;
  }

  .seekcod-brand img {
    width: 54px;
    height: 54px;
  }

  .seekcod-menu-toggle {
    display: grid;
  }

  .seekcod-cart-link {
    width: 42px;
    height: 42px;
  }

  .seekcod-top-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 14px;
    width: min(242px, calc(100vw - 28px));
    display: grid;
    gap: 0;
    padding: 8px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 18px 42px rgba(70, 16, 12, 0.18);
    font-size: 15px;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .seekcod-top-nav a {
    padding: 14px 12px;
  }

  .seekcod-site-header.is-menu-open .seekcod-top-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .seekcod-footer-inner {
    grid-template-columns: 1fr;
  }

  .seekcod-footer-links {
    justify-content: flex-start;
  }

  .seekcod-footer-links a {
    flex: 1 1 42%;
  }

  .seekcod-footer-note {
    grid-column: auto;
    display: grid;
  }

  .seekcod-home-hero {
    min-height: calc(100svh - var(--seekcod-header-height));
    grid-template-rows: auto minmax(0, 1fr) auto;
    gap: 16px;
    padding: 40px 18px 34px;
  }

  .seekcod-home-frame {
    inset: 14px;
  }

  .seekcod-home-copy h1 {
    font-size: clamp(50px, 14vw, 68px);
  }

  .seekcod-home-copy p {
    font-size: 13px;
  }

  .seekcod-home-stage {
    width: min(100%, 360px);
    grid-template-columns: 0.72fr 1.28fr;
    grid-template-rows: minmax(220px, 1fr) 132px;
    gap: 8px 14px;
  }

  .seekcod-home-walker-a {
    grid-column: 1;
    grid-row: 2;
    max-height: 132px;
  }

  .seekcod-home-walker-b,
  .seekcod-home-walker-c {
    display: none;
  }

  .seekcod-home-mark {
    grid-column: 1 / -1;
    grid-row: 1;
    width: min(86%, 300px);
    max-height: 270px;
    justify-self: center;
  }

  .seekcod-home-go {
    grid-column: 2;
    grid-row: 2;
    align-self: center;
    justify-self: end;
    margin-right: 4px;
    gap: 7px;
  }

  .seekcod-home-go span {
    font-size: 52px;
  }

  .seekcod-home-go svg {
    width: 62px;
  }

  .seekcod-home-closing {
    font-size: 15px;
  }

  .seekcod-games-main {
    padding: 62px 16px;
  }

  .seekcod-language-toggle {
    top: 16px;
    left: 16px;
  }

  .seekcod-games-heading h1 {
    font-size: clamp(52px, 15vw, 72px);
  }

  .seekcod-games-heading > p:last-child {
    font-size: 16px;
  }

  .seekcod-games-list {
    margin-top: 42px;
  }

  .seekcod-game-card {
    gap: 22px;
    padding: 16px;
  }

  .seekcod-game-copy h2 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .seekcod-game-card-jargo h2 {
    font-size: clamp(31px, 9vw, 42px);
  }

  .seekcod-details-link,
  .seekcod-coming-soon {
    width: 100%;
  }

  .seekcod-commerce-heading {
    padding: 48px 18px 54px;
  }

  .seekcod-commerce-heading h1 {
    font-size: clamp(50px, 15vw, 70px);
  }

  .seekcod-commerce-content {
    width: calc(100% - 32px);
    padding: 42px 0 58px;
  }

  .seekcod-contact-main {
    width: calc(100% - 36px);
    grid-template-columns: 1fr;
    gap: 34px;
    padding: 52px 0 64px;
  }

  .seekcod-contact-copy {
    text-align: center;
  }

  .seekcod-contact-copy h1 {
    font-size: clamp(52px, 15vw, 70px);
  }

  .seekcod-contact-copy > p:not(.seekcod-kicker) {
    margin-right: auto;
    margin-left: auto;
    font-size: 16px;
  }

  .seekcod-contact-details {
    text-align: left;
  }

  .seekcod-contact-details > div {
    grid-template-columns: 82px 1fr;
    gap: 12px;
  }

  .seekcod-contact-form-shell {
    padding: 18px;
  }

  .seekcod-about-hero {
    min-height: 58svh;
  }

  .seekcod-about-hero-copy {
    padding: 40px 18px;
  }

  .seekcod-about-hero-copy h1 {
    font-size: clamp(52px, 16vw, 74px);
  }

  .seekcod-about-language-bar > div {
    min-height: 0;
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
    padding: 16px 18px;
  }

  .seekcod-about-language-switch {
    width: 100%;
    min-width: 0;
  }

  .seekcod-about-origin {
    padding: 54px 18px 64px;
  }

  .seekcod-about-origin > div,
  .seekcod-about-create > div:first-child {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .seekcod-about-origin h2 {
    font-size: clamp(48px, 14vw, 64px);
  }

  .seekcod-about-origin-copy {
    padding-top: 0;
    font-size: 16px;
  }

  .seekcod-about-create {
    padding: 56px 18px 108px;
  }

  .seekcod-about-create-copy h2 {
    font-size: clamp(44px, 13vw, 62px);
  }

  .seekcod-about-values > div {
    grid-template-columns: 38px 1fr;
    gap: 8px 12px;
  }

  .seekcod-about-values span {
    grid-column: 2;
  }

  .seekcod-about-manifesto {
    padding: 58px 18px 66px;
  }

  .seekcod-about-manifesto p {
    font-size: clamp(40px, 12vw, 58px);
  }

  .seekcod-about-cta {
    min-height: 0;
    grid-template-columns: auto 1fr;
    padding: 42px 18px;
  }

  .seekcod-about-cta > img {
    width: 78px;
    height: 78px;
  }

  .seekcod-about-cta > a {
    grid-column: 1 / -1;
    justify-content: center;
  }

  .seekcod-policy-hero {
    padding: 54px 18px 62px;
  }

  .seekcod-policy-hero h1 {
    font-size: clamp(44px, 14vw, 64px);
  }

  .seekcod-policy-hero h1[lang="ja"] {
    font-size: clamp(36px, 10.6vw, 52px);
  }

  .seekcod-policy-content {
    width: calc(100% - 36px);
    padding: 50px 0 68px;
  }

  .seekcod-policy-intro {
    margin-bottom: 48px;
    font-size: 20px;
  }

  .seekcod-policy-section {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 32px 0 38px;
  }

  .seekcod-policy-section > div {
    font-size: 16px;
  }

  .seekcod-policy-meta {
    flex-direction: column;
    gap: 8px;
  }

  .seekcod-legal-table > div {
    grid-template-columns: 1fr;
    gap: 9px;
    padding: 23px 0 27px;
  }

  .seekcod-senso-language {
    top: calc(var(--seekcod-header-height) + 14px);
    left: 14px;
  }

  .admin-bar .seekcod-senso-language {
    top: calc(var(--seekcod-header-height) + 60px);
  }

  .seekcod-senso-back {
    top: 14px;
    right: 14px;
  }

  .seekcod-senso-hero-inner {
    gap: 38px;
    padding: 82px 18px 106px;
  }

  .seekcod-senso-locator {
    justify-content: flex-start;
    flex-wrap: wrap;
  }

  .seekcod-senso-hero-copy h1 {
    font-size: clamp(60px, 20vw, 84px);
    text-shadow: 5px 5px 0 rgba(112, 20, 18, 0.72);
  }

  .seekcod-senso-lead {
    font-size: 15px;
  }

  .seekcod-senso-hero-actions {
    display: grid;
  }

  .seekcod-senso-hero-actions a {
    justify-content: center;
  }

  .seekcod-senso-cover {
    width: min(78vw, 320px);
    box-shadow: 10px 14px 0 rgba(17, 18, 19, 0.5), 0 26px 46px rgba(0, 0, 0, 0.3);
  }

  .seekcod-senso-marquee {
    min-height: 48px;
    justify-content: flex-start;
    font-size: 14px;
  }

  .seekcod-senso-premise {
    width: calc(100% - 36px);
    gap: 30px;
    padding: 60px 0 66px;
  }

  .seekcod-senso-premise h2 {
    font-size: clamp(40px, 12vw, 56px);
  }

  .seekcod-senso-premise > div:last-child > p {
    margin-top: 24px;
    font-size: 16px;
  }

  .seekcod-senso-city > figure,
  .seekcod-senso-city > figure img,
  .seekcod-senso-kit > figure,
  .seekcod-senso-kit > figure img {
    min-height: 520px;
  }

  .seekcod-senso-city figcaption {
    left: 14px;
    right: 14px;
    bottom: 14px;
    display: grid;
    gap: 6px;
  }

  .seekcod-senso-city-copy,
  .seekcod-senso-kit-copy {
    padding: 58px 18px 66px;
  }

  .seekcod-senso-city h2,
  .seekcod-senso-kit h2 {
    margin-top: 38px;
    font-size: clamp(38px, 11.6vw, 52px);
  }

  .seekcod-senso-observations div {
    min-height: 78px;
  }

  .seekcod-senso-observations div + div {
    padding-left: 10px;
  }

  .seekcod-senso-observations span {
    font-size: 14px;
  }

  .seekcod-senso-route,
  .seekcod-senso-purchase {
    padding: 60px 18px 68px;
  }

  .seekcod-senso-route-heading {
    gap: 32px;
  }

  .seekcod-senso-route h2,
  .seekcod-senso-purchase h2 {
    font-size: clamp(40px, 11.8vw, 54px);
  }

  .seekcod-senso-steps {
    grid-template-columns: 1fr;
    margin-top: 46px;
  }

  .seekcod-senso-steps article,
  .seekcod-senso-steps article + article {
    min-height: 0;
    padding: 26px 0 30px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.34);
  }

  .seekcod-senso-steps article:last-child {
    border-bottom: 0;
  }

  .seekcod-senso-steps h3 {
    margin-top: 24px;
    font-size: 26px;
  }

  .seekcod-senso-purchase {
    gap: 36px;
  }

  .seekcod-edition-selector label {
    min-height: 104px;
    padding: 14px;
  }

  .seekcod-edition-selector strong {
    font-size: 14px;
  }
}

@keyframes seekcodMarkFloat {
  0%,
  100% {
    transform: translateY(0) rotate(-0.6deg);
  }

  50% {
    transform: translateY(-10px) rotate(0.7deg);
  }
}

@keyframes seekcodWalkerStep {
  0%,
  100% {
    transform: var(--seekcod-walker-pose) translateY(0);
  }

  46% {
    transform: var(--seekcod-walker-pose) translateY(-9px);
  }
}

@keyframes seekcodWalkerFloat {
  0%,
  100% {
    transform: var(--seekcod-walker-pose) translateY(5px);
  }

  50% {
    transform: var(--seekcod-walker-pose) translateY(-11px);
  }
}

@keyframes seekcodSensoTitleIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes seekcodSensoPosterIn {
  from {
    opacity: 0;
    transform: translateY(40px) rotate(4deg);
  }

  to {
    opacity: 1;
    transform: translateY(0) rotate(1.5deg);
  }
}

@keyframes seekcodAboutWalk {
  from {
    transform: translateX(-82px);
  }

  to {
    transform: translateX(calc(100vw + 82px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .seekcod-storefront *,
  .seekcod-storefront *::before,
  .seekcod-storefront *::after {
    animation-duration: 1ms !important;
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
  }
}
