
:root {
  --night: #061631;
  --night-2: #0b2046;
  --night-3: #123167;
  --paper: #f4f6fa;
  --ink: #07152e;
  --muted: #6c7890;
  --green: #36ef7a;
  --green-dark: #0ec45a;
  --yellow: #ffd51f;
  --blue: #1976ff;
  --white: #ffffff;
  --line: rgba(7, 21, 46, 0.11);
  --container: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Pretendard, "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", Arial, sans-serif;
  word-break: keep-all;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

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

.container {
  width: min(var(--container), calc(100% - 64px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  width: 100%;
  height: 76px;
  padding: 0 4vw;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  background: linear-gradient(180deg, rgba(4, 17, 40, 0.76), rgba(4, 17, 40, 0.26));
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: inherit;
  text-decoration: none;
  letter-spacing: -0.05em;
}

.brand-primary,
.brand-run {
  font-size: 19px;
  font-weight: 900;
}

.brand-run {
  color: var(--green);
}

.brand-year {
  align-self: flex-start;
  margin-top: -2px;
  color: var(--yellow);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  margin: 0 auto;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--green);
}

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

.event-period {
  color: rgba(255, 255, 255, 0.66);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.header-cta {
  height: 38px;
  padding: 0 20px;
  color: var(--night);
  font-size: 12px;
  font-weight: 900;
  border: 0;
  border-radius: 999px;
  background: var(--green);
  cursor: pointer;
}

.menu-button {
  display: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: 900px;
  overflow: hidden;
  color: #fff;
  background: var(--night) url("https://medieus.com/campaign/runpr/images/runtoget.png") 50% 48% / cover no-repeat;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 17, 41, 0.95) 0%, rgba(4, 17, 41, 0.8) 38%, rgba(4, 17, 41, 0.23) 72%, rgba(4, 17, 41, 0.42) 100%),
    linear-gradient(0deg, rgba(4, 17, 41, 0.96) 0%, transparent 36%);
}

.hero-noise {
  position: absolute;
  inset: 0;
  opacity: 0.12;
  background-image: radial-gradient(rgba(255, 255, 255, 0.65) 0.6px, transparent 0.7px);
  background-size: 5px 5px;
  mix-blend-mode: overlay;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  align-self: center;
  padding-top: 80px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 20px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
}

.eyebrow > span {
  width: 24px;
  height: 2px;
  background: var(--green);
}

.run-label {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin: 8px 0 24px;
  padding: 13px 24px 16px;

  color: var(--green);
  font-size: clamp(32px, 4.5vw, 70px);
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.06em;

  /* 기존 검은 사각 배경 제거 */
  background: transparent;
  isolation: isolate;
}

/* 검은 스티커 배경 */
.run-label::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 3px -8px -1px -7px;

  background: #030b0a;
  clip-path: polygon(
    1% 5%,
    98% 1%,
    100% 94%,
    2% 100%
  );

  transform: rotate(-0.8deg);
  box-shadow:
    5px 7px 0 rgba(0, 0, 0, 0.18),
    0 10px 24px rgba(0, 0, 0, 0.24);
}

/* 문구 */
.run-label-text {
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

/* 오른쪽 위 SEASON 1. */
.run-season {
  position: absolute;
  z-index: 2;
  top: -13px;
  right: 6px;

  padding: 5px 9px 4px;
  color: #030b0a;
  font-size: clamp(10px, 1.05vw, 15px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.08em;

  background: var(--green);
  transform: rotate(3deg);
  box-shadow: 2px 3px 0 rgba(0, 0, 0, 0.3);
}

.hero h1 {
  max-width: 870px;
  margin: 0;
  font-size: clamp(42px, 5.5vw, 78px);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.07em;
}

.hero h1 em,
.section-heading h2 em,
.moment-section h2 span,
.reward-copy h2 em,
.ranking-copy h2 em,
.final-content h2 em {
  color: var(--yellow);
  font-style: normal;
}

.hero-copy {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 17px;
  line-height: 1.75;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 56px;
  padding: 0 27px;
  font-size: 14px;
  font-weight: 900;
  border: 0;
  border-radius: 999px;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg,
.running-now button svg,
.course-copy button svg,
.leaderboard > button svg,
.mobile-join svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-primary {
  color: var(--night);
  background: var(--green);
  box-shadow: 0 12px 40px rgba(54, 239, 122, 0.24);
}

.button-primary:hover {
  background: #61f694;
  box-shadow: 0 16px 50px rgba(54, 239, 122, 0.34);
}

.button-ghost {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.33);
  background: rgba(8, 25, 55, 0.22);
  backdrop-filter: blur(10px);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, 160px);
  margin-top: 60px;
}

.hero-facts > div {
  position: relative;
  padding-left: 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.22);
}

.hero-facts span {
  display: block;
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.hero-facts strong {
  font-size: 28px;
  letter-spacing: -0.04em;
}

.hero-facts small {
  margin-left: 4px;
  color: var(--yellow);
  font-size: 11px;
  font-weight: 900;
}

.hero-side-note {
  position: absolute;
  right: 22px;
  bottom: 48px;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.44);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.22em;
  transform: rotate(-90deg) translateX(100%);
  transform-origin: right bottom;
}

.hero-side-note span {
  width: 50px;
  height: 1px;
  background: rgba(255, 255, 255, 0.35);
}

.live-section,
.how-section,
.courses-section,
.reward-section,
.ranking-section {
  padding: 130px 0;
}

.live-section {
  position: relative;
  color: #fff;
  background:
    radial-gradient(circle at 80% 10%, rgba(25, 118, 255, 0.22), transparent 27%),
    linear-gradient(135deg, #071a39, #041229 65%);
}

.live-section::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48%;
  height: 35%;
  content: "";
  opacity: 0.08;
  background-image: linear-gradient(45deg, transparent 48%, #fff 49%, #fff 51%, transparent 52%);
  background-size: 22px 22px;
  pointer-events: none;
}

.section-heading {
  position: relative;
  z-index: 1;
}

.section-kicker {
  color: var(--green-dark);
}

.live-heading,
.split-heading,
.courses-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 54px;
}

.section-heading h2,
.reward-copy h2,
.ranking-copy h2,
.final-content h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 68px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.065em;
}

.live-heading h2 em {
  color: var(--green);
}

.live-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(54, 239, 122, 0.13), 0 0 20px var(--green);
  animation: live-pulse 1.7s infinite;
}

@keyframes live-pulse {
  50% { opacity: 0.45; box-shadow: 0 0 0 11px rgba(54, 239, 122, 0); }
}

.live-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  padding-bottom: 8px;
}

.live-meta span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
}

.live-meta strong {
  font-size: 13px;
}

.live-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 12px;
}

.stat-card {
  position: relative;
  min-height: 250px;
  padding: 32px 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
}

.stat-card-main {
  background: linear-gradient(145deg, rgba(54, 239, 122, 0.18), rgba(25, 118, 255, 0.07));
}

.treasure-stat {
  border-color: rgba(255, 213, 31, 0.22);
  background: linear-gradient(145deg, rgba(255, 213, 31, 0.14), rgba(255, 255, 255, 0.03));
}

.stat-label {
  display: block;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-weight: 800;
}

.stat-card > div:first-of-type {
  display: flex;
  align-items: flex-end;
}

.stat-card strong {
  font-size: clamp(36px, 3.4vw, 52px);
  letter-spacing: -0.055em;
}

.stat-card small {
  margin: 0 0 7px 6px;
  color: var(--green);
  font-size: 11px;
  font-weight: 900;
}

.stat-card p {
  position: absolute;
  bottom: 25px;
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
}

.stat-icon {
  position: absolute;
  top: 24px;
  right: 24px;
  color: rgba(255, 255, 255, 0.25);
  font-size: 22px;
}

.treasure-stat .stat-icon,
.treasure-stat small {
  color: var(--yellow);
}

.goal-row {
  display: flex !important;
  justify-content: space-between;
  margin-top: 38px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
}

.goal-row b {
  color: var(--green);
}

.progress-track {
  display: block !important;
  height: 5px;
  margin-top: 10px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.1);
}

.progress-track span {
  display: block;
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--green), #aaffc8);
  box-shadow: 0 0 16px var(--green);
}

.running-now {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 14px;
  padding: 22px 26px;
  border: 1px solid rgba(54, 239, 122, 0.18);
  border-radius: 18px;
  background: rgba(1, 9, 23, 0.52);
}

.pulse-ring {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid rgba(54, 239, 122, 0.33);
  border-radius: 50%;
}

.pulse-ring i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px var(--green);
}

.running-now strong {
  font-size: 14px;
}

.running-now > span:nth-of-type(2) {
  color: rgba(255, 255, 255, 0.42);
  font-size: 12px;
}

.running-now button {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  padding: 0;
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
  border: 0;
  background: none;
  cursor: pointer;
}

.how-section {
  background: #f5f7fb;
}

.split-heading > p {
  max-width: 430px;
  margin: 0 0 5px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}

.split-heading h2 em,
.courses-heading h2 em {
  color: var(--blue);
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.step-card {
  position: relative;
  min-width: 0;
  padding: 24px 24px 28px;
  overflow: hidden;
  border: 1px solid #e3e7ee;
  border-radius: 28px;
  background: #fff;
}

.step-phone {
  position: relative;
  height: 390px;
  overflow: hidden;
  border-radius: 22px;
  background: #e8ecf4;
  box-shadow: 0 15px 35px rgba(10, 29, 60, 0.13);
}

.step-phone img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.step-copy {
  position: relative;
  padding-top: 28px;
}

.step-copy > span {
  position: absolute;
  top: 24px;
  right: 0;
  color: #cbd1dc;
  font-size: 30px;
  font-weight: 900;
}

.step-copy h3 {
  margin: 0 0 10px;
  font-size: 18px;
  letter-spacing: -0.04em;
}

.step-copy p {
  max-width: 195px;
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.why-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 18px;
  padding: 28px 18px;
  color: #fff;
  border-radius: 24px;
  background: var(--night);
}

.why-strip > div {
  padding: 5px 25px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.why-strip > div:last-child {
  border-right: 0;
}

.why-strip span {
  margin-right: 12px;
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
}

.why-strip strong {
  font-size: 13px;
}

.why-strip p {
  margin: 8px 0 0 30px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 11px;
}

.moment-section {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 70% 50%, rgba(25, 118, 255, 0.22), transparent 35%),
    #04132e;
}

.moment-section::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.08;
  background-image: linear-gradient(rgba(255, 255, 255, 0.16) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.16) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: linear-gradient(90deg, #000, transparent 55%);
}

.moment-glow {
  position: absolute;
  top: 50%;
  left: 67%;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  background: rgba(255, 213, 31, 0.12);
  filter: blur(60px);
  transform: translate(-50%, -50%);
}

.moment-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: center;
  gap: 80px;
}

.moment-copy h2 {
  margin: 0;
  font-size: clamp(54px, 6vw, 84px);
  line-height: 0.98;
  letter-spacing: -0.07em;
}

.moment-lead {
  margin: 32px 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 21px;
  line-height: 1.5;
}

.moment-lead strong {
  color: var(--yellow);
}

.moment-quote {
  display: inline-flex;
  padding: 13px 17px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  border: 1px solid rgba(54, 239, 122, 0.22);
  border-radius: 10px;
  background: rgba(54, 239, 122, 0.06);
}

.moment-visual {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 42px;
  box-shadow: 0 40px 90px rgba(0, 0, 0, 0.34);
}

.moment-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(90deg, rgba(4, 19, 46, 0.42), transparent 38%);
}

.moment-visual img {
  width: 100%;
  min-height: 100%;
  object-fit: cover;
}

.treasure-orbit,
.floating-star {
  position: absolute;
  z-index: 2;
  pointer-events: none;
}

.treasure-orbit {
  top: 50%;
  right: 20%;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(255, 213, 31, 0.32);
  border-radius: 50%;
  animation: orbit 8s linear infinite;
}

.orbit-two {
  width: 250px;
  height: 250px;
  margin: -30px;
  border-style: dashed;
  opacity: 0.5;
  animation-direction: reverse;
  animation-duration: 12s;
}

@keyframes orbit {
  to { transform: rotate(360deg); }
}

.floating-star {
  color: var(--yellow);
  text-shadow: 0 0 18px var(--yellow);
  animation: float-star 2.5s ease-in-out infinite;
}

.star-one { top: 20%; right: 23%; font-size: 30px; }
.star-two { bottom: 21%; right: 36%; font-size: 19px; animation-delay: -1s; }

@keyframes float-star {
  50% { transform: translateY(-10px) scale(1.12); }
}

.courses-section {
  background: #eef1f6;
}

.course-filter {
  display: flex;
  gap: 7px;
  padding-bottom: 8px;
}

.course-filter button {
  height: 38px;
  padding: 0 18px;
  color: #718097;
  font-size: 11px;
  font-weight: 800;
  border: 1px solid #dbe0e8;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}

.course-filter button.is-active {
  color: #fff;
  border-color: var(--night);
  background: var(--night);
}

.courses-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.course-card {
  overflow: hidden;
  border-radius: 22px;
  background: #fff;
  box-shadow: 0 12px 35px rgba(7, 21, 46, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.course-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 24px 55px rgba(7, 21, 46, 0.13);
}

.course-image {
  position: relative;
  aspect-ratio: 1.42 / 1;
  overflow: hidden;
  background: #e4e8ef;
  border-radius: 22px;
}

.course-image::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(0deg, rgba(4, 17, 41, 0.32), transparent 55%);
}

.course-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.course-card:hover .course-image img {
  transform: scale(1.04);
}

.course-image span,
.course-image b {
  position: absolute;
  z-index: 2;
  color: #fff;
}

.course-image span {
  top: 16px;
  left: 16px;
  font-size: 10px;
  font-weight: 900;
}

.course-image b {
  right: 14px;
  bottom: 14px;
  padding: 5px 9px;
  font-size: 10px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(4, 17, 41, 0.38);
  backdrop-filter: blur(8px);
}

.course-copy {
  position: relative;
  min-height: 148px;
  padding: 22px;
}

.course-copy p {
  display: flex;
  align-items: center;
  gap: 4px;
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 10px;
  font-weight: 900;
}

.course-copy p svg {
  width: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.course-copy h3 {
  margin: 0 0 7px;
  font-size: 18px;
  letter-spacing: -0.045em;
}

.course-copy > span {
  color: #8b95a7;
  font-size: 11px;
}

.course-copy button {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: #fff;
  border: 0;
  border-radius: 50%;
  background: var(--night);
  cursor: pointer;
}

.reward-section {
  overflow: hidden;
  background: linear-gradient(155deg, #fff 0%, #f6f8fb 100%);
}

.reward-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
  gap: 80px;
}

.reward-copy > p:not(.section-kicker),
.ranking-copy > p:not(.section-kicker) {
  max-width: 410px;
  margin: 27px 0 34px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.button-dark {
  color: #fff;
  background: var(--night);
}

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

.reward-card {
  position: relative;
  min-height: 440px;
  padding: 24px;
  overflow: hidden;
  border-radius: 28px;
}

.reward-card::before {
  position: absolute;
  top: 38px;
  left: 50%;
  width: 210px;
  height: 210px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  transform: translateX(-50%);
}

.reward-card-yellow { background: var(--yellow); }
.reward-card-green { color: #fff; background: #16c961; }
.reward-card-blue { color: #fff; background: var(--night-3); }

.reward-level {
  position: relative;
  z-index: 1;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.reward-card h3 {
  position: absolute;
  bottom: 58px;
  left: 24px;
  margin: 0;
  font-size: 19px;
  letter-spacing: -0.04em;
}

.reward-card > p {
  position: absolute;
  bottom: 24px;
  left: 24px;
  margin: 0;
  opacity: 0.62;
  font-size: 10px;
}

.chest {
  position: absolute;
  top: 128px;
  left: 50%;
  z-index: 1;
  width: 108px;
  height: 76px;
  border-radius: 10px 10px 18px 18px;
  background: linear-gradient(90deg, #d78904, #ffbd22 45%, #d78904);
  box-shadow: 0 28px 45px rgba(98, 54, 0, 0.25), 0 0 70px rgba(255, 255, 255, 0.34);
  transform: translateX(-50%);
}

.chest::before {
  position: absolute;
  top: -34px;
  left: 4px;
  width: 100px;
  height: 54px;
  content: "";
  border: 9px solid #e39a06;
  border-bottom-width: 16px;
  border-radius: 55px 55px 8px 8px;
  background: #ffc629;
  transform: rotate(-8deg);
  transform-origin: left bottom;
}

.chest i {
  position: absolute;
  top: -18px;
  left: 50%;
  width: 4px;
  height: 80px;
  content: "";
  background: rgba(255, 246, 163, 0.88);
  box-shadow: -34px 0 0 rgba(255, 246, 163, 0.5), 34px 0 0 rgba(255, 246, 163, 0.5);
  transform: translateX(-50%);
}

.chest b {
  position: absolute;
  top: 16px;
  left: 50%;
  z-index: 2;
  width: 24px;
  height: 28px;
  border: 4px solid #805000;
  border-radius: 7px;
  background: var(--yellow);
  transform: translateX(-50%);
}

.chest-large {
  filter: saturate(1.08);
  transform: translateX(-50%) scale(1.12);
}

.medieus-ticket {
  position: absolute;
  top: 104px;
  left: 50%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 150px;
  height: 190px;
  padding: 22px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;
  background: linear-gradient(145deg, #1c66ff, #09214e);
  box-shadow: 0 28px 50px rgba(0, 0, 0, 0.23);
  transform: translateX(-50%) rotate(-5deg);
}

.medieus-ticket span {
  color: var(--green);
  font-size: 12px;
  font-weight: 900;
}

.medieus-ticket strong {
  margin-top: auto;
  font-size: 26px;
  line-height: 0.95;
}

.medieus-ticket small {
  margin-top: 8px;
  opacity: 0.52;
  font-size: 7px;
  letter-spacing: 0.12em;
}

.ranking-section {
  position: relative;
  color: #fff;
  background:
    linear-gradient(90deg, rgba(4, 18, 42, 0.97), rgba(4, 18, 42, 0.88)),
    url("../images/course-night.jpg") 50% / cover;
}

.ranking-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  gap: 100px;
}

.ranking-total {
  display: inline-flex;
  flex-direction: column;
  gap: 7px;
  min-width: 245px;
  margin-top: 14px;
  padding: 18px 20px;
  border-left: 3px solid var(--green);
  background: rgba(255, 255, 255, 0.05);
}

.ranking-total span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
  font-weight: 800;
}

.ranking-total strong {
  color: var(--green);
  font-size: 24px;
}

.leaderboard {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(17px);
}

.leaderboard-head {
  display: flex;
  justify-content: space-between;
  padding: 10px 10px 22px;
}

.leaderboard-head strong {
  font-size: 13px;
}

.leaderboard-head span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
}

.runner-row {
  display: grid;
  grid-template-columns: 40px 42px 1fr auto;
  align-items: center;
  gap: 14px;
  min-height: 78px;
  margin-bottom: 8px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.16);
}

.rank-1 {
  border-color: rgba(255, 213, 31, 0.28);
  background: linear-gradient(90deg, rgba(255, 213, 31, 0.12), rgba(0, 0, 0, 0.1));
}

.rank-number {
  color: var(--yellow);
  font-size: 18px;
  font-weight: 900;
}

.runner-avatar {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: var(--night);
  font-size: 12px;
  font-weight: 900;
  border-radius: 50%;
  background: var(--green);
}

.runner-row > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.runner-row > div strong {
  font-size: 13px;
}

.runner-row > div small {
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
}

.runner-row > b {
  font-size: 17px;
}

.runner-row > b small {
  margin-left: 4px;
  color: var(--green);
  font-size: 8px;
}

.leaderboard > button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  height: 50px;
  margin-top: 14px;
  color: var(--night);
  font-size: 12px;
  font-weight: 900;
  border: 0;
  border-radius: 14px;
  background: var(--green);
  cursor: pointer;
}

.final-cta {
  position: relative;
  display: grid;
  min-height: 760px;
  place-items: center;
  overflow: hidden;
  color: #fff;
  text-align: center;
  background: var(--night) url("../images/final-dusk.jpg") center / cover no-repeat;
}

.final-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(4, 17, 41, 0.94), rgba(4, 17, 41, 0.28) 54%, rgba(4, 17, 41, 0.64)),
    radial-gradient(circle at 50% 55%, transparent 0, rgba(4, 17, 41, 0.15) 35%, rgba(4, 17, 41, 0.5) 100%);
}

.final-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.final-content .run-label {
  font-size: clamp(34px, 4.5vw, 58px);
}

.final-content h2 {
  font-size: clamp(45px, 5.6vw, 76px);
}

.final-content > p:not(.section-kicker) {
  margin: 24px 0 32px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
}

.final-button {
  min-width: 230px;
}

.final-note {
  margin-top: 18px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 10px;
}

footer {
  padding: 55px 0;
  color: rgba(255, 255, 255, 0.5);
  background: #020a18;
}

.footer-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 30px;
}

.footer-brand {
  color: #fff;
}

.footer-inner > p {
  margin: 0;
  font-size: 11px;
}

.partners {
  display: flex;
  gap: 28px;
  font-size: 7px;
  letter-spacing: 0.08em;
}

.partners span {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.partners b {
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  letter-spacing: 0;
}

.footer-inner > small {
  grid-column: 1 / -1;
  padding-top: 22px;
  color: rgba(255, 255, 255, 0.25);
  font-size: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.mobile-join {
  display: none;
}

.app-mark {
  position: relative;
  display: inline-grid;
  width: 34px;
  height: 34px;
  place-items: center;
  overflow: hidden;
  border-radius: 10px;
  background: linear-gradient(145deg, #6d43ff, #8f2fff);
  box-shadow: 0 8px 20px rgba(100, 46, 255, 0.28);
}

.app-mark span {
  position: absolute;
  width: 7px;
  height: 18px;
  border-radius: 99px;
  background: #fff;
  transform-origin: center;
}

.app-mark span:nth-child(1) { transform: rotate(0deg) translateY(-5px); }
.app-mark span:nth-child(2) { transform: rotate(120deg) translateY(-5px); }
.app-mark span:nth-child(3) { transform: rotate(240deg) translateY(-5px); }

.join-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 24px;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(1, 8, 20, 0.78);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.join-panel {
  position: relative;
  z-index: 1;
  width: min(460px, 100%);
  padding: 44px;
  overflow: hidden;
  color: #fff;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 30px;
  background:
    radial-gradient(circle at 80% 10%, rgba(54, 239, 122, 0.16), transparent 30%),
    var(--night);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 28px;
  border: 0;
  background: none;
  cursor: pointer;
}

.join-panel > .app-mark {
  width: 48px;
  height: 48px;
  margin-bottom: 16px;
  border-radius: 14px;
}

.join-panel > p {
  margin: 0 0 13px;
  color: var(--green);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.join-panel h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.15;
  letter-spacing: -0.06em;
}

.join-panel > span:not(.app-mark) {
  display: block;
  margin: 18px auto 24px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  line-height: 1.7;
}

.store-buttons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.store-buttons button,
.store-buttons a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 58px;
  padding: 0 20px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: #020816;
}

.store-buttons a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 152px;
  min-height: 54px;
  padding: 8px 18px;
  color: #fff;
  border-radius: 12px;
  background: #05080d;
  text-decoration: none;
}

.store-buttons small {
  opacity: 0.58;
  font-size: 7px;
}

.store-buttons strong {
  font-size: 15px;
}

.qr-placeholder {
  display: grid;
  grid-template-columns: 50px 1fr;
  grid-template-rows: 1fr 1fr;
  align-items: end;
  gap: 0 14px;
  margin-top: 10px;
  padding: 12px;
  text-align: left;
  border: 1px dashed rgba(255, 255, 255, 0.16);
  border-radius: 12px;
}

a.qr-placeholder {
  color: inherit;
  text-decoration: none;
}

[hidden] {
  display: none !important;
}

body.modal-open {
  overflow: hidden;
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.qr-placeholder i {
  grid-row: 1 / 3;
  width: 50px;
  height: 50px;
  background:
    linear-gradient(90deg, #fff 6px, transparent 6px) 0 0 / 13px 13px,
    linear-gradient(#fff 6px, transparent 6px) 0 0 / 13px 13px;
}

.qr-placeholder strong {
  align-self: end;
  color: var(--green);
  font-size: 11px;
}

.qr-placeholder span {
  align-self: start;
  color: rgba(255, 255, 255, 0.4);
  font-size: 8px;
}

.modal-help {
  display: block;
  margin-top: 13px;
  color: rgba(255, 255, 255, 0.28);
  font-size: 8px;
}

/* Live prize activity */
.winner-section {
  position: relative;
  padding: 130px 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 90% 5%, rgba(54, 239, 122, 0.12), transparent 26%),
    linear-gradient(180deg, #f4f7fb, #edf1f7);
}

.winner-section::before {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 360px;
  height: 360px;
  content: "";
  border: 1px solid rgba(25, 118, 255, 0.12);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(25, 118, 255, 0.025), 0 0 0 140px rgba(25, 118, 255, 0.018);
}

.winner-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 48px;
}

.winner-heading h2 em {
  color: var(--blue);
}

.winner-heading-copy {
  max-width: 420px;
  padding-bottom: 6px;
}

.winner-heading-copy strong {
  display: block;
  margin-bottom: 12px;
  font-size: 16px;
  letter-spacing: -0.035em;
}

.winner-heading-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.75;
}

.gift-live-layout {
   grid-template-columns: 1fr;
}

.winner-feed,
.prize-stock {
  border-radius: 30px;
}

.winner-feed {
  max-width: 860px;
  margin: 0 auto;
  width: 100%;
  padding: 22px;
  color: #fff;
  background:
    radial-gradient(circle at 82% 15%, rgba(25, 118, 255, 0.22), transparent 34%),
    var(--night);
  box-shadow: 0 24px 70px rgba(7, 21, 46, 0.18);
}

.winner-feed-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 4px 20px; 
}

.winner-feed-head > div {
  display: flex;
  align-items: center;
  gap: 5px;
}

.winner-feed-head strong {
  font-size: 12px;
}

.winner-feed-head > span {
  color: rgba(255, 255, 255, 0.38);
  font-size: 9px;
}

.winner-spotlight {
  position: relative;
  display: grid;
  grid-template-columns: 74px 1fr auto;
  align-items: center;
  min-height: 190px;
  padding: 30px;
  overflow: hidden;
  color: var(--night);
  border-radius: 22px;
  background: linear-gradient(135deg, #ffe568, var(--yellow));
}

.winner-spotlight::before {
  position: absolute;
  top: -90px;
  right: 60px;
  width: 250px;
  height: 250px;
  content: "";
  border: 1px solid rgba(7, 21, 46, 0.14);
  border-radius: 50%;
  box-shadow: 0 0 0 35px rgba(255, 255, 255, 0.11), 0 0 0 70px rgba(255, 255, 255, 0.08);
}

.winner-spotlight-burst {
  position: absolute;
  top: 20px;
  right: 22px;
  color: #fff;
  font-size: 34px;
  text-shadow: 0 0 25px #fff;
}

.winner-badge {
  position: absolute;
  top: 17px;
  left: 18px;
  padding: 6px 9px;
  color: #fff;
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.12em;
  border-radius: 999px;
  background: var(--night);
}

.winner-avatar-large {
  display: grid;
  width: 62px;
  height: 62px;
  margin-top: 15px;
  place-items: center;
  color: #fff;
  font-size: 20px;
  font-weight: 900;
  border: 3px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 12px 30px rgba(7, 21, 46, 0.18);
}

.winner-spotlight-copy {
  position: relative;
  z-index: 1;
  padding: 18px 20px 0;
}

.winner-spotlight-copy p {
  margin: 0 0 4px;
  font-size: 13px;
}

.winner-spotlight-copy h3 {
  display: inline;
  margin: 0;
  font-size: clamp(32px, 3.1vw, 47px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.winner-spotlight-copy > span {
  margin-left: 8px;
  font-size: 15px;
  font-weight: 900;
}

.winner-spotlight-copy small {
  display: block;
  margin-top: 12px;
  opacity: 0.56;
  font-size: 9px;
  font-weight: 700;
}

.winner-brand-stamp {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  margin-top: 18px;
  font-size: 7px;
  letter-spacing: 0.12em;
}

.winner-brand-stamp strong {
  font-size: 15px;
  letter-spacing: -0.02em;
}

.winner-list {
  display: grid;
  gap: 7px;
  margin-top: 10px;
}

.winner-item {
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 9px 15px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.045);
}

.winner-gift-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--night);
  font-size: 11px;
  font-weight: 900;
  border-radius: 10px;
  background: var(--green);
}

.tier-special .winner-gift-icon { background: #a8d2ff; }
.tier-daily .winner-gift-icon { background: var(--yellow); }
.tier-point .winner-gift-icon { color: #fff; background: #835bff; }

.winner-item-copy p {
  margin: 0 0 5px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
}

.winner-item-copy b {
  color: #fff;
}

.winner-item-copy span,
.winner-item > small {
  color: rgba(255, 255, 255, 0.34);
  font-size: 8px;
}

.winner-item > small {
  font-weight: 900;
  letter-spacing: 0.06em;
}

.prize-stock {
  padding: 30px;
  border: 1px solid #e0e5ed;
  background: #fff;
  box-shadow: 0 20px 55px rgba(7, 21, 46, 0.08);
}

.prize-stock-head > p {
  margin: 0 0 8px;
  color: var(--blue);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.prize-stock-head h3 {
  margin: 0 0 10px;
  font-size: 28px;
  letter-spacing: -0.055em;
}

.prize-stock-head > span {
  color: var(--muted);
  font-size: 10px;
}

.stock-list {
  display: grid;
  gap: 9px;
  margin-top: 26px;
}

.stock-item {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 78px;
  padding: 13px 15px 18px;
  overflow: hidden;
  border: 1px solid #e8ebf0;
  border-radius: 15px;
  background: #fafbfc;
}

.stock-rank,
.stock-name,
.stock-count {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.stock-rank span,
.stock-name span,
.stock-count small {
  color: #909aaa;
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.stock-rank strong {
  color: var(--blue);
  font-size: 9px;
}

.stock-name strong {
  font-size: 13px;
}

.stock-count {
  align-items: flex-end;
}

.stock-count strong {
  display: inline;
  font-size: 24px;
  line-height: 0.8;
}

.stock-count > span {
  margin-top: -17px;
  margin-right: -11px;
  color: var(--blue);
  font-size: 7px;
  font-weight: 900;
}

.stock-progress {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  background: #e9edf3;
}

.stock-progress i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--green), var(--blue));
}

.stock-ipad {
  border-color: rgba(255, 213, 31, 0.5);
  background: linear-gradient(90deg, rgba(255, 213, 31, 0.11), #fff);
}

.stock-note {
  margin: 17px 0 0;
  color: #9da6b4;
  font-size: 8px;
  line-height: 1.6;
}

.winner-ticker {
  display: flex;
  align-items: center;
  height: 52px;
  margin-top: 14px;
  overflow: hidden;
  color: #fff;
  border-radius: 15px;
  background: var(--night);
}

.ticker-label {
  position: relative;
  z-index: 1;
  display: grid;
  align-self: stretch;
  min-width: 80px;
  place-items: center;
  color: var(--night);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.12em;
  background: var(--green);
}

.ticker-track {
  display: flex;
  flex: 0 0 auto;
  gap: 48px;
  padding-left: 48px;
  white-space: nowrap;
  animation: prize-ticker 38s linear infinite;
}

.ticker-track span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
}

.ticker-track b {
  color: #fff;
}

.ticker-track i {
  margin: 0 7px;
  color: var(--green);
  font-style: normal;
}

@keyframes prize-ticker {
  to { transform: translateX(-50%); }
}

/* Prize catalog */
.prize-catalog-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 50px;
}

.prize-catalog-heading h2 em {
  color: var(--yellow);
}

.prize-catalog-heading > div:last-child {
  max-width: 430px;
}

.prize-catalog-heading > div:last-child > p {
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.prize-catalog-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.prize-catalog-card {
  position: relative;
  min-height: 440px;
  padding: 20px;
  overflow: hidden;
  border-radius: 26px;
  background: #eef1f5;
}

.prize-catalog-card::before {
  position: absolute;
  top: 62px;
  left: 50%;
  width: 190px;
  height: 190px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  transform: translateX(-50%);
}

.prize-ipad { background: linear-gradient(145deg, #dfe7ef, #aebbc8); }
.prize-nike { color: #fff; background: linear-gradient(145deg, #24262a, #050608); }
.prize-tumbler { background: linear-gradient(145deg, #ecd9c2, #c9a982); }
.prize-bbq { background: linear-gradient(145deg, #ffdf22, #ffb800); }
.prize-points { color: #fff; background: linear-gradient(145deg, #5f3cff, #153c9b); }

.catalog-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.catalog-top span,
.catalog-top b {
  font-size: 7px;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.catalog-top b {
  opacity: 0.36;
  font-size: 10px;
}

.prize-art {
  position: absolute;
  top: 105px;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
}

.tablet-art {
  width: 126px;
  height: 174px;
  padding: 10px;
  border: 4px solid #4b535d;
  border-radius: 15px;
  background: #080e19;
  box-shadow: 0 25px 35px rgba(7, 21, 46, 0.25);
  transform: translateX(-50%) rotate(-6deg);
}

.tablet-art i {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: linear-gradient(145deg, #1d65ff, #3aed81 55%, #ffd51f);
}

.tablet-art span {
  position: absolute;
  right: 0;
  bottom: 28px;
  left: 0;
  color: #fff;
  font-size: 9px;
  font-weight: 900;
  text-align: center;
}

.shoe-art {
  width: 175px;
  height: 120px;
  transform: translateX(-50%) rotate(-8deg);
}

.shoe-art i {
  position: absolute;
  top: 28px;
  left: 18px;
  width: 142px;
  height: 70px;
  border-radius: 60% 18% 28% 25%;
  background: linear-gradient(145deg, #f4f4f4, #aeb3b8);
  box-shadow: 0 24px 25px rgba(0, 0, 0, 0.35);
  transform: skewX(-13deg);
}

.shoe-art i::before {
  position: absolute;
  right: -10px;
  bottom: -8px;
  left: 6px;
  height: 14px;
  content: "";
  border-radius: 99px;
  background: var(--green);
}

.shoe-art b {
  position: absolute;
  top: 51px;
  left: 59px;
  z-index: 1;
  color: #111;
  font-size: 14px;
  font-style: italic;
  transform: skewX(-14deg);
}

.shoe-art span {
  position: absolute;
  right: 14px;
  bottom: -18px;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.tumbler-art {
  width: 90px;
  height: 172px;
  border-radius: 20px 20px 34px 34px;
  background: linear-gradient(90deg, #7b5a39, #e6c49e 48%, #8d6844);
  box-shadow: 0 27px 34px rgba(74, 44, 20, 0.25);
  transform: translateX(-50%) rotate(4deg);
}

.tumbler-art::before {
  position: absolute;
  top: -9px;
  left: 5px;
  width: 80px;
  height: 20px;
  content: "";
  border-radius: 50%;
  background: #4a3420;
}

.tumbler-art i {
  position: absolute;
  top: 10px;
  right: 13px;
  width: 14px;
  height: 120px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.18);
}

.tumbler-art b {
  position: absolute;
  right: 0;
  bottom: 34px;
  left: 0;
  color: #fff;
  font-size: 9px;
  text-align: center;
  letter-spacing: 0.1em;
}

.coupon-art {
  display: flex;
  flex-direction: column;
  width: 165px;
  height: 104px;
  padding: 20px;
  color: #fff;
  border: 2px dashed rgba(255, 255, 255, 0.48);
  border-radius: 18px;
  background: #e32320;
  box-shadow: 0 24px 35px rgba(112, 34, 0, 0.22);
  transform: translateX(-50%) rotate(-5deg);
}

.coupon-art span {
  font-size: 25px;
  font-weight: 900;
}

.coupon-art strong {
  color: var(--yellow);
  font-size: 14px;
}

.coupon-art i {
  margin-top: auto;
  opacity: 0.6;
  font-size: 7px;
  font-style: normal;
  letter-spacing: 0.18em;
}

.point-art {
  width: 160px;
  height: 145px;
  transform: translateX(-50%);
}

.point-art i {
  position: absolute;
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  color: var(--night);
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
  border: 5px solid #ffeb83;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 15px 28px rgba(0, 0, 0, 0.25);
}

.point-art i:nth-child(1) { top: 18px; left: 4px; transform: rotate(-13deg); }
.point-art i:nth-child(2) { top: 0; right: 7px; transform: rotate(12deg); }
.point-art i:nth-child(3) { right: 44px; bottom: 14px; z-index: 2; }
.point-art strong { position: absolute; right: 0; bottom: -3px; left: 0; font-size: 8px; text-align: center; letter-spacing: 0.15em; }

.catalog-copy {
  position: absolute;
  right: 20px;
  bottom: 22px;
  left: 20px;
  z-index: 2;
}

.catalog-copy > p {
  margin: 0 0 7px;
  opacity: 0.55;
  font-size: 6px;
  letter-spacing: 0.08em;
}

.catalog-copy > p strong {
  font-size: 8px;
}

.catalog-copy h3 {
  min-height: 50px;
  margin: 0;
  font-size: 19px;
  line-height: 1.25;
  letter-spacing: -0.045em;
}

.catalog-copy > div {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  padding-top: 12px;
  border-top: 1px solid rgba(7, 21, 46, 0.13);
}

.prize-nike .catalog-copy > div,
.prize-points .catalog-copy > div {
  border-top-color: rgba(255, 255, 255, 0.17);
}

.catalog-copy > div span,
.catalog-copy > div strong {
  font-size: 7px;
}

.catalog-copy > div span {
  opacity: 0.55;
}

.reward-rule-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 14px;
  padding: 26px;
  color: #fff;
  border-radius: 22px;
  background: var(--night);
}

.reward-rule-strip > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  padding: 0 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.reward-rule-strip > div:last-child {
  border-right: 0;
}

.reward-rule-strip span {
  grid-row: 1 / 3;
  color: var(--green);
  font-size: 10px;
  font-weight: 900;
}

.reward-rule-strip strong {
  font-size: 12px;
}

.reward-rule-strip p {
  margin: 7px 0 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 9px;
}

/* Reward partners and sponsorship */
.sponsor-section {
  position: relative;
  padding: 130px 0;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 12% 18%, rgba(54, 239, 122, 0.14), transparent 25%),
    radial-gradient(circle at 90% 70%, rgba(25, 118, 255, 0.18), transparent 29%),
    #061630;
}

.sponsor-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 60px;
  margin-bottom: 48px;
}

.sponsor-heading h2 em {
  color: var(--green);
}

.sponsor-heading > p {
  max-width: 430px;
  margin: 0 0 7px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  line-height: 1.8;
}

.partner-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 9px;
}

.partner-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 205px;
  padding: 20px;
  overflow: hidden;
  color: var(--night);
  border-radius: 20px;
  background: #fff;
}

.partner-mark {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  font-size: 20px;
  font-weight: 900;
  border: 1px solid rgba(7, 21, 46, 0.12);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.5);
}

.partner-card > div {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: auto;
}

.partner-card > div strong {
  font-size: 14px;
  letter-spacing: -0.035em;
}

.partner-card > div span {
  opacity: 0.55;
  font-size: 9px;
}

.partner-card > small {
  position: absolute;
  top: 24px;
  right: -31px;
  width: 110px;
  padding: 5px 0;
  color: rgba(7, 21, 46, 0.5);
  font-size: 5px;
  font-weight: 900;
  text-align: center;
  letter-spacing: 0.08em;
  background: rgba(255, 255, 255, 0.48);
  transform: rotate(45deg);
}

.partner-silver { background: linear-gradient(145deg, #f6f8fa, #c8d1db); }
.partner-black { color: #fff; background: #0c0d0f; }
.partner-sand { background: #dbc4a8; }
.partner-yellow { background: var(--yellow); }
.partner-violet { color: #fff; background: #7040ed; }
.partner-blue { color: #fff; background: #195fd8; }
.partner-black > small,
.partner-violet > small,
.partner-blue > small { color: rgba(255, 255, 255, 0.7); background: rgba(255, 255, 255, 0.12); }

.sponsor-pitch {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  margin-top: 18px;
  overflow: hidden;
  color: var(--night);
  border-radius: 32px;
  background: var(--yellow);
}

.sponsor-pitch-copy {
  padding: 55px;
}

.sponsor-pitch-copy > p {
  margin: 0 0 16px;
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.sponsor-pitch-copy h3 {
  margin: 0;
  font-size: clamp(38px, 4.2vw, 58px);
  line-height: 1.05;
  letter-spacing: -0.065em;
}

.sponsor-pitch-copy h3 em {
  color: var(--blue);
  font-style: normal;
}

.sponsor-pitch-copy > span {
  display: block;
  max-width: 430px;
  margin: 24px 0 28px;
  font-size: 12px;
  line-height: 1.8;
}

.sponsor-button {
  color: #fff;
  background: var(--night);
}

.sponsor-pitch-copy > small {
  display: block;
  margin-top: 15px;
  opacity: 0.55;
  font-size: 8px;
}

.sponsor-benefits {
  padding: 30px;
  background: rgba(255, 255, 255, 0.55);
}

.sponsor-benefits > article {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  min-height: 88px;
  padding: 10px 18px;
  border-bottom: 1px solid rgba(7, 21, 46, 0.11);
}

.sponsor-benefits > article > span {
  color: var(--blue);
  font-size: 11px;
  font-weight: 900;
}

.sponsor-benefits article div {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.sponsor-benefits article strong {
  font-size: 13px;
}

.sponsor-benefits article p {
  margin: 0;
  color: #657188;
  font-size: 9px;
}

.sponsor-numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
  margin-top: 18px;
}

.sponsor-numbers div {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 17px;
  color: #fff;
  border-radius: 14px;
  background: var(--night);
}

.sponsor-numbers strong {
  color: var(--green);
  font-size: 20px;
}

.sponsor-numbers span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 8px;
}

/* Sponsor inquiry modal */
.sponsor-modal {
  overflow-y: auto;
}

.sponsor-panel {
  position: relative;
  z-index: 1;
  width: min(820px, 100%);
  max-height: calc(100vh - 48px);
  padding: 40px;
  overflow-y: auto;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background:
    radial-gradient(circle at 92% 4%, rgba(54, 239, 122, 0.14), transparent 26%),
    var(--night);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.5);
}

.sponsor-modal-head > p {
  margin: 0 0 11px;
  color: var(--green);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.sponsor-modal-head h2 {
  margin: 0;
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -0.055em;
}

.sponsor-modal-head h2 em {
  color: var(--yellow);
  font-style: normal;
}

.sponsor-modal-head > span {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  line-height: 1.7;
}

.sponsor-form {
  margin-top: 25px;
}

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

.sponsor-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sponsor-form label > span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 9px;
  font-weight: 800;
}

.sponsor-form input,
.sponsor-form textarea {
  width: 100%;
  color: #fff;
  font: inherit;
  font-size: 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  outline: 0;
  background: rgba(255, 255, 255, 0.065);
  transition: border-color 0.2s ease, background 0.2s ease;
}

.sponsor-form input {
  height: 48px;
  padding: 0 15px;
  border-radius: 11px;
}

.sponsor-form textarea {
  padding: 14px 15px;
  resize: vertical;
  border-radius: 11px;
}

.sponsor-form input:focus,
.sponsor-form textarea:focus {
  border-color: var(--green);
  background: rgba(54, 239, 122, 0.07);
}

.sponsor-form input::placeholder,
.sponsor-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.25);
}

.form-message {
  margin-top: 12px;
}

.agree-row {
  flex-direction: row !important;
  align-items: center;
  gap: 9px !important;
  margin: 14px 0;
}

.agree-row input {
  width: 15px;
  height: 15px;
  accent-color: var(--green);
}

.agree-row span {
  color: rgba(255, 255, 255, 0.42) !important;
  font-size: 8px !important;
}

.form-error {
  margin: 10px 0;
  color: #ff8a8a;
  font-size: 10px;
}

.sponsor-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  height: 54px;
  color: var(--night);
  font-size: 12px;
  font-weight: 900;
  border: 0;
  border-radius: 12px;
  background: var(--green);
  cursor: pointer;
}

.sponsor-submit:disabled {
  opacity: 0.6;
  cursor: wait;
}

.sponsor-submit svg {
  width: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
}

.sponsor-contact {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.38);
  font-size: 8px;
}

.sponsor-contact strong {
  color: rgba(255, 255, 255, 0.68);
}

.sponsor-contact i {
  font-style: normal;
}

.sponsor-success {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 50px 20px 30px;
  text-align: center;
}

.sponsor-success > span {
  display: grid;
  width: 64px;
  height: 64px;
  place-items: center;
  color: var(--night);
  font-size: 28px;
  font-weight: 900;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 40px rgba(54, 239, 122, 0.33);
}

.sponsor-success > p {
  margin: 22px 0 10px;
  color: var(--green);
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.15em;
}

.sponsor-success h2 {
  margin: 0;
  font-size: 36px;
  line-height: 1.16;
  letter-spacing: -0.055em;
}

.sponsor-success > strong {
  margin-top: 18px;
  font-size: 12px;
}

.sponsor-success > small {
  max-width: 430px;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.36);
  font-size: 9px;
  line-height: 1.6;
}

.sponsor-success > button {
  width: 190px;
  height: 48px;
  margin-top: 25px;
  color: var(--night);
  font-size: 12px;
  font-weight: 900;
  border: 0;
  border-radius: 999px;
  background: var(--green);
  cursor: pointer;
}

@media (max-width: 1100px) {
  .hero {
    min-height: 820px;
  }

  .nav-links {
    gap: 21px;
  }

  .live-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .step-phone {
    height: 520px;
  }

  .courses-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .reward-layout,
  .ranking-layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .reward-copy,
  .ranking-copy {
    max-width: 620px;
  }
}

@media (max-width: 820px) {
  .container {
    width: min(100% - 36px, var(--container));
  }

  .site-header {
    height: 64px;
    padding: 0 18px;
  }

  .nav-links {
    position: absolute;
    top: 64px;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 0;
    padding: 14px 18px 20px;
    background: rgba(3, 14, 33, 0.98);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-links a {
    padding: 15px 4px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .event-period,
  .header-cta {
    display: none;
  }

  .menu-button {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 38px;
    height: 38px;
    padding: 0 9px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.09);
  }

  .menu-button span {
    width: 100%;
    height: 1px;
    background: #fff;
    transition: transform 0.2s ease;
  }

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

  .hero {
    min-height: 820px;
    background-position: 66% 50%;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(4, 17, 41, 0.94), rgba(4, 17, 41, 0.48)),
      linear-gradient(0deg, rgba(4, 17, 41, 0.97), transparent 56%);
  }

  .hero-content {
    align-self: flex-end;
    padding: 120px 0 70px;
  }

  .hero-copy br {
    display: none;
  }

  .hero-facts {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 42px;
  }

  .hero-side-note {
    display: none;
  }

  .live-section,
  .how-section,
  .courses-section,
  .reward-section,
  .ranking-section {
    padding: 95px 0;
  }

  .live-heading,
  .split-heading,
  .courses-heading {
    flex-direction: column;
    align-items: flex-start;
  }

  .live-meta {
    align-items: flex-start;
  }

  .split-heading > p {
    max-width: 620px;
  }

  .step-phone {
    height: 410px;
  }

  .why-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-strip > div:nth-child(2) {
    border-right: 0;
  }

  .why-strip > div:nth-child(-n+2) {
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .moment-layout {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .course-filter {
    overflow-x: auto;
    width: 100%;
    padding-bottom: 4px;
  }

  .course-filter button {
    flex: 0 0 auto;
  }

  .reward-cards {
    overflow-x: auto;
    margin-right: -18px;
    padding-right: 18px;
    scroll-snap-type: x mandatory;
  }

  .reward-card {
    min-width: 260px;
    scroll-snap-align: start;
  }

  .final-cta {
    min-height: 680px;
  }

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

  .partners {
    margin: 10px 0;
  }
}

@media (max-width: 560px) {
  body {
    padding-bottom: 74px;
  }

  .brand-primary,
  .brand-run {
    font-size: 17px;
  }

  .hero {
    min-height: 790px;
    background-position: 63% center;
  }

  .hero h1 {
    font-size: 39px;
  }

  .run-label {
    font-size: 35px;
  }

  .hero-copy {
    font-size: 14px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .hero-facts {
    gap: 0;
  }

  .hero-facts > div {
    padding-left: 12px;
  }

  .hero-facts strong {
    font-size: 21px;
  }

  .hero-facts span {
    font-size: 8px;
  }

  .section-heading h2,
  .reward-copy h2,
  .ranking-copy h2,
  .final-content h2 {
    font-size: 39px;
  }

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

  .stat-card {
    min-height: 190px;
    padding: 24px 19px;
  }

  .stat-card-main {
    grid-column: 1 / -1;
    min-height: 220px;
  }

  .stat-label {
    margin-bottom: 20px;
    font-size: 10px;
  }

  .stat-card strong {
    font-size: 33px;
  }

  .stat-card p {
    display: none;
  }

  .treasure-stat {
    grid-column: 1 / -1;
  }

  .running-now {
    display: grid;
    grid-template-columns: 34px 1fr;
  }

  .running-now > span:nth-of-type(2) {
    grid-column: 2;
  }

  .running-now button {
    grid-column: 1 / -1;
    justify-content: center;
    width: 100%;
    height: 42px;
    margin: 7px 0 0;
    border-radius: 10px;
    background: rgba(54, 239, 122, 0.1);
  }

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

  .step-phone {
    height: 560px;
  }

  .why-strip {
    grid-template-columns: 1fr;
  }

  .why-strip > div {
    padding: 18px 16px !important;
    margin: 0 !important;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .why-strip > div:last-child {
    border-bottom: 0;
  }

  .moment-section {
    padding: 90px 0;
  }

  .moment-copy h2 {
    font-size: 52px;
  }

  .moment-visual {
    margin: 0 -18px;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
  }

  .moment-visual img {
    min-height: 100%;
  }

  .moment-visual {
    min-height: 370px;
  }

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

  .courses-heading {
    gap: 26px;
  }

  .reward-layout,
  .ranking-layout {
    gap: 40px;
  }

  .reward-cards {
    display: flex;
  }

  .runner-row {
    grid-template-columns: 26px 38px 1fr auto;
    gap: 8px;
    padding: 0 12px;
  }

  .runner-row > b {
    font-size: 14px;
  }

  .final-cta {
    min-height: 640px;
  }

  .final-content > p:not(.section-kicker) {
    line-height: 1.7;
  }

  .mobile-join {
    position: fixed;
    right: 10px;
    bottom: 10px;
    left: 10px;
    z-index: 120;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 58px;
    color: var(--night);
    font-size: 13px;
    font-weight: 900;
    border: 0;
    border-radius: 16px;
    background: var(--green);
    box-shadow: 0 12px 30px rgba(0, 8, 25, 0.32);
  }

  .mobile-join .app-mark {
    width: 28px;
    height: 28px;
    border-radius: 8px;
  }

  .mobile-join > svg {
    width: 16px;
  }

  .join-panel {
    padding: 38px 24px 28px;
  }

  .store-buttons {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1100px) {
  .gift-live-layout {
    grid-template-columns: 1fr;
  }

  .prize-catalog-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .prize-catalog-card {
    min-height: 420px;
  }

  .partner-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .sponsor-pitch {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  .winner-section,
  .sponsor-section {
    padding: 95px 0;
  }

  .winner-heading,
  .prize-catalog-heading,
  .sponsor-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .winner-heading-copy,
  .prize-catalog-heading > div:last-child,
  .sponsor-heading > p {
    max-width: 620px;
  }

  .prize-catalog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .prize-points {
    grid-column: 1 / -1;
  }

  .reward-rule-strip {
    grid-template-columns: 1fr;
  }

  .reward-rule-strip > div {
    padding: 18px 12px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .reward-rule-strip > div:last-child {
    border-bottom: 0;
  }

  .sponsor-pitch-copy {
    padding: 42px;
  }

  .sponsor-panel {
    padding: 34px;
  }
}

@media (max-width: 560px) {
  .winner-section,
  .sponsor-section {
    padding: 82px 0;
  }

  .winner-heading,
  .prize-catalog-heading,
  .sponsor-heading {
    margin-bottom: 34px;
  }

  .winner-feed,
  .prize-stock {
    padding: 16px;
    border-radius: 22px;
  }

  .winner-feed-head {
    align-items: flex-start;
    gap: 8px;
  }

  .winner-feed-head > span {
    max-width: 130px;
    text-align: right;
    line-height: 1.5;
  }

  .winner-spotlight {
    grid-template-columns: 52px 1fr;
    min-height: 190px;
    padding: 26px 18px;
  }

  .winner-avatar-large {
    width: 48px;
    height: 48px;
    font-size: 16px;
  }

  .winner-spotlight-copy {
    padding-right: 0;
  }

  .winner-spotlight-copy h3 {
    font-size: 30px;
  }

  .winner-spotlight-copy > span {
    display: block;
    margin: 6px 0 0;
  }

  .winner-brand-stamp {
    position: absolute;
    right: 18px;
    bottom: 14px;
  }

  .winner-item {
    grid-template-columns: 34px 1fr;
  }

  .winner-item > small {
    display: none;
  }

  .prize-stock-head h3 {
    font-size: 24px;
  }

  .stock-item {
    grid-template-columns: 0.75fr 1fr auto;
    padding-right: 12px;
    padding-left: 12px;
  }

  .stock-rank span {
    letter-spacing: 0;
  }

  .stock-count strong {
    font-size: 20px;
  }

  .ticker-label {
    min-width: 64px;
  }

  .prize-catalog-grid {
    grid-template-columns: 1fr;
  }

  .prize-points {
    grid-column: auto;
  }

  .prize-catalog-card {
    min-height: 410px;
  }

  .partner-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partner-card {
    min-height: 176px;
  }

  .sponsor-pitch {
    margin-right: -18px;
    margin-left: -18px;
    border-radius: 0;
  }

  .sponsor-pitch-copy,
  .sponsor-benefits {
    padding: 28px 22px;
  }

  .sponsor-button {
    width: 100%;
  }

  .sponsor-numbers {
    grid-template-columns: 1fr 1fr 1fr;
  }

  .sponsor-numbers div {
    padding: 12px 9px;
  }

  .sponsor-numbers strong {
    font-size: 16px;
  }

  .sponsor-panel {
    max-height: calc(100vh - 24px);
    padding: 32px 19px 24px;
    border-radius: 22px;
  }

  .sponsor-modal-head h2 {
    font-size: 30px;
  }

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

  .sponsor-contact {
    flex-wrap: wrap;
    line-height: 1.6;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
/* =========================================================
   HERO 이벤트 참여 카드
========================================================= */

.hero .hero-content {
  position: relative;
  box-sizing: border-box;
}

.hero-event-card {
  position: absolute;
  z-index: 5;
  top: 50%;
  right: 0;
  width: min(410px, 34vw);
  padding: 24px;
  color: #fff;

  background:
    linear-gradient(
      145deg,
      rgba(13, 50, 103, 0.94),
      rgba(4, 25, 59, 0.96)
    );

  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px 28px 4px 28px;
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.4),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);

  backdrop-filter: blur(13px);
  -webkit-backdrop-filter: blur(13px);

  transform: translateY(-50%);
  overflow: hidden;
}

/* 배경 장식 */
.hero-event-card::before {
  content: "";
  position: absolute;
  top: -75px;
  right: -65px;
  width: 190px;
  height: 190px;
  border: 35px solid rgba(45, 239, 136, 0.08);
  border-radius: 50%;
  pointer-events: none;
}

.hero-event-card::after {
  content: "RUN TO GET";
  position: absolute;
  right: -5px;
  bottom: 4px;
  color: rgba(255, 255, 255, 0.035);
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.06em;
  white-space: nowrap;
  pointer-events: none;
}

/* 상단 행사 기간 */
.hero-event-head {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 14px;
  padding-bottom: 17px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-event-kicker {
  flex-shrink: 0;
  padding: 6px 9px 5px;
  color: #03130c;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.12em;
  background: var(--green, #2def88);
  transform: rotate(-2deg);
}

.hero-event-date {
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero-event-date span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 12px;
  font-weight: 700;
}

.hero-event-date strong {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.hero-event-date i {
  margin: 0 2px;
  color: var(--green, #2def88);
  font-style: normal;
}

/* 참여 방법 제목 */
.hero-event-method {
  position: relative;
  z-index: 1;
  padding: 18px 0;
}

.hero-event-title {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin-bottom: 13px;
}

.hero-event-title span {
  color: var(--green, #2def88);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.13em;
}

.hero-event-title strong {
  font-size: 18px;
  font-weight: 900;
}

/* 참여 순서 */
.hero-event-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-event-steps li {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 54px;
  padding: 9px 10px;
  background: rgba(255, 255, 255, 0.075);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
}

.hero-event-steps .step-number {
  display: flex;
  flex: 0 0 27px;
  align-items: center;
  justify-content: center;
  width: 27px;
  height: 27px;
  color: #05170d;
  font-size: 10px;
  font-weight: 900;
  background: var(--green, #2def88);
  border-radius: 50%;
}

.hero-event-steps p {
  margin: 0;
  line-height: 1.25;
}

.hero-event-steps small {
  display: block;
  margin-bottom: 2px;
  color: rgba(255, 255, 255, 0.45);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.hero-event-steps strong {
  display: block;
  color: #fff;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

/* 보상 영역 */
.hero-reward-box {
  position: relative;
  z-index: 1;
  margin: 0 -24px -24px;
  padding: 18px 24px 21px;
  background: rgba(0, 0, 0, 0.24);
}

.hero-reward-heading {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 13px;
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: -0.04em;
}

.hero-reward-heading em {
  color: #dfff00;
  font-size: 20px;
  font-style: normal;
}

.hero-reward-heading::after {
  content: "";
  flex: 1;
  height: 1px;
  margin-left: 7px;
  background: rgba(255, 255, 255, 0.35);
}

.hero-reward-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 105px;
  gap: 15px;
  align-items: end;
}

.hero-reward-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-reward-list li {
  position: relative;
  padding-left: 13px;
}

.hero-reward-list li::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 0;
  width: 5px;
  height: 5px;
  background: #dfff00;
  transform: rotate(45deg);
}

.hero-reward-list span {
  display: block;
  margin-bottom: 1px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 10px;
  font-weight: 700;
}

.hero-reward-list strong {
  display: block;
  color: #dfff00;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.035em;
}

/* PC QR */
.hero-event-qr {
  text-align: center;
}

.hero-event-qr > span {
  display: block;
  margin-bottom: 5px;
  padding: 4px 5px;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 20px;
}

.hero-event-qr-image {
  padding: 5px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.hero-event-qr-image img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
}

.hero-event-qr small {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 8px;
}

.only-mobile {
  display: none !important;
}

/* PC: 참여 버튼 대신 QR 노출 */
@media (min-width: 1025px) {
  .hero .hero-content {
    padding-right: 0;
  }

  .hero-actions [data-open-join] {
    display: none;
  }

  .hero-event-card {
    left: 50%;
    right: auto;
    width: calc(100vw - 64px);
    max-width: none;
    transform: translate(-50%, -50%);
  }

  .hero-info-row {
    width: 100%;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  }
}

/* =========================================================
   태블릿·모바일
========================================================= */

@media (max-width: 1024px) {
  .hero .hero-content {
    padding-right: var(--container-padding, 20px);
  }

  .hero-event-card {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    max-width: 650px;
    margin: 24px 0 20px;
    padding: 20px;
    transform: none;
  }

  .hero-event-qr {
    display: none;
  }

  .hero-reward-layout {
    display: block;
  }

  .hero-reward-box {
    margin: 0 -20px -20px;
    padding: 17px 20px 20px;
  }

  .only-pc {
    display: none !important;
  }

  .only-mobile {
    display: block !important;
  }

  /* 모바일에서는 기존 참여 버튼 표시 */
  .hero-actions [data-open-join] {
    display: inline-flex;
  }
}

@media (max-width: 560px) {
  .hero-event-card {
    margin-top: 20px;
    border-radius: 3px 22px 3px 22px;
  }

  .hero-event-head {
    align-items: flex-start;
  }

  .hero-event-date {
    display: block;
  }

  .hero-event-date span {
    display: block;
    margin-bottom: 3px;
  }

  .hero-event-date strong {
    font-size: 16px;
  }

  .hero-event-steps {
    gap: 7px;
  }

  .hero-event-steps li {
    align-items: flex-start;
    min-height: 67px;
    padding: 9px 8px;
  }

  .hero-event-steps .step-number {
    flex-basis: 23px;
    width: 23px;
    height: 23px;
    font-size: 8px;
  }

  .hero-event-steps strong {
    font-size: 10.5px;
  }

  .hero-reward-heading {
    font-size: 15px;
  }

  .hero-reward-heading em {
    font-size: 18px;
  }

  .hero-reward-list strong {
    font-size: 13px;
  }
}

/* =========================================================
   도장깨기 보상 흐름
========================================================= */

.mrp-stamp-guide {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 18px;
  margin: 32px 0;
  padding: 18px 24px;
  background:
    linear-gradient(
      100deg,
      rgba(39, 237, 130, 0.09),
      rgba(255, 207, 39, 0.06)
    );
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
}

.mrp-stamp-guide-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.mrp-stamp-guide-item p {
  margin: 0;
}

.mrp-stamp-guide-item small {
  display: block;
  margin-bottom: 3px;
  color: rgba(255, 255, 255, 0.48);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.mrp-stamp-guide-item strong {
  display: block;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
}

.mrp-guide-icon {
  display: inline-flex;
  flex: 0 0 48px;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  color: #06172e;
  font-size: 11px;
  font-weight: 950;
  background: #fff;
  border-radius: 50%;
  transform: rotate(-5deg);
}

.mrp-guide-point {
  color: #051d12;
  background: #28ed83;
  border: 2px solid rgba(255, 255, 255, 0.55);
}

.mrp-stamp-guide-special .mrp-guide-icon {
  color: #171000;
  background: #ffcf27;
}

.mrp-stamp-guide-special strong {
  color: #ffdc40;
}

.mrp-stamp-guide-arrow {
  color: rgba(255, 255, 255, 0.38);
  font-size: 23px;
  font-weight: 300;
}

/* =========================================================
   스탬프 그리드
========================================================= */

.mrp-stamp-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 16px;
}

.mrp-course-stamp {
  --mrp-stamp-color: #2def88;
  --mrp-stamp-rgb: 45, 239, 136;

  position: relative;
  display: flex;
  min-width: 0;
  min-height: 244px;
  align-items: center;
  justify-content: center;
  padding: 41px 14px 64px;
  color: #fff;
  font: inherit;
  text-align: center;

  background:
    radial-gradient(
      circle at 50% 42%,
      rgba(var(--mrp-stamp-rgb), 0.07),
      transparent 51%
    ),
    rgba(255, 255, 255, 0.035);

  border: 1px dashed rgba(255, 255, 255, 0.22);
  border-radius: 22px;
  cursor: pointer;
  overflow: hidden;

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease,
    box-shadow 0.25s ease;
}

.mrp-course-stamp:hover {
  z-index: 2;
  border-color: rgba(var(--mrp-stamp-rgb), 0.65);
  background-color: rgba(var(--mrp-stamp-rgb), 0.055);
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.2);
  transform: translateY(-5px);
}

.mrp-course-stamp:focus-visible {
  outline: 3px solid rgba(var(--mrp-stamp-rgb), 0.48);
  outline-offset: 4px;
}

/* 코스 번호 */
.mrp-course-index {
  position: absolute;
  top: 14px;
  left: 15px;
  color: rgba(255, 255, 255, 0.46);
  font-size: 9px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.12em;
}

/* =========================================================
   실제 잉크 도장 형태
========================================================= */

.mrp-stamp-mark {
  position: relative;
  display: flex;
  width: 112px;
  height: 112px;
  align-items: center;
  justify-content: center;
  color: var(--mrp-stamp-color);

  border: 4px solid currentColor;
  border-radius: 50%;
  opacity: 0.28;
  transform: rotate(-8deg);

  filter: grayscale(0.3);
  transition:
    opacity 0.25s ease,
    filter 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

/* 도장 바깥쪽 불규칙 잉크 */
.mrp-stamp-mark::before {
  content: "";
  position: absolute;
  inset: 5px;
  border: 2px dashed currentColor;
  border-radius: 50%;
  opacity: 0.72;
}

/* 도장 양쪽 별 */
.mrp-stamp-mark::after {
  content: "★";
  position: absolute;
  top: 50%;
  right: 7px;
  color: currentColor;
  font-size: 7px;
  transform: translateY(-50%);
}

.mrp-stamp-inner {
  position: relative;
  z-index: 1;
  display: flex;
  width: 82px;
  height: 82px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
}

.mrp-stamp-inner::before {
  content: "★";
  position: absolute;
  top: 50%;
  left: -1px;
  color: currentColor;
  font-size: 7px;
  transform: translateY(-50%);
}

.mrp-stamp-inner small {
  display: block;
  margin-bottom: 1px;
  color: currentColor;
  font-size: 8px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0.12em;
}

.mrp-stamp-inner strong {
  display: block;
  color: currentColor;
  font-size: 27px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.055em;
}

.mrp-stamp-inner em {
  display: block;
  margin-top: 3px;
  color: currentColor;
  font-size: 7px;
  font-style: normal;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0.06em;
}

/* 코스명 */
.mrp-course-info {
  position: absolute;
  right: 12px;
  bottom: 16px;
  left: 12px;
  display: block;
}

.mrp-course-info strong {
  display: block;
  margin-bottom: 4px;
  color: #fff;
  font-size: 14px;
  font-weight: 850;
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.mrp-course-info small {
  display: block;
  color: rgba(255, 255, 255, 0.45);
  font-size: 11px;
}

/* =========================================================
   6번째·12번째 스페셜 도장
========================================================= */

.mrp-course-stamp-special {
  --mrp-stamp-color: #ffd127;
  --mrp-stamp-rgb: 255, 209, 39;

  background:
    radial-gradient(
      circle at 50% 42%,
      rgba(255, 209, 39, 0.1),
      transparent 53%
    ),
    linear-gradient(
      145deg,
      rgba(255, 209, 39, 0.055),
      rgba(255, 255, 255, 0.025)
    );

  border-style: solid;
  border-color: rgba(255, 209, 39, 0.35);
}

.mrp-special-ribbon {
  position: absolute;
  top: 13px;
  right: -25px;
  width: 95px;
  padding: 5px 4px;
  color: #171000;
  font-size: 8px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0.07em;
  background: #ffd127;
  transform: rotate(38deg);
}

.mrp-special-stamp {
  width: 118px;
  height: 118px;
  transform: rotate(6deg);
}

.mrp-special-stamp .mrp-stamp-inner strong {
  font-size: 16px;
  letter-spacing: 0.015em;
}

.mrp-special-stamp .mrp-stamp-inner b {
  display: block;
  color: currentColor;
  font-size: 24px;
  font-weight: 950;
  line-height: 0.95;
  letter-spacing: 0.03em;
}

.mrp-special-stamp .mrp-stamp-inner em {
  margin-top: 5px;
  font-size: 6.5px;
}

/* =========================================================
   완주 후 찍힌 도장 상태
   아래 클래스 중 현재 JS에서 사용하는 것을 적용하면 됨
========================================================= */

.mrp-course-stamp:is(
  .is-completed,
  .is-complete,
  .completed,
  [data-completed="true"],
  [aria-pressed="true"]
) {
  background:
    radial-gradient(
      circle at 50% 42%,
      rgba(var(--mrp-stamp-rgb), 0.15),
      transparent 56%
    ),
    rgba(var(--mrp-stamp-rgb), 0.065);

  border-color: rgba(var(--mrp-stamp-rgb), 0.75);
  box-shadow:
    inset 0 0 30px rgba(var(--mrp-stamp-rgb), 0.06),
    0 17px 38px rgba(0, 0, 0, 0.2);
}

.mrp-course-stamp:is(
  .is-completed,
  .is-complete,
  .completed,
  [data-completed="true"],
  [aria-pressed="true"]
) .mrp-stamp-mark {
  opacity: 0.96;
  filter: none;
  text-shadow: 0 0 1px currentColor;
  box-shadow:
    0 0 0 2px rgba(var(--mrp-stamp-rgb), 0.08),
    0 0 28px rgba(var(--mrp-stamp-rgb), 0.16);

  animation: mrp-stamp-hit 0.45s cubic-bezier(0.2, 1.5, 0.4, 1);
}

.mrp-course-stamp:is(
  .is-completed,
  .is-complete,
  .completed,
  [data-completed="true"],
  [aria-pressed="true"]
) .mrp-course-index {
  color: var(--mrp-stamp-color);
}

.mrp-course-stamp:is(
  .is-completed,
  .is-complete,
  .completed,
  [data-completed="true"],
  [aria-pressed="true"]
) .mrp-course-info small {
  color: rgba(var(--mrp-stamp-rgb), 0.78);
}

@keyframes mrp-stamp-hit {
  0% {
    opacity: 0;
    transform: scale(1.45) rotate(-15deg);
  }

  65% {
    opacity: 1;
    transform: scale(0.94) rotate(-6deg);
  }

  100% {
    opacity: 0.96;
    transform: scale(1) rotate(-8deg);
  }
}

.mrp-course-stamp-special:is(
  .is-completed,
  .is-complete,
  .completed,
  [data-completed="true"],
  [aria-pressed="true"]
) .mrp-stamp-mark {
  animation-name: mrp-special-stamp-hit;
}

@keyframes mrp-special-stamp-hit {
  0% {
    opacity: 0;
    transform: scale(1.5) rotate(15deg);
  }

  65% {
    opacity: 1;
    transform: scale(0.94) rotate(3deg);
  }

  100% {
    opacity: 0.96;
    transform: scale(1) rotate(6deg);
  }
}

/* =========================================================
   반응형
========================================================= */

@media (max-width: 1280px) {
  .mrp-stamp-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .mrp-stamp-guide {
    gap: 10px;
    padding: 15px;
  }

  .mrp-guide-icon {
    flex-basis: 40px;
    width: 40px;
    height: 40px;
    font-size: 9px;
  }

  .mrp-stamp-guide-item strong {
    font-size: 12px;
  }

  .mrp-stamp-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .mrp-stamp-guide {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .mrp-stamp-guide-item {
    min-height: 51px;
  }

  .mrp-stamp-guide-arrow {
    display: none;
  }

  .mrp-stamp-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .mrp-course-stamp {
    min-height: 218px;
    padding: 37px 8px 59px;
    border-radius: 16px;
  }

  .mrp-stamp-mark {
    width: 94px;
    height: 94px;
  }

  .mrp-stamp-inner {
    width: 69px;
    height: 69px;
  }

  .mrp-stamp-inner strong {
    font-size: 23px;
  }

  .mrp-special-stamp .mrp-stamp-inner strong {
    font-size: 13px;
  }

  .mrp-special-stamp .mrp-stamp-inner b {
    font-size: 19px;
  }

  .mrp-course-info strong {
    font-size: 12px;
  }

  .mrp-course-info small {
    font-size: 9px;
  }
}
/* =========================================================
   리워드 파트너 섹션 리디자인
========================================================= */

.sponsor-section-v2 {
  padding: clamp(80px, 9vw, 140px) 0;
  color: #07182d;
  background:
    radial-gradient(
      circle at 8% 15%,
      rgba(45, 239, 136, 0.13),
      transparent 29%
    ),
    #eef3ef !important;
}

.sponsor-section-v2 * {
  box-sizing: border-box;
}

/* 러너/기업 구분 라벨 */
.rsp-audience-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
  padding: 7px 13px 7px 7px;
  color: #53605b;
  font-size: 11px;
  font-weight: 800;
  background: #fff;
  border: 1px solid rgba(7, 24, 45, 0.1);
  border-radius: 30px;
}

.rsp-audience-label span {
  padding: 6px 10px;
  color: #06182d;
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.11em;
  background: #2def88;
  border-radius: 20px;
}

/* 제목 */
.rsp-runner-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.65fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 52px;
}

.rsp-kicker {
  margin: 0 0 15px;
  color: #078345;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.13em;
}

.rsp-runner-heading h2 {
  margin: 0;
  color: #07182d;
  font-size: clamp(44px, 5.1vw, 82px);
  font-weight: 950;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.rsp-runner-heading h2 em {
  color: #0cae5e;
  font-style: normal;
}

.rsp-runner-heading > p {
  margin: 0;
  color: #53615e;
  font-size: 16px;
  line-height: 1.8;
  word-break: keep-all;
}

.rsp-runner-heading > p strong {
  color: #07182d;
}

/* =========================================================
   선물 카드
========================================================= */

.rsp-reward-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.rsp-reward-card {
  --rsp-card-text: #fff;
  --rsp-card-muted: rgba(255, 255, 255, 0.57);

  position: relative;
  display: flex;
  min-width: 0;
  min-height: 390px;
  padding: 20px;
  color: var(--rsp-card-text);
  flex-direction: column;
  border-radius: 24px;
  overflow: hidden;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease;
}

.rsp-reward-card:hover {
  z-index: 2;
  box-shadow: 0 22px 45px rgba(7, 24, 45, 0.18);
  transform: translateY(-8px);
}

.rsp-reward-black {
  background:
    radial-gradient(circle at 80% 12%, #3c3f42, transparent 25%),
    #0b0d0f;
}

.rsp-reward-sand {
  --rsp-card-text: #07182d;
  --rsp-card-muted: rgba(7, 24, 45, 0.55);

  background:
    radial-gradient(circle at 80% 12%, #f1dfc1, transparent 27%),
    #d9c09e;
}

.rsp-reward-yellow {
  --rsp-card-text: #07182d;
  --rsp-card-muted: rgba(7, 24, 45, 0.55);

  background:
    radial-gradient(circle at 80% 12%, #fff5a7, transparent 28%),
    #ffd528;
}

.rsp-reward-blue {
  background:
    radial-gradient(circle at 80% 12%, #6fa4f5, transparent 27%),
    #1d63d7;
}

.rsp-reward-violet {
  background:
    radial-gradient(circle at 80% 12%, #a88afe, transparent 27%),
    #7140ed;
}

.rsp-reward-next {
  --rsp-card-text: #07182d;
  --rsp-card-muted: rgba(7, 24, 45, 0.52);

  background:
    repeating-linear-gradient(
      -45deg,
      #f7faf8 0,
      #f7faf8 12px,
      #eef2ef 12px,
      #eef2ef 24px
    );
  border: 2px dashed rgba(7, 24, 45, 0.2);
}

/* 카드 상단 */
.rsp-reward-card-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.rsp-reward-card-top span {
  color: var(--rsp-card-muted);
  font-size: 8px;
  font-weight: 950;
  letter-spacing: 0.1em;
}

.rsp-reward-card-top b {
  display: flex;
  width: 26px;
  height: 26px;
  align-items: center;
  justify-content: center;
  color: var(--rsp-card-text);
  font-size: 10px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.55;
}

/* 상품 비주얼 */
.rsp-product-visual {
  position: relative;
  display: flex;
  height: 153px;
  align-items: center;
  justify-content: center;
  margin: 15px -20px 12px;
  overflow: hidden;
}

.rsp-visual-word {
  position: absolute;
  left: 10px;
  bottom: -8px;
  color: var(--rsp-card-text);
  font-size: 53px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.08em;
  opacity: 0.07;
  white-space: nowrap;
}

.rsp-product-visual svg {
  position: relative;
  z-index: 1;
  width: 83px;
  height: 83px;
  fill: none;
  stroke: var(--rsp-card-text);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform 0.3s ease;
}

.rsp-reward-card:hover .rsp-product-visual svg {
  transform: rotate(-5deg) scale(1.08);
}

/* 다음 브랜드 */
.rsp-next-symbol {
  display: flex;
  height: 165px;
  align-items: center;
  justify-content: center;
}

.rsp-next-symbol span {
  display: flex;
  width: 88px;
  height: 88px;
  align-items: center;
  justify-content: center;
  color: #07182d;
  font-size: 35px;
  font-weight: 950;
  background: rgba(255, 255, 255, 0.72);
  border: 2px dashed rgba(7, 24, 45, 0.25);
  border-radius: 50%;
  transform: rotate(7deg);
}

/* 상품 설명 */
.rsp-reward-copy {
  position: relative;
  z-index: 2;
}

.rsp-brand-name {
  display: block;
  margin-bottom: 8px;
  color: var(--rsp-card-muted);
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.11em;
}

.rsp-reward-copy h3 {
  margin: 0 0 8px;
  color: var(--rsp-card-text);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.rsp-reward-copy p {
  margin: 0;
  color: var(--rsp-card-muted);
  font-size: 11px;
  line-height: 1.55;
  word-break: keep-all;
}

.rsp-reward-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 15px;
  color: var(--rsp-card-muted);
  border-top: 1px solid currentColor;
}

.rsp-reward-card-bottom span {
  font-size: 8px;
  font-weight: 900;
  letter-spacing: 0.11em;
}

.rsp-reward-card-bottom i {
  font-size: 16px;
  font-style: normal;
}

/* =========================================================
   러너의 리워드 경험
========================================================= */

.rsp-experience-flow {
  display: grid;
  grid-template-columns: 0.65fr 1.7fr;
  gap: 40px;
  align-items: center;
  margin-top: 24px;
  padding: 25px 30px;
  color: #fff;
  background: #07182d;
  border-radius: 22px;
}

.rsp-experience-intro span {
  display: block;
  margin-bottom: 7px;
  color: #2def88;
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.rsp-experience-intro strong {
  font-size: 18px;
  font-weight: 850;
}

.rsp-experience-flow ol {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.rsp-experience-flow li {
  display: flex;
  gap: 12px;
  padding: 4px 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.rsp-experience-flow li > span {
  color: #2def88;
  font-size: 11px;
  font-weight: 950;
}

.rsp-experience-flow li strong {
  display: block;
  margin-bottom: 4px;
  font-size: 13px;
}

.rsp-experience-flow li p {
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 10px;
  line-height: 1.45;
}

/* =========================================================
   기업 담당자 전용 영역
========================================================= */

.rsp-business-zone {
  position: relative;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  margin-top: 85px;
  color: #fff;
  background: #07182d;
  border-radius: 32px;
  box-shadow: 0 30px 70px rgba(7, 24, 45, 0.22);
  overflow: hidden;
}

.rsp-business-copy {
  position: relative;
  padding: clamp(40px, 5vw, 72px);
}

.rsp-business-copy::before {
  content: "B2B";
  position: absolute;
  right: 12px;
  bottom: -18px;
  color: rgba(255, 255, 255, 0.025);
  font-size: 130px;
  font-weight: 950;
  line-height: 1;
}

.rsp-business-label {
  display: inline-flex;
  margin-bottom: 38px;
  padding: 8px 12px;
  color: #07182d;
  font-size: 11px;
  font-weight: 900;
  background: #ffd429;
  border-radius: 20px;
}

.rsp-business-kicker {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  color: #2def88;
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.15em;
}

.rsp-business-copy h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(37px, 4vw, 63px);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.065em;
}

.rsp-business-copy h3 em {
  color: #ffd429;
  font-style: normal;
}

.rsp-business-description {
  position: relative;
  z-index: 1;
  max-width: 510px;
  margin: 26px 0 30px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.8;
  word-break: keep-all;
}

.rsp-sponsor-button {
  position: relative;
  z-index: 1;
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  gap: 34px;
  padding: 0 27px;
  color: #07182d;
  font-size: 14px;
  font-weight: 900;
  background: #ffd429;
  border: 0;
  border-radius: 30px;
  cursor: pointer;
}

.rsp-sponsor-button:hover {
  color: #07182d;
  background: #2def88;
  transform: translateY(-3px);
}

.rsp-business-notice {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.4);
  font-size: 9px;
  line-height: 1.6;
}

/* 오른쪽 혜택 */
.rsp-business-benefits {
  padding: clamp(40px, 5vw, 68px);
  color: #07182d;
  background:
    radial-gradient(
      circle at 90% 0,
      rgba(255, 255, 255, 0.55),
      transparent 32%
    ),
    #ffe99a;
}

.rsp-business-benefit-heading {
  margin-bottom: 29px;
}

.rsp-business-benefit-heading span {
  display: block;
  margin-bottom: 7px;
  color: #1c62da;
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.rsp-business-benefit-heading strong {
  font-size: 21px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.rsp-benefit-list {
  border-top: 1px solid rgba(7, 24, 45, 0.15);
}

.rsp-benefit-list article {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(7, 24, 45, 0.15);
}

.rsp-benefit-list article > span {
  color: #1d65e2;
  font-size: 12px;
  font-weight: 950;
}

.rsp-benefit-list strong {
  display: block;
  margin-bottom: 5px;
  font-size: 15px;
}

.rsp-benefit-list p {
  margin: 0;
  color: rgba(7, 24, 45, 0.58);
  font-size: 11px;
  line-height: 1.5;
}

.rsp-campaign-numbers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 27px;
}

.rsp-campaign-numbers > div {
  padding: 20px;
  color: #fff;
  background: #07182d;
  border-radius: 15px;
}

.rsp-campaign-numbers strong {
  display: block;
  margin-bottom: 5px;
  color: #2def88;
  font-size: 24px;
  font-weight: 950;
}

.rsp-campaign-numbers span {
  color: rgba(255, 255, 255, 0.5);
  font-size: 9px;
}

/* =========================================================
   반응형
========================================================= */

@media (max-width: 1280px) {
  .rsp-reward-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .rsp-runner-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .rsp-experience-flow {
    grid-template-columns: 1fr;
  }

  .rsp-business-zone {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .sponsor-section-v2 {
    padding: 70px 0;
  }

  .rsp-runner-heading h2 {
    font-size: clamp(40px, 12vw, 59px);
  }

  /* 모바일에서는 선물카드 가로 넘기기 */
  .rsp-reward-grid {
    display: flex;
    gap: 12px;
    margin-right: calc(var(--container-padding, 20px) * -1);
    padding-right: var(--container-padding, 20px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .rsp-reward-grid::-webkit-scrollbar {
    display: none;
  }

  .rsp-reward-card {
    flex: 0 0 255px;
    min-height: 370px;
    scroll-snap-align: start;
  }

  .rsp-experience-flow {
    padding: 24px 20px;
  }

  .rsp-experience-flow ol {
    grid-template-columns: 1fr;
  }

  .rsp-experience-flow li {
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.13);
    border-left: 0;
  }

  .rsp-business-zone {
    margin-top: 60px;
    border-radius: 24px;
  }

  .rsp-business-copy,
  .rsp-business-benefits {
    padding: 34px 24px;
  }

  .rsp-business-copy h3 {
    font-size: 42px;
  }

  .rsp-business-label {
    margin-bottom: 27px;
  }

  .rsp-campaign-numbers {
    gap: 7px;
  }

  .rsp-campaign-numbers > div {
    padding: 15px 10px;
  }

  .rsp-campaign-numbers strong {
    font-size: 19px;
  }

  .rsp-sponsor-button {
    width: 100%;
  }
}

/* 참여 방법 + 보물 받는 방법 좌우 배치 */
.hero-info-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 20px;
  align-items: stretch;
}

.hero-info-row .hero-event-method {
  margin: 0;
  padding: 18px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
}

.hero-info-row .hero-reward-box {
  margin: 0;
  padding: 18px;
  border-radius: 14px;
}

/* 모바일에서는 다시 위아래 배치 */
@media (max-width: 768px) {
  .hero-info-row {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

/* =========================================================
   RUNNER HEALTH × BE HAPPY
========================================================= */

.rh-section {
  position: relative;
  padding: clamp(90px, 10vw, 150px) 0;
  color: #fff;
  background:
    radial-gradient(
      circle at 4% 8%,
      rgba(45, 239, 136, 0.13),
      transparent 27%
    ),
    radial-gradient(
      circle at 93% 76%,
      rgba(47, 106, 255, 0.16),
      transparent 30%
    ),
    #06162c;
  overflow: hidden;
}

.rh-section::before {
  content: "BODY SIGNAL";
  position: absolute;
  top: 50px;
  right: -30px;
  color: rgba(255, 255, 255, 0.025);
  font-size: clamp(70px, 11vw, 180px);
  font-weight: 950;
  line-height: 1;
  letter-spacing: -0.07em;
  white-space: nowrap;
  pointer-events: none;
}

.rh-section * {
  box-sizing: border-box;
}

/* 제목 */
.rh-heading {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.65fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 55px;
}

.rh-kicker {
  margin: 0 0 14px;
  color: #2def88;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.rh-heading h2 {
  margin: 0;
  font-size: clamp(45px, 5.2vw, 82px);
  font-weight: 950;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.rh-heading h2 em {
  color: #ffd329;
  font-style: normal;
}

.rh-heading-copy {
  padding-bottom: 6px;
}

.rh-heading-label {
  display: inline-flex;
  margin-bottom: 16px;
  padding: 7px 11px;
  color: #041a10;
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.1em;
  background: #2def88;
  transform: rotate(-1deg);
}

.rh-heading-copy p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 15px;
  line-height: 1.8;
  word-break: keep-all;
}

/* 메인 영역 */
.rh-main-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(390px, 0.82fr);
  gap: 20px;
}

/* =========================================================
   통증 선택 카드
========================================================= */

.rh-pain-card {
  padding: clamp(25px, 3vw, 42px);
  background:
    linear-gradient(
      145deg,
      rgba(21, 51, 94, 0.96),
      rgba(9, 32, 68, 0.98)
    );
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 28px;
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.22);
}

.rh-pain-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 25px;
}

.rh-pain-head span {
  display: block;
  margin-bottom: 7px;
  color: #2def88;
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.13em;
}

.rh-pain-head h3 {
  margin: 0;
  font-size: clamp(24px, 2.2vw, 35px);
  font-weight: 900;
  letter-spacing: -0.045em;
}

.rh-pain-head > small {
  color: rgba(255, 255, 255, 0.42);
  font-size: 10px;
}

/* 부위 버튼 */
.rh-pain-buttons {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.rh-pain-button {
  position: relative;
  display: flex;
  min-height: 104px;
  align-items: flex-start;
  justify-content: center;
  padding: 17px 10px 13px;
  color: #fff;
  font-family: inherit;
  text-align: center;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px;
  cursor: pointer;
  overflow: hidden;
  transition:
    transform 0.22s ease,
    border-color 0.22s ease,
    background-color 0.22s ease;
}

.rh-pain-button:hover {
  border-color: rgba(45, 239, 136, 0.48);
  background: rgba(45, 239, 136, 0.08);
  transform: translateY(-3px);
}

.rh-pain-button.is-selected {
  color: #06162c;
  background: #2def88;
  border-color: #2def88;
  box-shadow: 0 9px 25px rgba(45, 239, 136, 0.17);
}

.rh-pain-target {
  position: absolute;
  top: 13px;
  right: 13px;
  width: 11px;
  height: 11px;
  border: 2px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
}

.rh-pain-target::after {
  content: "";
  position: absolute;
  inset: 2px;
  background: #2def88;
  border-radius: 50%;
}

.rh-pain-button.is-selected .rh-pain-target {
  border-color: rgba(6, 22, 44, 0.38);
}

.rh-pain-button.is-selected .rh-pain-target::after {
  background: #06162c;
}

.rh-pain-button strong {
  display: block;
  margin-bottom: 7px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.rh-pain-button small {
  color: rgba(255, 255, 255, 0.45);
  font-size: 9px;
  line-height: 1.3;
}

.rh-pain-button.is-selected small {
  color: rgba(6, 22, 44, 0.63);
}

/* 선택 결과 */
.rh-pain-result {
  margin-top: 17px;
  padding: 22px;
  background: rgba(3, 16, 39, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 17px;
}

.rh-result-top {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 11px;
}

.rh-result-top span {
  color: rgba(255, 255, 255, 0.45);
  font-size: 9px;
  font-weight: 800;
}

.rh-result-top strong {
  padding: 4px 9px;
  color: #06162c;
  font-size: 10px;
  font-weight: 950;
  background: #ffd329;
  border-radius: 20px;
}

.rh-pain-result h4 {
  margin: 0 0 9px;
  color: #fff;
  font-size: 18px;
  font-weight: 850;
  line-height: 1.35;
  letter-spacing: -0.035em;
}

.rh-pain-result > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.65;
  word-break: keep-all;
}

.rh-result-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 14px;
}

.rh-result-tags span {
  padding: 6px 9px;
  color: #9efbc7;
  font-size: 9px;
  font-weight: 800;
  background: rgba(45, 239, 136, 0.08);
  border: 1px solid rgba(45, 239, 136, 0.22);
  border-radius: 20px;
}

.rh-medical-notice {
  position: relative;
  margin: 15px 0 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.37);
  font-size: 9px;
  line-height: 1.6;
}

.rh-medical-notice::before {
  content: "!";
  position: absolute;
  top: 1px;
  left: 0;
  display: flex;
  width: 12px;
  height: 12px;
  align-items: center;
  justify-content: center;
  color: #06162c;
  font-size: 8px;
  font-weight: 950;
  background: #ffd329;
  border-radius: 50%;
}

/* =========================================================
   BE HAPPY 카드
========================================================= */

.rh-behappy-card {
  position: relative;
  padding: clamp(30px, 3.5vw, 47px);
  color: #06162c;
  background:
    radial-gradient(
      circle at 90% 8%,
      rgba(45, 239, 136, 0.4),
      transparent 26%
    ),
    #f2fff7;
  border-radius: 28px;
  box-shadow: 0 28px 65px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.rh-behappy-card::after {
  content: "B";
  position: absolute;
  right: -16px;
  bottom: -60px;
  color: rgba(9, 111, 62, 0.045);
  font-size: 250px;
  font-weight: 950;
  line-height: 1;
  pointer-events: none;
}

.rh-behappy-symbol {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  margin-bottom: 28px;
  transform: rotate(-2deg);
}

.rh-behappy-symbol span,
.rh-behappy-symbol strong {
  padding: 7px 10px 6px;
  font-size: 13px;
  font-weight: 950;
  line-height: 1;
}

.rh-behappy-symbol span {
  color: #fff;
  background: #06162c;
}

.rh-behappy-symbol strong {
  color: #06162c;
  background: #2def88;
}

.rh-behappy-kicker {
  position: relative;
  z-index: 1;
  margin: 0 0 11px;
  color: #098248;
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.13em;
}

.rh-behappy-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
  font-size: clamp(31px, 3vw, 47px);
  font-weight: 950;
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.rh-behappy-card h3 em {
  color: #0aa75c;
  font-style: normal;
}

.rh-behappy-copy {
  position: relative;
  z-index: 1;
  margin: 19px 0 24px;
  color: rgba(6, 22, 44, 0.61);
  font-size: 12px;
  line-height: 1.7;
  word-break: keep-all;
}

.rh-behappy-flow {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0;
  margin: 0 0 26px;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(6, 22, 44, 0.13);
}

.rh-behappy-flow li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 11px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(6, 22, 44, 0.13);
}

.rh-behappy-flow li > span {
  color: #0aa75c;
  font-size: 10px;
  font-weight: 950;
}

.rh-behappy-flow strong {
  display: block;
  margin-bottom: 3px;
  font-size: 13px;
  font-weight: 900;
}

.rh-behappy-flow p {
  margin: 0;
  color: rgba(6, 22, 44, 0.52);
  font-size: 10px;
  line-height: 1.45;
}

.rh-behappy-button {
  position: relative;
  z-index: 1;
  display: flex;
  min-height: 59px;
  align-items: center;
  justify-content: space-between;
  padding: 0 21px;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
  background: #06162c;
  border-radius: 30px;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    transform 0.2s ease;
}

.rh-behappy-button:hover {
  color: #06162c;
  background: #2def88;
  transform: translateY(-3px);
}

.rh-behappy-more {
  position: relative;
  z-index: 1;
  display: block;
  margin-top: 13px;
  color: rgba(6, 22, 44, 0.58);
  font-size: 10px;
  font-weight: 800;
  text-align: center;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* =========================================================
   랜덤 건강 콘텐츠
========================================================= */

.rh-content-heading {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 25px;
  margin: 75px 0 25px;
}

.rh-content-heading h3 {
  margin: 0 0 8px;
  font-size: clamp(27px, 3vw, 42px);
  font-weight: 900;
  letter-spacing: -0.045em;
}

.rh-content-heading > div > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
}

.rh-refresh-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  color: #fff;
  font-family: inherit;
  font-size: 10px;
  font-weight: 850;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 23px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.rh-refresh-button:hover {
  background: rgba(45, 239, 136, 0.13);
}

.rh-refresh-button span {
  color: #2def88;
  font-size: 17px;
}

.rh-content-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.rh-content-card {
  --rh-accent: #2def88;

  display: grid;
  grid-template-columns: 180px 1fr;
  min-height: 250px;
  color: #06162c;
  background: #fff;
  border-radius: 23px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.18);
}

.rh-content-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  color: #06162c;
  background:
    radial-gradient(
      circle at 50% 45%,
      rgba(255, 255, 255, 0.55),
      transparent 30%
    ),
    var(--rh-accent);
  overflow: hidden;
}

.rh-content-visual::before,
.rh-content-visual::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(6, 22, 44, 0.15);
  border-radius: 50%;
}

.rh-content-visual::before {
  width: 135px;
  height: 135px;
}

.rh-content-visual::after {
  width: 95px;
  height: 95px;
}

.rh-content-visual > span {
  position: relative;
  z-index: 1;
  font-size: 17px;
  font-weight: 950;
  line-height: 1;
  text-align: center;
  letter-spacing: -0.04em;
}

.rh-content-number {
  position: absolute;
  top: 15px;
  left: 15px;
  font-size: 9px !important;
  letter-spacing: 0.12em !important;
  opacity: 0.53;
}

.rh-content-body {
  display: flex;
  padding: 27px;
  flex-direction: column;
}

.rh-content-category {
  display: block;
  margin-bottom: 11px;
  color: #079451;
  font-size: 9px;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.rh-content-body h4 {
  margin: 0 0 10px;
  font-size: clamp(19px, 1.7vw, 26px);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.045em;
  word-break: keep-all;
}

.rh-content-body > p {
  margin: 0;
  color: rgba(6, 22, 44, 0.58);
  font-size: 11px;
  line-height: 1.65;
  word-break: keep-all;
}

.rh-content-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 14px;
}

.rh-content-tags span {
  padding: 5px 8px;
  color: #426055;
  font-size: 8px;
  font-weight: 800;
  background: #eef5f1;
  border-radius: 15px;
}

.rh-content-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 18px;
  color: #06162c;
  font-size: 10px;
  font-weight: 900;
  text-decoration: none;
}

.rh-content-link span {
  display: flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  color: #06162c;
  background: var(--rh-accent);
  border-radius: 50%;
  transition: transform 0.2s ease;
}

.rh-content-link:hover span {
  transform: translateX(4px);
}

.rh-noscript {
  display: flex;
  gap: 10px;
  padding: 20px;
  background: #fff;
}

.rh-noscript a {
  color: #06162c;
}

/* =========================================================
   반응형
========================================================= */

@media (max-width: 1050px) {
  .rh-heading {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .rh-main-grid {
    grid-template-columns: 1fr;
  }

  .rh-behappy-card {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
    column-gap: 35px;
  }

  .rh-behappy-symbol,
  .rh-behappy-kicker,
  .rh-behappy-card h3,
  .rh-behappy-copy {
    grid-column: 1;
  }

  .rh-behappy-flow,
  .rh-behappy-button,
  .rh-behappy-more {
    grid-column: 2;
  }

  .rh-behappy-flow {
    grid-row: 1 / span 4;
  }
}

@media (max-width: 800px) {
  .rh-content-card {
    grid-template-columns: 140px 1fr;
  }
}

@media (max-width: 680px) {
  .rh-section {
    padding: 75px 0;
  }

  .rh-heading h2 {
    font-size: clamp(39px, 12vw, 55px);
  }

  .rh-pain-card,
  .rh-behappy-card {
    border-radius: 20px;
  }

  .rh-pain-head {
    display: block;
  }

  .rh-pain-head > small {
    display: block;
    margin-top: 8px;
  }

  .rh-pain-buttons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .rh-pain-button {
    min-height: 91px;
  }

  .rh-behappy-card {
    display: block;
  }

  .rh-content-heading {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 60px;
  }

  .rh-refresh-button {
    align-self: flex-end;
  }

  .rh-content-grid {
    grid-template-columns: 1fr;
  }

  .rh-content-card {
    grid-template-columns: 112px 1fr;
    min-height: 240px;
  }

  .rh-content-body {
    padding: 22px 17px;
  }

  .rh-content-visual > span {
    font-size: 14px;
  }

  .rh-content-visual::before {
    width: 90px;
    height: 90px;
  }

  .rh-content-visual::after {
    width: 65px;
    height: 65px;
  }
}

/* =========================================================
   RUN TO GET · 실제 협찬 제품 섹션
========================================================= */

.sponsor-section-v3 {
  --spx-navy: #071a38;
  --spx-blue: #1268ff;
  --spx-green: #25ed83;
  --spx-yellow: #ffe024;
  --spx-paper: #f2f1ea;
  --spx-line: rgba(7, 26, 56, 0.12);

  position: relative;
  overflow: hidden;
  padding: clamp(90px, 9vw, 150px) 0;
  color: var(--spx-navy);
  background:
    radial-gradient(
      circle at 95% 5%,
      rgba(37, 237, 131, 0.14),
      transparent 28%
    ),
    var(--spx-paper);
}

.sponsor-section-v3::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 9px;
  background:
    linear-gradient(
      90deg,
      var(--spx-green) 0 34%,
      var(--spx-yellow) 34% 66%,
      var(--spx-blue) 66%
    );
}


/* 제목 */

.spx-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.7fr);
  gap: clamp(40px, 7vw, 110px);
  align-items: end;
  margin-bottom: clamp(50px, 6vw, 86px);
}

.spx-kicker {
  display: inline-flex;
  margin: 0 0 18px;
  padding: 7px 11px;
  color: var(--spx-navy);
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.12em;
  background: var(--spx-green);
  transform: rotate(-1.5deg);
}

.spx-heading h2 {
  margin: 0;
  font-size: clamp(42px, 5.5vw, 82px);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.065em;
}

.spx-heading h2 em {
  color: var(--spx-blue);
  font-style: normal;
}

.spx-heading-copy {
  max-width: 520px;
  margin: 0 0 6px;
  color: rgba(7, 26, 56, 0.66);
  font-size: clamp(16px, 1.3vw, 20px);
  font-weight: 600;
  line-height: 1.8;
  word-break: keep-all;
}


/* 제품 카드 */

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

.spx-product-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--spx-line);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 20px 55px rgba(7, 26, 56, 0.08);
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.spx-product-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 28px 70px rgba(7, 26, 56, 0.15);
}

.spx-product-media {
  position: relative;
  display: grid;
  min-height: 255px;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  background: var(--spx-media-bg, #dfe7ef);
}

.spx-product-media::after {
  content: "";
  position: absolute;
  right: -45px;
  bottom: -65px;
  z-index: -1;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 50%;
}

.spx-product-media img {
  position: relative;
  z-index: 2;
  width: 82%;
  height: 220px;
  padding: 18px;
  object-fit: contain;
  filter: drop-shadow(0 18px 18px rgba(0, 0, 0, 0.18));
  transition: transform 0.35s ease;
}

.spx-product-card:hover .spx-product-media img {
  transform: scale(1.045) rotate(-1deg);
}

.spx-media-word {
  position: absolute;
  left: 20px;
  bottom: -9px;
  z-index: 0;
  max-width: 95%;
  color: var(--spx-media-word, rgba(255, 255, 255, 0.24));
  font-size: clamp(54px, 6vw, 98px);
  font-weight: 950;
  line-height: 0.8;
  letter-spacing: -0.08em;
  white-space: nowrap;
}

.spx-reward-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  padding: 7px 9px;
  color: #fff;
  font-size: 10px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.1em;
  background: var(--spx-badge, var(--spx-navy));
  transform: rotate(2deg);
}

.spx-product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 26px;
}

.spx-brand-row {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 13px;
}

.spx-brand-row strong {
  color: var(--spx-brand, var(--spx-blue));
  font-size: 14px;
  font-weight: 950;
  letter-spacing: -0.02em;
}

.spx-brand-row span {
  color: rgba(7, 26, 56, 0.42);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.spx-product-body h3 {
  min-height: 2.4em;
  margin: 0 0 13px;
  font-size: clamp(21px, 1.7vw, 28px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -0.045em;
  word-break: keep-all;
}

.spx-product-body > p {
  min-height: 4.9em;
  margin: 0 0 20px;
  color: rgba(7, 26, 56, 0.62);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.65;
  word-break: keep-all;
}

.spx-product-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.spx-product-tags span {
  padding: 6px 9px;
  border-radius: 999px;
  color: rgba(7, 26, 56, 0.68);
  font-size: 11px;
  font-weight: 800;
  background: #f0f3f6;
}

.spx-product-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: auto;
}

.spx-link {
  display: inline-flex;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid rgba(7, 26, 56, 0.15);
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  color: var(--spx-navy);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease;
}

.spx-link-product {
  color: #fff;
  border-color: var(--spx-navy);
  background: var(--spx-navy);
}

.spx-link-product:hover {
  border-color: var(--spx-blue);
  background: var(--spx-blue);
}

.spx-link-social:hover {
  color: #fff;
  border-color: #e93a76;
  background: #e93a76;
}


/* 제품별 컬러 */

.spx-theme-bbq {
  --spx-media-bg: #d91e29;
  --spx-media-word: rgba(255, 255, 255, 0.18);
  --spx-badge: #ffcf26;
  --spx-brand: #d91e29;
}

.spx-theme-bbq .spx-reward-badge {
  color: #151515;
}

.spx-theme-medieus {
  --spx-media-bg: linear-gradient(135deg, #1664dc, #07358c);
  --spx-media-word: rgba(255, 255, 255, 0.16);
  --spx-badge: #25ed83;
  --spx-brand: #1268ff;
}

.spx-theme-medieus .spx-reward-badge {
  color: var(--spx-navy);
}

.spx-theme-sealy {
  --spx-media-bg: linear-gradient(145deg, #d5cec1, #f1ece4);
  --spx-media-word: rgba(69, 58, 47, 0.11);
  --spx-badge: #776b5e;
  --spx-brand: #6b5e50;
}

.spx-theme-freeup {
  --spx-media-bg: linear-gradient(145deg, #b5eddb, #effbf7);
  --spx-media-word: rgba(16, 102, 77, 0.1);
  --spx-badge: #187b5d;
  --spx-brand: #187b5d;
}

.spx-theme-purenother {
  --spx-media-bg: linear-gradient(145deg, #d7e9ff, #f4f8ff);
  --spx-media-word: rgba(25, 91, 167, 0.1);
  --spx-badge: #245ca7;
  --spx-brand: #245ca7;
}

.spx-theme-bella {
  --spx-media-bg: linear-gradient(145deg, #ba805c, #e7c3a5);
  --spx-media-word: rgba(255, 255, 255, 0.18);
  --spx-badge: #25352f;
  --spx-brand: #8d5737;
}


/* 파트너 SNS */

.spx-social-strip {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 44px;
  align-items: center;
  margin-top: 34px;
  padding: clamp(30px, 4vw, 52px);
  border: 1px solid rgba(7, 26, 56, 0.1);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.72);
}

.spx-social-copy > span {
  display: block;
  margin-bottom: 10px;
  color: var(--spx-blue);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.12em;
}

.spx-social-copy h3 {
  margin: 0 0 12px;
  font-size: clamp(25px, 2.7vw, 40px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.05em;
}

.spx-social-copy p {
  margin: 0;
  color: rgba(7, 26, 56, 0.62);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.65;
  word-break: keep-all;
}

.spx-social-copy p strong {
  color: var(--spx-blue);
}

.spx-social-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.spx-social-list a {
  position: relative;
  display: flex;
  min-height: 80px;
  padding: 18px 48px 18px 20px;
  border: 1px solid rgba(7, 26, 56, 0.1);
  border-radius: 16px;
  flex-direction: column;
  justify-content: center;
  color: var(--spx-navy);
  text-decoration: none;
  background: #fff;
  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

.spx-social-list a:hover {
  color: #e93a76;
  border-color: #e93a76;
  transform: translateY(-3px);
}

.spx-social-list small {
  margin-bottom: 4px;
  color: #e93a76;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.spx-social-list strong {
  overflow: hidden;
  font-size: 14px;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.spx-social-list a > span {
  position: absolute;
  top: 50%;
  right: 18px;
  font-size: 18px;
  transform: translateY(-50%);
}


/* 기업 후원 모집 */

.spx-business-zone {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(40px, 7vw, 100px);
  margin-top: clamp(70px, 8vw, 120px);
  padding: clamp(36px, 5vw, 74px);
  border-radius: 32px;
  color: #fff;
  background:
    radial-gradient(
      circle at 90% 0,
      rgba(37, 237, 131, 0.17),
      transparent 38%
    ),
    var(--spx-navy);
}

.spx-business-kicker {
  margin: 0 0 20px;
  color: var(--spx-green);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.spx-business-copy h3 {
  margin: 0 0 22px;
  font-size: clamp(38px, 4vw, 64px);
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.06em;
}

.spx-business-copy h3 em {
  color: var(--spx-yellow);
  font-style: normal;
}

.spx-business-copy > p:not(.spx-business-kicker) {
  max-width: 500px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.75;
  word-break: keep-all;
}

.spx-sponsor-button {
  display: inline-flex;
  min-height: 58px;
  padding: 0 26px;
  border: 0;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  gap: 26px;
  color: var(--spx-navy);
  font-size: 15px;
  font-weight: 950;
  cursor: pointer;
  background: var(--spx-green);
}

.spx-sponsor-button:hover {
  background: var(--spx-yellow);
  transform: translateY(-2px);
}

.spx-business-copy > small {
  display: block;
  margin-top: 14px;
  color: rgba(255, 255, 255, 0.43);
  font-size: 11px;
}

.spx-business-benefits {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.spx-business-benefits > article {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 17px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.spx-business-benefits > article > span {
  color: var(--spx-green);
  font-size: 13px;
  font-weight: 950;
}

.spx-business-benefits article strong {
  display: block;
  margin-bottom: 5px;
  font-size: 17px;
  font-weight: 900;
}

.spx-business-benefits article p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.55;
}

.spx-business-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 24px;
}

.spx-business-stats > div {
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.055);
}

.spx-business-stats strong {
  display: block;
  margin-bottom: 7px;
  color: var(--spx-green);
  font-size: clamp(22px, 2.4vw, 35px);
  font-weight: 950;
  letter-spacing: -0.04em;
}

.spx-business-stats span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 11px;
  font-weight: 700;
}


/* 태블릿 */

@media (max-width: 1100px) {
  .spx-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .spx-heading-copy {
    max-width: 680px;
  }

  .spx-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .spx-business-zone {
    grid-template-columns: 1fr;
  }
}


/* 모바일 */

@media (max-width: 720px) {
  .sponsor-section-v3 {
    padding: 78px 0;
  }

  .spx-heading {
    margin-bottom: 38px;
  }

  .spx-heading h2 {
    font-size: clamp(40px, 12vw, 58px);
  }

  .spx-heading-copy {
    font-size: 15px;
  }

  /*
   * 모바일에서는 제품을 한 장씩 크게 넘겨봅니다.
   */
  .spx-product-grid {
    display: flex;
    width: calc(100% + 20px);
    gap: 14px;
    padding-right: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .spx-product-grid::-webkit-scrollbar {
    display: none;
  }

  .spx-product-card {
    flex: 0 0 min(84vw, 340px);
    scroll-snap-align: start;
  }

  .spx-product-card:hover {
    transform: none;
  }

  .spx-product-media {
    min-height: 225px;
  }

  .spx-product-media img {
    height: 195px;
  }

  .spx-product-body {
    padding: 23px;
  }

  .spx-product-body h3 {
    min-height: auto;
  }

  .spx-product-body > p {
    min-height: auto;
  }

  .spx-social-strip {
    grid-template-columns: 1fr;
    gap: 25px;
    padding: 27px 20px;
  }

  .spx-social-list {
    grid-template-columns: 1fr;
  }

  .spx-business-zone {
    gap: 34px;
    margin-top: 70px;
    padding: 34px 22px;
    border-radius: 24px;
  }

  .spx-business-copy h3 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .spx-sponsor-button {
    width: 100%;
  }

  .spx-business-stats {
    grid-template-columns: 1fr;
  }

  .spx-business-stats > div {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .spx-business-stats strong {
    margin: 0;
  }
}
/* =========================================================
   실제 제품 이미지 + 브랜드/회사명 표현
========================================================= */

.sponsor-section-v3 .spx-product-media {
  position: relative;
  min-height: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #e9edf2;
}

.sponsor-section-v3 .spx-product-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  width: auto;
  height: 38%;
  border: 0;
  border-radius: 0;
  background: linear-gradient(
    to top,
    rgba(7, 18, 34, 0.35),
    transparent
  );
  pointer-events: none;
}

.sponsor-section-v3 .spx-product-media > img {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  object-fit: cover;
  object-position: center;
  filter: none;
  transition: transform 0.4s ease;
}

.sponsor-section-v3
.spx-product-card:hover
.spx-product-media > img {
  transform: scale(1.045);
}

.sponsor-section-v3 .spx-reward-badge {
  top: auto;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  color: #fff;
  background: rgba(7, 26, 56, 0.88);
  backdrop-filter: blur(8px);
  transform: none;
}


/* 브랜드 로고 + 회사명 */

.spx-brand-lockup {
  display: grid;
  grid-template-columns: minmax(100px, 135px) minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  margin-bottom: 22px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(7, 26, 56, 0.1);
}

.spx-brand-logo {
  display: flex;
  width: 100%;
  height: 54px;
  padding: 8px 11px;
  border: 1px solid rgba(7, 26, 56, 0.1);
  border-radius: 12px;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.spx-brand-logo img {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 36px;
  object-fit: contain;
}

/* 세로형에 가까운 씰리 로고 보정 */
.spx-theme-sealy .spx-brand-logo img {
  max-height: 42px;
}

.spx-brand-meta {
  min-width: 0;
}

.spx-brand-meta span {
  display: block;
  margin-bottom: 5px;
  color: var(--spx-brand, #1268ff);
  font-size: 9px;
  font-weight: 950;
  line-height: 1.25;
  letter-spacing: 0.08em;
}

.spx-brand-meta small {
  display: block;
  color: rgba(7, 26, 56, 0.48);
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
  word-break: keep-all;
}


/* 제품명과 설명 */

.spx-product-body h3 {
  min-height: 2.35em;
  margin: 0 0 12px;
}

.spx-product-body > p {
  min-height: 4.9em;
}


/* 이미지별 초점 위치 보정 */

.spx-theme-bbq .spx-product-media > img {
  object-position: center;
}

.spx-theme-medieus .spx-product-media > img {
  object-position: center 46%;
}

.spx-theme-sealy .spx-product-media > img {
  object-position: center;
}

.spx-theme-freeup .spx-product-media > img {
  object-position: center;
}

.spx-theme-purenother .spx-product-media > img {
  object-position: center;
}

.spx-theme-bella .spx-product-media > img {
  object-position: center;
}


/* 모바일 */

@media (max-width: 720px) {
  .spx-brand-lockup {
    grid-template-columns: 112px minmax(0, 1fr);
    gap: 12px;
  }

  .spx-brand-logo {
    height: 50px;
  }

  .spx-brand-meta span {
    font-size: 8px;
  }

  .spx-brand-meta small {
    font-size: 9px;
  }

  .spx-product-body h3,
  .spx-product-body > p {
    min-height: auto;
  }
}