/* —— 홈: 프리미엄 · 고가독 · Noto Sans KR —— */

.view-home {
  --home-nav: 48px;
  --home-notice: 72px;
  --home-ink: #0f1117;
  --home-ink-mid: #4b5563;
  --home-ink-soft: #6b7280;
  --home-surface: #ffffff;
  --home-surface-2: #f3f4f6;
  --home-border: rgba(15, 17, 23, 0.08);
  --home-accent: #2563eb;
  --home-accent-soft: rgba(37, 99, 235, 0.08);
  --home-hero: #16181f;
  --home-radius: 14px;
  position: relative;
  padding: 0;
  font-family: "Noto Sans KR", "Noto Sans", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.view-home *,
.view-home *::before,
.view-home *::after {
  font-family: inherit;
}

.view-home::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(ellipse 80% 50% at 50% -8%, rgba(37, 99, 235, 0.04), transparent 60%),
    linear-gradient(180deg, #f7f8fa 0%, #eef0f3 100%);
}

.home-root {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.home-root:has(.home26) {
  gap: 0.5cm;
}

/* —— 기준 안내 —— */
.guide-notice-sticky {
  position: sticky;
  top: var(--home-nav);
  z-index: 40;
}

.guide-notice-banner {
  display: flex;
  align-items: center;
  gap: 12px 16px;
  padding: 14px 18px;
  background: var(--home-surface);
  border: 1px solid var(--home-border);
  border-left: 3px solid var(--home-accent);
  border-radius: var(--home-radius);
  box-shadow: 0 1px 2px rgba(15, 17, 23, 0.04);
}

.guide-notice-badge {
  flex-shrink: 0;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--home-accent);
  background: var(--home-accent-soft);
  border-radius: 6px;
}

.guide-notice-text {
  flex: 1;
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--home-ink-mid);
  letter-spacing: -0.02em;
}

.guide-notice-text strong {
  font-weight: 700;
  color: var(--home-ink);
}

/* —— 히어로 —— */
.guide-hero {
  overflow: hidden;
  background: var(--home-surface);
  border: 1px solid var(--home-border);
  border-radius: var(--home-radius);
  box-shadow: 0 4px 24px rgba(15, 17, 23, 0.06);
}

.guide-hero-head {
  padding: 22px 24px 20px;
  background: var(--home-hero);
}

.guide-hero-row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px 14px;
}

.guide-hero-year {
  flex-shrink: 0;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  white-space: nowrap;
}

.guide-hero-title {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  font-size: clamp(20px, 3vw, 26px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.3;
  color: #f9fafb;
  white-space: nowrap;
}

.guide-hero-title em {
  font-style: normal;
  font-weight: 800;
  color: #93c5fd;
}

/* —— 전광판 —— */
.guide-marquee {
  padding: 0 20px;
  background: var(--home-surface-2);
  border-top: 1px solid var(--home-border);
  border-bottom: 1px solid var(--home-border);
}

.guide-marquee-viewport {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 2.6em;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.guide-marquee-flow {
  position: absolute;
  top: 50%;
  left: 0;
  margin: 0;
  white-space: nowrap;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.01em;
  color: var(--home-ink-soft);
  transform: translateY(-50%);
  animation: home-marquee-center-right 40s linear infinite;
}

.guide-marquee-teacher {
  font-weight: 700;
  color: var(--home-ink);
  letter-spacing: -0.02em;
}

.guide-marquee-teacher--author {
  color: #1d4ed8;
}

.guide-marquee-teacher--editor {
  color: #4338ca;
}

/* —— 목차 —— */
.guide-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 0;
  padding: 14px 18px 18px;
  background: var(--home-surface);
}

.guide-nav-chip {
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--home-ink-mid);
  text-decoration: none;
  background: transparent;
  border: 1px solid var(--home-border);
  border-radius: 999px;
  transition:
    color 0.18s ease,
    border-color 0.18s ease,
    background 0.18s ease;
}

.guide-nav-chip[class*="guide-nav-chip--"] {
  background: transparent;
  border-color: var(--home-border);
}

.guide-nav-chip:hover {
  color: var(--home-ink);
  background: var(--home-accent-soft);
  border-color: rgba(37, 99, 235, 0.28);
}

.guide-nav-chip:active {
  background: rgba(37, 99, 235, 0.12);
}

.guide-nav-chip:focus-visible {
  outline: 2px solid var(--home-accent);
  outline-offset: 2px;
}

@keyframes home-marquee-center-right {
  0% {
    left: 50%;
    transform: translate(-50%, -50%);
  }
  42% {
    left: 0;
    transform: translate(-100%, -50%);
  }
  42.01% {
    left: 100%;
    transform: translate(0, -50%);
  }
  84% {
    left: 0;
    transform: translate(-100%, -50%);
  }
  84.01% {
    left: 50%;
    transform: translate(-50%, -50%);
  }
  100% {
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

/* —— 섹션 —— */
.guide-sections {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.guide-section {
  content-visibility: auto;
  contain-intrinsic-size: auto 360px;
  padding: 16px 18px 18px;
  scroll-margin-top: calc(var(--home-nav) + var(--home-notice) + 14px);
  background: var(--home-surface);
  border: 1px solid var(--home-border);
  border-radius: var(--home-radius);
  box-shadow: 0 1px 2px rgba(15, 17, 23, 0.04);
}

.guide-section-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 4px;
  padding: 0 0 12px;
  background: none;
  border: none;
  border-bottom: 1px solid var(--home-border);
  border-radius: 0;
  box-shadow: none;
}

.guide-section-accent {
  flex-shrink: 0;
  width: 3px;
  height: 18px;
  border-radius: 2px;
  background: var(--home-accent);
  box-shadow: none;
}

.guide-section--blue .guide-section-accent,
.guide-section--green .guide-section-accent,
.guide-section--red .guide-section-accent,
.guide-section--orange .guide-section-accent,
.guide-section--purple .guide-section-accent,
.guide-section--teal .guide-section-accent,
.guide-section--indigo .guide-section-accent,
.guide-section--gray .guide-section-accent,
.guide-section--pink .guide-section-accent {
  background: var(--home-ink-soft);
  opacity: 0.55;
}

.guide-section--quotes .guide-section-accent {
  background: #16a34a;
  opacity: 1;
}

.guide-section-title {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.35;
  color: var(--home-ink);
}

.guide-section-body {
  display: flex;
  flex-direction: column;
  gap: 9px;
  margin-top: 12px;
}

.guide-section-body--grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.guide-section-body--grid > .guide-alert,
.guide-section-body--grid > .guide-tip,
.guide-section-body--grid > .guide-video,
.guide-section-body--grid > .guide-tip-grid,
.guide-section-body--grid > .guide-articles,
.guide-section-body--grid > .guide-stats,
.guide-section-body--grid > .guide-info-wrap {
  grid-column: 1 / -1;
}

.guide-section-body--cheat {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

.guide-section-body--cheat > .guide-stats {
  grid-column: 1 / -1;
}

.guide-section-body--cheat .guide-group--card .guide-list--compact {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px 14px;
  padding-left: 1.1em;
}

/* 강조 섹션 */
.guide-section--elevated {
  border-color: rgba(37, 99, 235, 0.14);
}

.guide-section--elevated::before {
  display: none;
}

.guide-section--elevated .guide-section-head {
  border-bottom-color: rgba(37, 99, 235, 0.2);
}

.guide-section--elevated .guide-section-accent {
  background: var(--home-accent);
  opacity: 1;
}

.guide-section--featured-head .guide-section-title {
  font-size: 16px;
}

/* 카드·본문 */
.guide-group--card {
  height: 100%;
  padding: 11px 13px;
  background: var(--home-surface-2);
  border: 1px solid var(--home-border);
  border-radius: 10px;
}

.guide-group-title {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0 0 7px;
  font-size: 13px;
  font-weight: 700;
  color: var(--home-ink);
  letter-spacing: -0.02em;
}

.guide-list {
  margin: 0;
  padding-left: 1.15em;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.guide-list li {
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--home-ink-mid);
}

.guide-list--compact li {
  font-size: 12px;
  line-height: 1.5;
}

.guide-tip,
.guide-tip-item {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  padding: 10px 12px;
  background: var(--home-surface-2);
  border: 1px solid var(--home-border);
  border-radius: 10px;
}

.guide-tip p,
.guide-tip-item p {
  margin: 0;
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--home-ink-mid);
}

.guide-tip-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.guide-alert {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 8px;
  padding: 11px 13px;
  background: #faf8f3;
  border: 1px solid rgba(180, 150, 80, 0.2);
  border-left: 3px solid #c9a84a;
  border-radius: 10px;
}

.guide-alert p {
  flex: 1 1 200px;
  margin: 0;
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1.55;
  color: var(--home-ink-mid);
}

.guide-video {
  padding: 11px 13px;
  background: var(--home-surface-2);
  border: 1px solid var(--home-border);
  border-radius: 10px;
}

.guide-video-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.guide-stats {
  padding: 11px 13px;
  background: var(--home-surface-2);
  border: 1px solid var(--home-border);
  border-radius: 10px;
}

.guide-stats-bar {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.guide-stats-bar li {
  padding: 9px 10px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.48;
  color: var(--home-ink-mid);
  background: var(--home-surface);
  border: 1px solid var(--home-border);
  border-radius: 8px;
}

.guide-info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 12.5px;
}

.guide-info-table th,
.guide-info-table td {
  border: 1px solid var(--home-border);
  padding: 8px 11px;
  text-align: left;
  vertical-align: top;
}

.guide-info-table th {
  width: 26%;
  font-weight: 700;
  color: var(--home-ink);
  background: var(--home-surface-2);
}

.guide-info-table td {
  font-weight: 500;
  color: var(--home-ink-mid);
}

.guide-articles--grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.guide-tag {
  padding: 2px 7px;
  font-size: 10px;
  font-weight: 700;
  color: var(--home-accent);
  background: var(--home-accent-soft);
  border-radius: 5px;
}

/* —— 링크 (명확한 CTA, 절제된 스타일) —— */
.view-home a.guide-link-cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  width: 100%;
  margin-top: 6px;
  padding: 11px 14px;
  font-size: 12.5px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--home-ink) !important;
  text-decoration: none !important;
  background: var(--home-surface);
  border: 1px solid var(--home-border);
  border-radius: 10px;
  box-shadow: none;
  transition: border-color 0.18s ease, background 0.18s ease;
  cursor: pointer;
}

.view-home a.guide-link-cta:hover {
  background: var(--home-accent-soft);
  border-color: rgba(37, 99, 235, 0.35);
}

.view-home a.guide-link-cta:active {
  background: rgba(37, 99, 235, 0.1);
}

.guide-link-cta-label {
  flex: 1;
  text-align: left;
}

.guide-link-cta-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  background: var(--home-accent);
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(61, 111, 217, 0.35);
}

.view-home a.guide-article.guide-link-cta {
  flex-wrap: wrap;
}

.view-home a.guide-video-pill.guide-link-cta {
  flex: 1 1 220px;
  width: auto;
}

.guide-article-title {
  flex: 1 1 160px;
  font-weight: 700;
  color: var(--home-ink);
}

/* —— 🍀 응원 한마디 —— */
.guide-section--quotes {
  background: linear-gradient(180deg, #fafbfd 0%, #f6f7fa 100%);
}

.guide-section--quotes .guide-section-head {
  justify-content: center;
  padding: 12px 16px;
  background: linear-gradient(135deg, rgba(201, 107, 154, 0.12) 0%, rgba(90, 107, 200, 0.1) 50%, rgba(45, 154, 122, 0.1) 100%);
  border: 1.5px solid rgba(201, 107, 154, 0.28);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 6px 18px rgba(124, 92, 239, 0.1);
}

.guide-section--quotes .guide-section-accent {
  display: none;
}

.guide-section--quotes .guide-section-title {
  font-size: 17px;
  color: var(--home-ink);
  background: none;
  -webkit-text-fill-color: unset;
}

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

.guide-section--quotes .guide-quote {
  margin: 0;
  padding: 14px 14px 12px 16px;
  background: var(--home-surface);
  border: 1px solid var(--home-border);
  border-radius: 11px;
  box-shadow: 0 4px 14px rgba(20, 24, 32, 0.04);
}

.guide-section--quotes .guide-quote::before {
  display: none;
}

.guide-section--quotes .guide-quote p {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.58;
  color: var(--home-ink);
}

.guide-section--quotes .guide-quote cite {
  display: block;
  padding-top: 8px;
  font-size: 11px;
  font-weight: 600;
  color: var(--home-ink-soft);
  border-top: 1px solid var(--home-border);
}

.guide-section--quotes .guide-callout {
  display: flex;
  gap: 14px;
  padding: 16px 18px;
  background: var(--home-surface);
  border: 1px solid var(--home-border);
  border-left: 3px solid #2d9a7a;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(20, 24, 32, 0.05);
}

.guide-section--quotes .guide-callout::before {
  display: none;
}

.guide-section--quotes .guide-callout strong {
  display: block;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 800;
  color: var(--home-ink);
}

.guide-section--quotes .guide-callout p {
  margin: 0;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.6;
  color: var(--home-ink-mid);
}

/* —— 푸터 —— */
.guide-footer {
  padding: 14px 16px;
  background: var(--home-surface);
  border: 1px solid var(--home-border);
  border-radius: var(--home-radius);
  box-shadow: 0 1px 2px rgba(15, 17, 23, 0.04);
}

.guide-footer-line {
  margin: 0;
  display: flex;
  justify-content: center;
}

.guide-footer .guide-link-cta {
  max-width: 560px;
}

@media (min-width: 960px) {
  .guide-section-body--grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .guide-tip-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .guide-notice-banner {
    padding: 14px 16px;
  }

  .guide-notice-text {
    font-size: 13px;
  }

  .guide-hero-head {
    padding: 18px 16px;
  }

  .guide-hero-title {
    font-size: 18px;
    white-space: normal;
  }

  .guide-marquee-flow {
    font-size: 12px;
  }
  .guide-section-body--grid,
  .guide-section-body--cheat {
    grid-template-columns: 1fr;
  }
  .guide-section-body--cheat .guide-group--card .guide-list--compact {
    grid-template-columns: 1fr;
  }
  .guide-stats-bar,
  .guide-tip-grid,
  .guide-articles--grid,
  .guide-quotes {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .guide-marquee-flow {
    animation: none;
  }

  .guide-marquee-flow {
    position: static;
    transform: none;
    white-space: normal;
    text-align: center;
    padding: 10px 0;
  }

  .guide-marquee-viewport {
    height: auto;
    mask-image: none;
  }

  .guide-section--elevated:hover {
    transform: none;
  }
}


/* ?? 2026 ? ?? */
.home-year-switch {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 8px 0 0;
}

.home-year-btn {
  min-width: 76px;
  padding: 8px 18px;
  border: 1px solid rgba(15, 17, 23, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: #6b7280;
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
}

.home-year-btn.is-active {
  color: #111318;
  background: #fff;
  border-color: rgba(184, 149, 90, 0.45);
  box-shadow: 0 8px 24px rgba(17, 19, 24, 0.08);
}


.home26 {
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  gap: 14px;
  min-height: calc(100dvh - 118px);
  padding: 8px 20px 96px;
  overflow: hidden;
}

.home26-sky {
  pointer-events: none;
  position: absolute;
  inset: 0 -6% -8%;
  z-index: 0;
  background:
    radial-gradient(ellipse 80% 46% at 50% -8%, rgba(255, 236, 198, 0.7), transparent 58%),
    radial-gradient(ellipse 42% 38% at 8% 78%, rgba(206, 220, 255, 0.38), transparent 62%),
    radial-gradient(ellipse 40% 36% at 94% 36%, rgba(255, 214, 228, 0.24), transparent 58%),
    linear-gradient(180deg, #f6f3ec 0%, #eef1f6 46%, #f4efe6 100%);
  animation: home26-sky 14s ease-in-out infinite alternate;
}

.home26-mist {
  position: absolute;
  border-radius: 50%;
  filter: blur(28px);
  opacity: 0.55;
  animation: home26-mist 11s ease-in-out infinite alternate;
}
.home26-mist--a {
  width: 42vw; height: 22vw; max-width: 460px; max-height: 220px;
  left: 8%; top: 18%;
  background: rgba(255, 232, 186, 0.45);
}
.home26-mist--b {
  width: 36vw; height: 20vw; max-width: 380px; max-height: 200px;
  right: 6%; top: 38%;
  background: rgba(214, 224, 255, 0.4);
  animation-delay: -4s;
}
.home26-mist--c {
  width: 50vw; height: 18vw; max-width: 520px; max-height: 180px;
  left: 22%; bottom: 12%;
  background: rgba(255, 244, 230, 0.5);
  animation-delay: -7s;
}

.home26-aura {
  position: absolute;
  inset: 0;
}
.home26-aura i {
  position: absolute;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #f3d27a;
  opacity: 0.35;
  box-shadow: 0 0 12px rgba(243, 210, 122, 0.85);
  animation: home26-spark 5.4s ease-in-out infinite;
}
.home26-aura i:nth-child(1) { left: 14%; top: 16%; }
.home26-aura i:nth-child(2) { left: 28%; top: 30%; animation-delay: 0.7s; }
.home26-aura i:nth-child(3) { left: 48%; top: 10%; animation-delay: 1.3s; }
.home26-aura i:nth-child(4) { left: 64%; top: 24%; animation-delay: 2s; }
.home26-aura i:nth-child(5) { left: 82%; top: 14%; animation-delay: 2.6s; }
.home26-aura i:nth-child(6) { left: 20%; top: 58%; animation-delay: 3.1s; }
.home26-aura i:nth-child(7) { left: 74%; top: 62%; animation-delay: 3.8s; }

.home26-hero,
.csat-run,
.home26-stage {
  position: relative;
  z-index: 1;
}

.home26-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  perspective: 720px;
}

.home26-kicker {
  margin: 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #8a8175;
}

.home26-year {
  display: inline-block;
  margin: 0;
  padding: 0.06em 0.12em 0.04em;
  font-size: clamp(56px, 12vw, 96px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.08;
  background: linear-gradient(180deg, #2a2c36 0%, #16181f 62%, #3c3424 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  overflow: visible;
  animation: home26-year-float 4.2s ease-in-out infinite;
}

.home26-lead {
  margin: 0;
  max-width: 22em;
  font-size: 16px;
  line-height: 1.7;
  color: #6b7280;
}

.csat-dday {
  position: relative;
  margin: 8px 0 2px;
  padding: 6px 12px 10px;
  font-size: clamp(42px, 9.4vw, 66px);
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 0.95;
  color: #f3d27a;
  transform-origin: 50% 60%;
  transform: rotateX(14deg) translateZ(12px);
  text-shadow:
    0 1px 0 #c9a227,
    0 2px 0 #8a6a1a,
    0 3px 0 #5c4312,
    0 5px 0 #2a1d08,
    0 10px 18px rgba(12, 6, 0, 0.55),
    -3px 0 8px rgba(170, 16, 28, 0.45),
    3px 0 8px rgba(40, 70, 160, 0.38);
  animation: csat-omen-pulse 2.6s ease-in-out infinite, csat-omen-twitch 4.2s steps(1) infinite;
}

.csat-dday::before,
.csat-dday::after {
  content: attr(data-text);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  color: inherit;
  pointer-events: none;
}

.csat-dday::before {
  color: #b01424;
  text-shadow: none;
  clip-path: inset(0 0 48% 0);
  transform: translate(-3px, 0);
  mix-blend-mode: multiply;
  opacity: 0.7;
  animation: csat-omen-split 3.1s steps(2) infinite;
}

.csat-dday::after {
  color: #3d5cff;
  text-shadow: none;
  clip-path: inset(52% 0 0 0);
  transform: translate(3px, 0);
  mix-blend-mode: screen;
  opacity: 0.55;
  animation: csat-omen-split 2.4s steps(2) infinite reverse;
}

.csat-dday.is-flip {
  animation: csat-dday-flip 0.55s ease;
}

.csat-run {
  width: min(100%, 640px);
  perspective: 720px;
}

.csat-datebox {
  position: relative;
  display: inline-block;
  max-width: 100%;
  padding: 6px 100px 0 0;
  margin-bottom: 2px;
}

.csat-run-label {
  position: relative;
  z-index: 1;
  margin: 0 0 14px;
  font-size: clamp(13px, 2.4vw, 16px);
  font-weight: 800;
  letter-spacing: 0.06em;
  color: #4a3814;
  text-shadow: none;
  transform: none;
  animation: none;
}

.csat-run-label::before,
.csat-run-label::after {
  content: none;
}

.csat-run-date {
  display: inline-block;
  margin-left: 0.2em;
  padding: 2px 10px 3px;
  font-size: 1.22em;
  font-weight: 900;
  letter-spacing: 0.03em;
  color: #1a1208;
  background: #fff6d2;
  border: 1.5px solid #8a6a1a;
  border-radius: 7px;
  text-shadow: none;
  box-shadow: none;
}

.csat-hud {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 6px;
  padding: 15px 14px 13px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(32, 34, 42, 0.96), #12141a 70%),
    radial-gradient(ellipse 80% 80% at 50% 0%, rgba(243, 210, 122, 0.16), transparent 55%);
  box-shadow:
    0 0 0 1px rgba(212, 175, 92, 0.28),
    0 18px 40px rgba(15, 17, 23, 0.22);
  animation: csat-hud-glow 2.4s ease-in-out infinite;
}

.csat-hud::after {
  content: "";
  position: absolute;
  inset: -40% -20%;
  background: linear-gradient(115deg, transparent 40%, rgba(255, 236, 180, 0.1) 50%, transparent 60%);
  animation: csat-scan 3.8s ease-in-out infinite;
  pointer-events: none;
}

.csat-unit {
  min-width: 52px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.csat-unit strong {
  margin: 0;
  font-size: clamp(22px, 5.4vw, 34px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
  color: #f4e6c2;
  text-shadow: 0 0 18px rgba(212, 175, 92, 0.35);
}

.csat-unit span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(244, 230, 194, 0.48);
}

.csat-unit--days strong {
  color: #ffe08a;
  text-shadow: 0 0 22px rgba(255, 224, 138, 0.55);
}

.csat-unit--live strong { color: #ffe08a; }
.csat-unit--ms { min-width: 40px; }
.csat-unit--ms strong {
  font-size: clamp(16px, 4.2vw, 22px);
  color: #c8b48a;
}
.csat-unit--live strong.is-tick { animation: csat-tick 0.35s ease; }

.csat-colon,
.csat-dot {
  padding-bottom: 18px;
  font-size: 22px;
  font-weight: 700;
  color: #d4af5c;
  animation: csat-blink 1s steps(2) infinite;
}
.csat-dot { animation-duration: 0.2s; }

.csat-track {
  position: relative;
  height: 26px;
  margin-top: 12px;
}
.csat-track-bg,
.csat-fill {
  position: absolute;
  left: 0;
  right: 22px;
  top: 12px;
  height: 4px;
  border-radius: 99px;
}
.csat-track-bg { background: rgba(18, 20, 26, 0.1); }
.csat-fill {
  right: auto;
  width: calc(100% - 22px);
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, #c9a227, #f3d27a, #ffe9a8);
  box-shadow: 0 0 12px rgba(212, 175, 92, 0.55);
}
.csat-runner {
  position: absolute;
  top: 5px;
  left: 0;
  width: 18px;
  height: 18px;
  margin-left: -9px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: radial-gradient(circle at 35% 30%, #fff6d6, #e2b53a 55%, #8a6a1a);
  box-shadow: 0 0 0 3px rgba(255, 224, 138, 0.25), 0 0 18px rgba(227, 181, 58, 0.75);
  animation: csat-pulse 0.9s ease-in-out infinite, csat-runner-hop 0.7s ease-in-out infinite;
}
.csat-runner img {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.csat-flag {
  position: absolute;
  right: 0;
  top: 0;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
  color: #8a6a32;
}

.csat-run.is-near .csat-hud {
  box-shadow:
    0 0 0 1px rgba(255, 196, 80, 0.45),
    0 0 28px rgba(212, 140, 40, 0.28),
    0 18px 40px rgba(15, 17, 23, 0.28);
  animation: csat-hud-glow 2.4s ease-in-out infinite, csat-near-pulse 0.7s ease-in-out infinite;
}
.csat-run.is-final .csat-dday { animation-duration: 0.72s; }
.csat-run.is-final .csat-hud {
  animation: csat-hud-glow 1.2s ease-in-out infinite, csat-near-pulse 0.38s ease-in-out infinite;
}

.home26-stage {
  display: grid;
  grid-template-columns: minmax(120px, 168px) minmax(0, 1fr);
  align-items: end;
  width: min(100%, 640px);
  margin-top: 4px;
}

.home26-cheer {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 -18px -6px 0;
  pointer-events: none;
}
.home26-cheer::before {
  content: "";
  position: absolute;
  left: 18%;
  right: 18%;
  bottom: 10%;
  height: 28%;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(243, 210, 122, 0.35), transparent 70%);
  filter: blur(6px);
  animation: home26-breathe 3.2s ease-in-out infinite;
}
.home26-cheer-img {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  transform-origin: 50% 92%;
  -webkit-mask-image: radial-gradient(ellipse 70% 74% at 50% 48%, #000 54%, transparent 80%);
  mask-image: radial-gradient(ellipse 70% 74% at 50% 48%, #000 54%, transparent 80%);
  filter: drop-shadow(0 12px 16px rgba(20, 24, 32, 0.14));
  animation: home26-cheer 1.05s cubic-bezier(0.45, 0.05, 0.35, 1) infinite;
}

.home26-tip {
  width: auto;
  margin: 0;
  padding: 20px 22px 22px;
  border-radius: 18px;
  text-align: left;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.92), rgba(247, 241, 230, 0.9)),
    linear-gradient(120deg, rgba(255, 236, 200, 0.35), rgba(220, 228, 255, 0.2));
  border: 1px solid rgba(184, 149, 90, 0.2);
  box-shadow: 0 18px 40px rgba(31, 28, 20, 0.08);
  animation: home26-tip-in 0.8s ease both;
  backdrop-filter: blur(8px);
}

.home26-tip-badge {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #8a6a32;
  background: rgba(184, 149, 90, 0.14);
}
.home26-tip-title {
  margin: 10px 0 6px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #1a1712;
}
.home26-tip-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: #7a7468;
}

@keyframes home26-sky {
  0% { transform: scale(1) translateY(0); filter: hue-rotate(0deg); }
  100% { transform: scale(1.04) translateY(-1.5%); filter: hue-rotate(8deg); }
}
@keyframes home26-mist {
  0% { transform: translate3d(0, 0, 0) scale(1); }
  100% { transform: translate3d(4%, -6%, 0) scale(1.08); }
}
@keyframes home26-breathe {
  0%, 100% { opacity: 0.55; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.08); }
}
@keyframes home26-spark {
  0%, 100% { transform: translateY(0) scale(0.7); opacity: 0.12; }
  50% { transform: translateY(-16px) scale(1); opacity: 0.6; }
}
@keyframes home26-year-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}
@keyframes home26-shimmer {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}
@keyframes csat-omen-pulse {
  0%, 100% { transform: rotateX(14deg) translateZ(12px) scale(1); filter: brightness(1); }
  40% { transform: rotateX(14deg) translateZ(16px) scale(1.03); filter: brightness(1.08); }
  55% { transform: rotateX(14deg) translateZ(8px) scale(0.985); filter: brightness(0.82); }
}
@keyframes csat-omen-twitch {
  0%, 86%, 100% { translate: 0 0; }
  88% { translate: -3px 1px; }
  90% { translate: 3px -1px; }
  92% { translate: -1px 2px; }
  94% { translate: 2px 0; }
}
@keyframes csat-omen-split {
  0%, 80%, 100% { opacity: 0.15; }
  84% { opacity: 0.8; }
  88% { opacity: 0.2; }
  92% { opacity: 0.7; }
}
@keyframes csat-omen-label {
  0%, 100% { transform: rotateX(10deg); letter-spacing: 0.14em; opacity: 0.92; }
  50% { transform: rotateX(10deg) translateZ(6px); letter-spacing: 0.18em; opacity: 1; }
}
@keyframes csat-dday-beat {
  0%, 100% { transform: scale(1); }
  45% { transform: scale(1.04); }
}
@keyframes csat-dday-flip {
  0% { transform: translateY(-8px) scale(1.08); opacity: 0.4; }
  100% { transform: none; opacity: 1; }
}
@keyframes csat-hud-glow {
  0%, 100% { box-shadow: 0 0 0 1px rgba(212, 175, 92, 0.28), 0 18px 40px rgba(15, 17, 23, 0.22); }
  50% { box-shadow: 0 0 0 1px rgba(243, 210, 122, 0.5), 0 0 26px rgba(212, 175, 92, 0.2), 0 18px 40px rgba(15, 17, 23, 0.22); }
}
@keyframes csat-scan {
  0% { transform: translateX(-30%); }
  100% { transform: translateX(30%); }
}
@keyframes csat-blink { 50% { opacity: 0.25; } }
@keyframes csat-tick {
  0% { transform: translateY(-3px) scale(1.08); color: #fff; }
  100% { transform: none; }
}
@keyframes csat-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(255, 224, 138, 0.2), 0 0 12px rgba(227, 181, 58, 0.55); }
  50% { box-shadow: 0 0 0 6px rgba(255, 224, 138, 0.12), 0 0 22px rgba(227, 181, 58, 0.9); }
}
@keyframes csat-runner-hop {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
@keyframes home26-tip-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: none; }
}
@keyframes home26-cheer {
  0%, 100% { transform: translateY(0) rotate(-3deg) scale(1, 1); }
  22% { transform: translateY(-16px) rotate(4deg) scale(1.03, 0.97); }
  40% { transform: translateY(-4px) rotate(-2deg) scale(0.98, 1.04); }
  58% { transform: translateY(-18px) rotate(5deg) scale(1.04, 0.96); }
  76% { transform: translateY(-2px) rotate(-1deg) scale(0.99, 1.02); }
}

@media (max-width: 720px) {
  .home26 { min-height: calc(100dvh - 108px); padding: 6px 14px 92px; gap: 12px; }
  .home26-year { font-size: clamp(52px, 18vw, 80px); }
  .csat-dday { font-size: clamp(36px, 11vw, 52px); }
  .csat-hud { gap: 2px; padding: 13px 8px 11px; }
  .csat-unit { min-width: 42px; }
  .csat-colon, .csat-dot { font-size: 18px; padding-bottom: 16px; }
  .home26-stage {
    grid-template-columns: 1fr;
    justify-items: center;
    width: min(100%, 420px);
  }
  .home26-cheer {
    width: min(120px, 38vw);
    margin: 0 0 -22px;
  }
  .home26-tip { width: 100%; padding: 18px 18px 20px; }
  .home-year-btn { min-width: 68px; padding: 7px 14px; }
}

@media (prefers-reduced-motion: reduce) {
  .home26-sky, .home26-mist, .home26-aura i, .home26-year, .csat-dday,
  .csat-run-label, .csat-dday::before, .csat-dday::after,
  .csat-run-label::before, .csat-run-label::after,
  .csat-hud, .csat-hud::after, .home26-tip, .home26-cheer-img,
  .csat-colon, .csat-dot, .csat-runner, .csat-unit--live strong.is-tick {
    animation: none;
  }
}


.csat-pop {
  position: absolute;
  top: 2px;
  right: 0;
  z-index: 3;
  padding: 5px 10px 6px;
  border: 2px solid #e2b53a;
  border-radius: 12px 12px 12px 4px;
  background: linear-gradient(180deg, #fff6d2 0%, #f3d27a 58%, #d4a322 100%);
  color: #3d2a08;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.02em;
  line-height: 1.2;
  white-space: nowrap;
  transform: perspective(380px) rotateX(16deg) rotateZ(4deg) translateZ(10px);
  box-shadow:
    0 1px 0 #fff4c4,
    0 3px 0 #8a6a1a,
    0 8px 14px rgba(40, 24, 0, 0.28);
  animation: csat-pop-bob 1.15s ease-in-out infinite, csat-pop-flash 1.6s ease-in-out infinite;
}

.csat-pop::after {
  content: "";
  position: absolute;
  left: -6px;
  bottom: 7px;
  border-width: 5px 6px 5px 0;
  border-style: solid;
  border-color: transparent #d4a322 transparent transparent;
  filter: drop-shadow(-1px 1px 0 #8a6a1a);
}

.csat-flash {
  display: none;
}

.csat-run.is-near .csat-pop {
  color: #3a0c0c;
  border-color: #ffb020;
  background: linear-gradient(180deg, #fff1b0 0%, #ff9a3a 55%, #d44818 100%);
  animation: csat-pop-bob 0.55s ease-in-out infinite, csat-pop-flash 0.45s steps(2) infinite;
}

.csat-run.is-near .csat-flash {
  animation-duration: 0.55s;
  background: linear-gradient(105deg, transparent 30%, rgba(255, 80, 40, 0.55) 50%, transparent 70%);
}

.csat-run.is-near .csat-unit--days strong,
.csat-run.is-near .csat-dday {
  animation: csat-omen-pulse 0.7s ease-in-out infinite, csat-omen-twitch 1.6s steps(1) infinite;
}

.csat-run.is-near .csat-colon {
  animation-duration: 0.35s;
  color: #ffb020;
}

.csat-run.is-final .csat-pop {
  animation: csat-pop-bob 0.35s ease-in-out infinite, csat-pop-flash 0.22s steps(2) infinite;
}

.csat-run.is-final .csat-hud {
  background:
    linear-gradient(180deg, rgba(64, 12, 12, 0.96), #1a0808 70%),
    radial-gradient(ellipse 80% 80% at 50% 0%, rgba(255, 80, 40, 0.28), transparent 55%);
}

@keyframes csat-pop-bob {
  0%, 100% { transform: perspective(380px) rotateX(16deg) rotateZ(4deg) translateZ(10px) translateY(0); }
  50% { transform: perspective(380px) rotateX(10deg) rotateZ(-3deg) translateZ(16px) translateY(-4px); }
}

@keyframes csat-pop-flash {
  0%, 100% { filter: brightness(1); }
  45% { filter: brightness(1.35); }
  55% { filter: brightness(0.85); }
}

@keyframes csat-date-flash {
  0% { transform: translateX(-40%); opacity: 0; }
  35% { opacity: 0.85; }
  100% { transform: translateX(40%); opacity: 0; }
}

@keyframes csat-near-pulse {
  0%, 100% { filter: brightness(1); }
  50% { filter: brightness(1.18) saturate(1.2); }
}

@media (max-width: 720px) {
  .csat-datebox { padding: 6px 86px 0 0; width: auto; max-width: 100%; }
  .csat-pop {
    right: 0;
    font-size: 10px;
    padding: 4px 8px 5px;
  }
  .csat-run-label { font-size: clamp(12px, 3.4vw, 14px); letter-spacing: 0.06em; }
}

@media (max-width: 480px) {
  .csat-pop {
    position: relative;
    top: auto;
    right: auto;
    display: inline-block;
    margin: 0 0 6px;
    transform: none;
  }
  .csat-datebox {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4px 0 0;
  }
  .csat-pop::after { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  .csat-pop, .csat-flash { animation: none; }
}
