/* ============================================================
   このゆび杯 / KONOYUBI CUP — VALORANT server tournament site
   ============================================================ */

:root {
  --bg:          #0F1923;
  --bg-alt:      #131F2B;
  --bg-card:     #182633;
  --bg-elev:     #1E2E3D;
  --ink:         #ECE8E1;
  --ink-dim:     #9BAAB8;
  --ink-faint:   #6B7C8C;
  --red:         #FF4655;
  --red-deep:    #C7303D;
  --teal:        #22E0C0;
  --gold:        #F5C542;
  --line:        rgba(236, 232, 225, 0.12);
  --line-strong: rgba(236, 232, 225, 0.24);

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.35);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 18px 48px rgba(0, 0, 0, 0.55);
  --glow-red:  0 0 28px rgba(255, 70, 85, 0.35);

  --nav-h: 66px;
  --wrap: 1120px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  --font-jp: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  --font-en: "Oswald", "Noto Sans JP", sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-h);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-jp);
  font-size: 16px;
  line-height: 1.9;
  font-weight: 400;
  overflow-x: hidden;
  /* faint diagonal texture */
  background-image:
    repeating-linear-gradient(115deg, rgba(255, 255, 255, 0.014) 0 1px, transparent 1px 7px);
}

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

.wrap {
  width: min(100% - 40px, var(--wrap));
  margin-inline: auto;
}

::selection { background: var(--red); color: #fff; }

/* ---------- NAV ---------- */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  height: var(--nav-h);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(16px, 4vw, 40px);
  background: rgba(15, 25, 35, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .3s var(--ease), border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.nav.is-stuck {
  background: rgba(15, 25, 35, 0.94);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-md);
}

.nav__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 900;
  letter-spacing: .04em;
}
.nav__logo-mark {
  display: grid;
  place-items: center;
  width: 30px; height: 30px;
  background: var(--red);
  color: #fff;
  font-size: 15px;
  clip-path: polygon(0 0, 100% 0, 100% 72%, 72% 100%, 0 100%);
  box-shadow: var(--shadow-sm);
}
.nav__logo-text { font-size: 17px; }

.nav__links { display: flex; gap: 4px; }
.nav__links a {
  position: relative;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  color: var(--ink-dim);
  transition: color .2s var(--ease);
}
.nav__links a::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 2px;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s var(--ease);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after,
.nav__links a.is-current::after { transform: scaleX(1); }
.nav__links a.is-current { color: var(--ink); }

.nav__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px; height: 42px;
  padding: 0 9px;
  background: none;
  border: 1px solid var(--line-strong);
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  transition: transform .3s var(--ease), opacity .2s var(--ease);
}
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 34px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .06em;
  text-decoration: none;
  border: 2px solid transparent;
  clip-path: polygon(0 0, 100% 0, 100% 68%, calc(100% - 14px) 100%, 0 100%);
  transition: transform .22s var(--ease), background .22s var(--ease),
              color .22s var(--ease), box-shadow .22s var(--ease);
}
.btn--primary {
  background: var(--red);
  color: #fff;
  box-shadow: var(--shadow-md), var(--glow-red);
}
.btn--primary:hover {
  background: #FF5C69;
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg), 0 0 36px rgba(255, 70, 85, 0.5);
}
.btn--ghost {
  border-color: var(--line-strong);
  color: var(--ink);
  background: rgba(236, 232, 225, 0.03);
}
.btn--ghost:hover {
  border-color: var(--ink);
  background: rgba(236, 232, 225, 0.1);
  transform: translateY(-3px);
}

/* ---------- HERO ---------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding: calc(var(--nav-h) + 40px) 20px 90px;
  overflow: hidden;
  text-align: center;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1000px 620px at 50% -8%, rgba(255, 70, 85, 0.26), transparent 62%),
    radial-gradient(760px 520px at 88% 92%, rgba(34, 224, 192, 0.12), transparent 65%),
    linear-gradient(180deg, #101C27 0%, var(--bg) 62%);
}
.hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(90deg, rgba(236, 232, 225, 0.035) 0 1px, transparent 1px 88px),
    repeating-linear-gradient(0deg, rgba(236, 232, 225, 0.035) 0 1px, transparent 1px 88px);
  mask-image: radial-gradient(circle at 50% 45%, #000 5%, transparent 72%);
  -webkit-mask-image: radial-gradient(circle at 50% 45%, #000 5%, transparent 72%);
}
.hero__inner { position: relative; z-index: 1; }

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 20px;
  font-family: var(--font-en);
  font-size: clamp(11px, 1.5vw, 13px);
  font-weight: 600;
  letter-spacing: .38em;
  color: var(--red);
  text-transform: uppercase;
}
.dash { width: 40px; height: 2px; background: var(--red); }

.hero__title { margin: 0; line-height: 1; }
.hero__title-jp {
  display: block;
  font-size: clamp(52px, 13vw, 132px);
  font-weight: 900;
  letter-spacing: .02em;
  background: linear-gradient(178deg, #FFFFFF 22%, #C9D4DE 58%, #8FA0AF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 8px 26px rgba(0, 0, 0, 0.6));
}
.hero__title-en {
  display: block;
  margin-top: 10px;
  font-family: var(--font-en);
  font-size: clamp(13px, 2.6vw, 22px);
  font-weight: 500;
  letter-spacing: .52em;
  text-indent: .52em;
  color: var(--ink-faint);
}

.hero__sub {
  margin: 26px 0 0;
  font-size: clamp(15px, 2.2vw, 19px);
  font-weight: 700;
  color: var(--ink);
}

.hero__date {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 26px;
  padding: 10px 26px;
  border: 1px solid var(--line-strong);
  background: rgba(15, 25, 35, 0.6);
  clip-path: polygon(14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%, 0 14px);
  box-shadow: var(--shadow-md);
}
.hero__date-main {
  font-family: var(--font-en);
  font-size: clamp(26px, 5.4vw, 44px);
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--ink);
}
.hero__date-dow {
  font-family: var(--font-en);
  font-size: clamp(12px, 2vw, 16px);
  font-weight: 600;
  letter-spacing: .2em;
  color: var(--red);
}

/* countdown */
.countdown {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: clamp(6px, 2vw, 18px);
  margin-top: 34px;
}
.countdown__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: clamp(58px, 15vw, 92px);
  padding: 12px 6px 9px;
  background: rgba(24, 38, 51, 0.78);
  border: 1px solid var(--line);
  border-top: 2px solid var(--red);
  box-shadow: var(--shadow-md);
}
.countdown__num {
  font-family: var(--font-en);
  font-size: clamp(26px, 6vw, 42px);
  font-weight: 700;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.countdown__label {
  margin-top: 6px;
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .22em;
  color: var(--ink-faint);
}
.countdown__sep {
  align-self: center;
  font-family: var(--font-en);
  font-size: clamp(18px, 4vw, 28px);
  color: var(--ink-faint);
  transform: translateY(-6px);
}
.countdown.is-done .countdown__num { color: var(--red); }
.countdown__done {
  margin: 0;
  padding: 14px 34px;
  font-size: clamp(20px, 4.4vw, 32px);
  font-weight: 900;
  letter-spacing: .08em;
  color: #fff;
  background: var(--red);
  clip-path: polygon(0 0, 100% 0, 100% 72%, calc(100% - 16px) 100%, 0 100%);
  box-shadow: var(--shadow-lg), var(--glow-red);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-top: 40px;
}

.hero__scroll {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: .3em;
  color: var(--ink-faint);
}
.hero__scroll-line {
  width: 1px;
  height: 46px;
  background: linear-gradient(180deg, transparent, var(--red));
  animation: scrollPulse 2.2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: .25; transform: scaleY(.55); transform-origin: bottom; }
  50%      { opacity: 1;   transform: scaleY(1);   transform-origin: bottom; }
}

/* ---------- SECTION SHELL ---------- */
.section { padding: clamp(72px, 11vw, 128px) 0; }
.section--alt {
  background: var(--bg-alt);
  border-block: 1px solid var(--line);
}

.sec-head { margin-bottom: 44px; }
.sec-head__num {
  margin: 0;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .3em;
  color: var(--red);
}
.sec-head__title {
  position: relative;
  margin: 6px 0 0;
  padding-bottom: 16px;
  font-size: clamp(28px, 5.4vw, 44px);
  font-weight: 900;
  letter-spacing: .04em;
  line-height: 1.25;
}
.sec-head__title::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 64px; height: 4px;
  background: var(--red);
  box-shadow: var(--glow-red);
}
.sec-head__en {
  display: inline-block;
  margin-left: 16px;
  font-family: var(--font-en);
  font-size: clamp(12px, 2vw, 16px);
  font-weight: 500;
  letter-spacing: .28em;
  color: var(--ink-faint);
  vertical-align: middle;
}

.lead {
  margin: 0 0 42px;
  font-size: clamp(15px, 1.9vw, 17px);
  color: var(--ink-dim);
  line-height: 2.1;
}
.lead strong { color: var(--ink); }
.lead--warn {
  padding: 16px 22px;
  border-left: 4px solid var(--red);
  background: rgba(255, 70, 85, 0.07);
  color: var(--ink);
}

/* ---------- INFO CARDS ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 18px;
  margin-bottom: 56px;
}
.card {
  position: relative;
  padding: 26px 24px 24px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 18px), calc(100% - 18px) 100%, 0 100%);
  box-shadow: var(--shadow-md);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--teal);
  opacity: .8;
}
.card--accent::before { background: var(--red); }
.card:hover {
  transform: translateY(-6px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-lg);
}
.card__label {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .18em;
  color: var(--ink-faint);
}
.card__value {
  margin: 0;
  font-family: var(--font-en);
  font-size: clamp(28px, 4.6vw, 38px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: .02em;
}
.card--accent .card__value { color: var(--red); }
/* data.js の <span class="u">…</span>（「月」「日」などの単位） */
.card__unit,
.card__value .u {
  font-family: var(--font-jp);
  font-size: 15px;
  font-weight: 700;
  margin: 0 2px;
  color: var(--ink-dim);
}
.card__note {
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.75;
  color: var(--ink-dim);
}

/* ---------- FORMAT FLOW ---------- */
.format-flow {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  gap: 20px;
}
.flow-step {
  padding: 28px 26px;
  background: linear-gradient(160deg, var(--bg-elev), var(--bg-card));
  border: 1px solid var(--line);
  border-top: 3px solid var(--teal);
  box-shadow: var(--shadow-md);
}
.flow-step--final { border-top-color: var(--red); }
.flow-step__tag {
  display: inline-block;
  margin-bottom: 12px;
  padding: 3px 12px;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  color: var(--bg);
  background: var(--teal);
}
.flow-step--final .flow-step__tag { background: var(--red); color: #fff; }
.flow-step h3 { margin: 0 0 10px; font-size: 21px; font-weight: 900; }
.flow-step p { margin: 0; font-size: 14px; color: var(--ink-dim); line-height: 1.95; }
.flow-step strong { color: var(--ink); }
.flow-arrow {
  align-self: center;
  width: 0; height: 0;
  border-left: 14px solid var(--red);
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
}

/* ---------- ENTRY ---------- */
.entry {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 32px;
  align-items: start;
}
.entry__steps { display: flex; flex-direction: column; gap: 18px; }
.step {
  display: flex;
  gap: 20px;
  padding: 22px 24px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), border-color .25s var(--ease), box-shadow .25s var(--ease);
}
.step:hover {
  transform: translateX(6px);
  border-color: var(--line-strong);
  box-shadow: var(--shadow-md);
}
.step__num {
  flex: none;
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  font-family: var(--font-en);
  font-size: 21px;
  font-weight: 700;
  color: #fff;
  background: var(--red);
  clip-path: polygon(0 0, 100% 0, 100% 70%, 70% 100%, 0 100%);
  box-shadow: var(--shadow-sm);
}
.step__body h3 { margin: 4px 0 6px; font-size: 17px; font-weight: 900; }
.step__body p { margin: 0; font-size: 14px; color: var(--ink-dim); line-height: 1.9; }

.emoji-chip {
  display: inline-block;
  padding: 1px 8px;
  background: rgba(245, 197, 66, 0.14);
  border: 1px solid rgba(245, 197, 66, 0.4);
  border-radius: 4px;
}
.emoji-chip--lg { font-size: 26px; padding: 4px 14px; }

.entry__panel {
  position: sticky;
  top: calc(var(--nav-h) + 24px);
  padding: 30px 28px;
  background: linear-gradient(165deg, rgba(255, 70, 85, 0.14), var(--bg-card) 55%);
  border: 1px solid rgba(255, 70, 85, 0.3);
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 22px), calc(100% - 22px) 100%, 0 100%);
  box-shadow: var(--shadow-lg);
}
.entry__panel-label {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .22em;
  color: var(--red);
}
.entry__panel-date {
  margin: 0;
  font-family: var(--font-en);
  font-size: clamp(24px, 3.6vw, 32px);
  font-weight: 700;
  line-height: 1.25;
}
.entry__panel-date span { color: var(--ink-faint); margin: 0 1px; }
.entry__panel-date em { font-style: normal; color: var(--red); margin: 0 6px; }
.entry__panel-note {
  margin: 12px 0 0;
  font-size: 12px;
  color: var(--ink-faint);
  line-height: 1.8;
}
.entry__panel-divider {
  height: 1px;
  margin: 24px 0;
  background: var(--line-strong);
}
.entry__panel-react {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 17px;
  font-weight: 900;
}

/* ---------- TIMELINE ---------- */
.timeline {
  position: relative;
  margin: 0;
  padding: 0 0 0 34px;
  list-style: none;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 7px; top: 10px; bottom: 10px;
  width: 2px;
  background: linear-gradient(180deg, var(--teal), var(--red));
  opacity: .45;
}
.timeline__item { position: relative; padding-bottom: 40px; }
.timeline__item:last-child { padding-bottom: 0; }
.timeline__marker {
  position: absolute;
  left: -34px; top: 8px;
  width: 16px; height: 16px;
  background: var(--bg);
  border: 3px solid var(--teal);
  transform: rotate(45deg);
  box-shadow: 0 0 0 5px var(--bg);
}
.timeline__item--main .timeline__marker {
  border-color: var(--red);
  background: var(--red);
  box-shadow: 0 0 0 5px var(--bg), 0 0 20px rgba(255, 70, 85, 0.7);
}
.timeline__body {
  padding: 20px 24px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-left: 3px solid var(--teal);
  box-shadow: var(--shadow-sm);
}
.timeline__item--main .timeline__body {
  border-left-color: var(--red);
  background: linear-gradient(120deg, rgba(255, 70, 85, 0.1), var(--bg-card) 45%);
  box-shadow: var(--shadow-md);
}
.timeline__date {
  margin: 0 0 4px;
  font-family: var(--font-en);
  font-size: 17px;
  font-weight: 600;
  letter-spacing: .06em;
  color: var(--teal);
}
.timeline__item--main .timeline__date { color: var(--red); }
.timeline__date .dot { color: var(--ink-faint); margin: 0 4px; }
.timeline__title { margin: 0 0 8px; font-size: 20px; font-weight: 900; }
.timeline__desc { margin: 0; font-size: 14px; color: var(--ink-dim); line-height: 1.95; }
.hl {
  display: inline-block;
  margin-top: 6px;
  padding: 2px 0;
  color: var(--ink);
  background: linear-gradient(transparent 62%, rgba(245, 197, 66, 0.28) 62%);
}

/* ---------- RULES TABS ---------- */
.tabs { display: flex; gap: 8px; margin-bottom: -1px; flex-wrap: wrap; }
.tab {
  padding: 13px 30px;
  font-family: var(--font-jp);
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-dim);
  background: rgba(24, 38, 51, 0.6);
  border: 1px solid var(--line);
  border-bottom: none;
  cursor: pointer;
  clip-path: polygon(0 0, calc(100% - 14px) 0, 100% 14px, 100% 100%, 0 100%);
  transition: color .2s var(--ease), background .2s var(--ease);
}
.tab:hover { color: var(--ink); background: var(--bg-elev); }
.tab.is-active {
  color: var(--ink);
  background: var(--bg-card);
  border-color: var(--line-strong);
  box-shadow: inset 0 3px 0 var(--red);
}

.panel {
  display: none;
  padding: 34px clamp(20px, 4vw, 40px);
  background: var(--bg-card);
  border: 1px solid var(--line-strong);
  box-shadow: var(--shadow-lg);
  animation: panelIn .35s var(--ease);
}
.panel.is-active { display: block; }
@keyframes panelIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: none; }
}

.panel__head {
  padding-bottom: 22px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--line);
}
.panel__badge {
  display: inline-block;
  padding: 3px 12px;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .22em;
  color: var(--bg);
  background: var(--teal);
}
.panel__badge--final { background: var(--red); color: #fff; }
.panel__title { margin: 12px 0 6px; font-size: clamp(22px, 3.4vw, 30px); font-weight: 900; }
.panel__format {
  margin: 0;
  font-family: var(--font-en);
  font-size: 14px;
  letter-spacing: .1em;
  color: var(--ink-faint);
}

.rules {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 4px;
}
.rules li {
  position: relative;
  padding: 18px 18px 18px 30px;
  border-bottom: 1px solid var(--line);
  transition: background .2s var(--ease);
}
.rules li:last-child { border-bottom: none; }
.rules li:hover { background: rgba(236, 232, 225, 0.03); }
.rules li::before {
  content: "";
  position: absolute;
  left: 6px; top: 27px;
  width: 8px; height: 8px;
  background: var(--red);
  transform: rotate(45deg);
}
.rules h4 {
  margin: 0 0 6px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: .02em;
}
.rules p {
  margin: 0;
  font-size: 14.5px;
  color: var(--ink-dim);
  line-height: 1.95;
}
.rules p + p { margin-top: 6px; }
.rules strong { color: var(--ink); font-weight: 700; }
.rules__note {
  font-size: 13px !important;
  color: var(--ink-faint) !important;
}
.tbd {
  display: inline-block;
  padding: 1px 10px;
  font-size: 12px;
  font-weight: 700;
  color: var(--gold);
  background: rgba(245, 197, 66, 0.12);
  border: 1px dashed rgba(245, 197, 66, 0.5);
}

/* ---------- PROHIBITED ---------- */
.ban-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 18px;
}
.ban {
  padding: 26px 24px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-top: 3px solid var(--red);
  box-shadow: var(--shadow-md);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.ban:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.ban__icon { font-size: 28px; line-height: 1; margin-bottom: 12px; }
.ban h3 { margin: 0 0 8px; font-size: 17px; font-weight: 900; }
.ban p { margin: 0; font-size: 14px; color: var(--ink-dim); line-height: 1.9; }

/* ---------- CTA ---------- */
.cta {
  padding: clamp(64px, 9vw, 96px) 0;
  background:
    radial-gradient(760px 380px at 50% 0%, rgba(255, 70, 85, 0.2), transparent 68%),
    var(--bg-alt);
  border-top: 1px solid var(--line);
  text-align: center;
}
.cta__inner h2 {
  margin: 0 0 14px;
  font-size: clamp(22px, 4vw, 34px);
  font-weight: 900;
  letter-spacing: .03em;
}
.cta__inner p {
  margin: 0 auto 30px;
  max-width: 620px;
  font-size: 14.5px;
  color: var(--ink-dim);
  line-height: 2;
}

/* ---------- FOOTER ---------- */
.footer {
  padding: 40px 0 48px;
  background: #0B131B;
  border-top: 1px solid var(--line);
  text-align: center;
}
.footer__logo { margin: 0 0 6px; font-size: 17px; font-weight: 900; letter-spacing: .06em; }
.footer__note { margin: 0 0 14px; font-size: 13px; color: var(--ink-dim); }
.footer__disclaimer { margin: 0; font-size: 11.5px; color: var(--ink-faint); line-height: 1.8; }

/* ---------- REVEAL ANIMATION ---------- */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 940px) {
  .entry { grid-template-columns: 1fr; }
  .entry__panel { position: static; }
  .format-flow { grid-template-columns: 1fr; }
  .flow-arrow {
    justify-self: center;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 14px solid var(--red);
    border-bottom: none;
  }
}

@media (max-width: 760px) {
  .nav__toggle { display: flex; }
  .nav__links {
    position: absolute;
    top: var(--nav-h); left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    padding: 8px 0 14px;
    background: rgba(15, 25, 35, 0.98);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s var(--ease), transform .25s var(--ease);
  }
  .nav__links.is-open { opacity: 1; transform: none; pointer-events: auto; }
  .nav__links a { padding: 14px 24px; font-size: 15px; }
  .nav__links a::after { left: 24px; right: auto; width: 28px; bottom: 8px; }

  .step { flex-direction: column; gap: 12px; }
  .step:hover { transform: none; }
  .tab { flex: 1 1 auto; padding: 12px 16px; font-size: 14px; text-align: center; }
  .countdown__unit { min-width: 0; flex: 1; }
  .hero__date { flex-direction: column; align-items: center; gap: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}
