:root {
  --bg: #fffffe;
  --bg-alt: #f5f5f7;
  --bg-dark: #0f0e17;
  --bg-deep: #0f0e17;
  --surface: #ffffff;
  --text: #0f0e17;
  --text-mute: #5b5b66;
  --text-light: #d8d8de;
  --text-invert: #fffffe;
  --accent: #0097b2;        /* teal (penguin logo) */
  --accent-hover: #007a91;
  --accent-soft: #cdeef4;
  --navy: #0f0e17;          /* near-black (brand primary) */
  --border: #e5e5e8;
  --border-strong: #cfcfd4;
  --shadow-sm: 0 1px 2px rgba(20, 23, 31, 0.06);
  --shadow-md: 0 12px 32px rgba(20, 23, 31, 0.10);
  --shadow-lg: 0 24px 64px rgba(20, 23, 31, 0.18);
  --radius: 10px;
  --radius-lg: 18px;
  --maxw: 1120px;
  --font-jp: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic UI", system-ui, sans-serif;
  --font-en: "Inter", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Anton", "Inter", "Noto Sans JP", sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 72px; }

body {
  margin: 0;
  font-family: var(--font-en), var(--font-jp);
  font-size: 16px;
  line-height: 1.8;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
}
h1, h2, h3, h4 {
  font-family: var(--font-jp);
  font-weight: 800;
  letter-spacing: -0.015em;
}

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

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 36px;
  font-size: 15px;
  font-weight: 700;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
  letter-spacing: 0.04em;
  font-family: var(--font-jp);
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 151, 178, 0.35);
}
.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 151, 178, 0.55);
}
.btn-ghost {
  background: transparent;
  color: var(--text-invert);
  border-color: rgba(255, 255, 255, 0.4);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  text-decoration: none;
  border-color: rgba(255, 255, 255, 0.6);
}
.section .btn-ghost {
  color: var(--navy);
  border-color: var(--border-strong);
}
.section .btn-ghost:hover {
  background: var(--bg-alt);
  border-color: var(--navy);
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--navy);
  font-size: 17px;
  letter-spacing: -0.005em;
}
.brand-text {
  font-family: var(--font-en);
  font-weight: 700;
  transform: translateY(6px);
}
.brand:hover { text-decoration: none; }
.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  object-fit: cover;
  display: block;
  box-shadow: var(--shadow-sm);
}
.site-nav { display: flex; flex-wrap: nowrap; gap: 14px; flex: 1; justify-content: center; }
.site-nav a {
  color: var(--text-mute);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.01em;
  white-space: nowrap;
}
.site-nav a:hover { color: var(--navy); text-decoration: none; }
.site-nav a.active { color: var(--navy); }
.site-nav a.active::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  margin-top: 4px;
}
.header-cta { padding: 11px 22px; font-size: 14px; white-space: nowrap; flex-shrink: 0; }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 22px; height: 2px; background: var(--navy); border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  width: 100%;
  height: 90vh;
  min-height: 760px;
  overflow: hidden;
  background: var(--navy);
  color: var(--text-invert);
}
.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 100px 8% 64px;
  background:
    linear-gradient(90deg,
      rgba(15, 14, 23, 0.88) 0%,
      rgba(15, 14, 23, 0.55) 42%,
      rgba(15, 14, 23, 0.18) 100%),
    radial-gradient(60% 50% at 90% 10%, rgba(0, 151, 178, 0.18) 0%, rgba(0, 151, 178, 0) 60%);
}
.hero-content {
  max-width: 720px;
  color: #fff;
  position: relative;
  z-index: 2;
}
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, var(--accent) 50%, transparent 100%);
}
.eyebrow {
  margin: 0 0 24px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
  font-family: var(--font-en);
  position: relative;
  padding-left: 56px;
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 2px;
  background: var(--accent);
}
.hero-title {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: clamp(54px, 10vw, 128px);
  line-height: 0.95;
  letter-spacing: -0.01em;
  font-weight: 400;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 6px 32px rgba(0, 0, 0, 0.45);
}
.hero-tagline {
  margin: 8px 0 16px;
  font-size: clamp(18px, 2.2vw, 24px);
  color: #fff;
  line-height: 1.7;
  max-width: 640px;
  font-weight: 500;
  opacity: 0.92;
}
.hero-meta {
  margin: 0 0 36px;
  font-size: 14.5px;
  color: #fff;
  letter-spacing: 0.04em;
  padding: 12px 22px;
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  font-weight: 500;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero-meta-item { display: inline-flex; align-items: center; gap: 8px; }
.hero-meta-label {
  display: inline-block;
  font-size: 10.5px;
  letter-spacing: 0.16em;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.18);
  color: #fff;
}
.hero-meta-sep { opacity: 0.45; font-weight: 300; }
.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* Countdown */
.hero-countdown {
  margin: 24px 0 28px;
  padding: 22px 26px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  display: inline-block;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.countdown-state[hidden] { display: none !important; }
.countdown-label {
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: 0.18em;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
}
.countdown-label-strong {
  font-size: 14px;
  letter-spacing: 0.16em;
}
.countdown-units {
  display: flex;
  gap: 24px;
  align-items: flex-end;
}
.countdown-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 64px;
}
.countdown-num {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 800;
  line-height: 1;
  color: #fff;
  font-feature-settings: "tnum";
  letter-spacing: -0.02em;
}
.countdown-key {
  margin-top: 8px;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--text-light);
  font-weight: 600;
}
.countdown-sub {
  margin: 0;
  color: var(--text-light);
  font-size: 15px;
}
.countdown-sub strong {
  color: #fff;
  font-size: clamp(20px, 2.4vw, 28px);
  font-weight: 800;
  margin: 0 4px;
  font-feature-settings: "tnum";
}

/* 決勝大会進出特典バナー(活動証明書発行) */
.finals-perk {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin: 0 0 36px;
  padding: 22px 26px;
  background: linear-gradient(135deg, #fff8e1 0%, #ffe9a8 100%);
  border-left: 6px solid #e6a700;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(230, 167, 0, 0.18);
}
.finals-perk-badge {
  flex-shrink: 0;
  display: inline-block;
  padding: 6px 12px;
  background: #b07a00;
  color: #fff;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  font-family: var(--font-en);
  line-height: 1.2;
}
.finals-perk-body { flex: 1; min-width: 0; }
.finals-perk-title {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 800;
  color: #5c4400;
  letter-spacing: -0.005em;
  line-height: 1.45;
}
.finals-perk-sub {
  margin: 0;
  font-size: 13.5px;
  color: #5c4400;
  line-height: 1.75;
}
.finals-perk-sub strong { color: #3d2c00; }
/* 2枚目以降のバナーは teal アクセントに切替(SUPPORT バッジ用) */
.finals-perk + .finals-perk {
  margin-top: -20px;
  background: linear-gradient(135deg, #e6f6f9 0%, #c8eaf1 100%);
  border-left-color: var(--accent);
  box-shadow: 0 8px 24px rgba(0, 151, 178, 0.18);
}
.finals-perk + .finals-perk .finals-perk-badge { background: var(--accent-hover); }
.finals-perk + .finals-perk .finals-perk-title,
.finals-perk + .finals-perk .finals-perk-sub { color: #073a44; }
.finals-perk + .finals-perk .finals-perk-sub strong { color: #04222a; }
@media (max-width: 720px) {
  .finals-perk { flex-direction: column; gap: 10px; padding: 18px 20px; }
}

/* プラン作成にあたって(応募要項内のガイダンスカード) */
.apply-guidance {
  border-left: 4px solid var(--accent);
  background: linear-gradient(135deg, rgba(0,151,178,0.04) 0%, rgba(0,151,178,0.0) 60%);
}
.apply-guidance h3 { color: var(--accent-hover); }

/* theme.html プラン作成にあたって(detail-block 用) */
.detail-block-guidance {
  border-left: 4px solid var(--accent);
  background: linear-gradient(135deg, rgba(0,151,178,0.04) 0%, rgba(0,151,178,0.0) 60%);
  padding-left: 24px;
}
.detail-block-guidance h2 { color: var(--accent-hover); }

/* theme.html まちづくり・地域創生歓迎ブロック */
.detail-block-welcome {
  border-left: 4px solid #e6a700;
  background: linear-gradient(135deg, rgba(255, 215, 102, 0.08) 0%, rgba(255, 215, 102, 0.0) 60%);
  padding-left: 24px;
}
.detail-block-welcome h2 { color: #8c6300; }
.detail-block-welcome strong { color: #5c4400; }

/* 応募ゲート — 募集開始前/終了後の無効状態 */
.btn.btn-disabled,
.btn-disabled {
  background: #c5c5cc !important;
  color: #6f6f78 !important;
  border-color: #c5c5cc !important;
  box-shadow: none !important;
  cursor: not-allowed !important;
  pointer-events: none;
  opacity: 0.95;
  transform: none !important;
}
.btn.btn-disabled:hover,
.btn-disabled:hover {
  background: #c5c5cc !important;
  color: #6f6f78 !important;
  transform: none !important;
  box-shadow: none !important;
}
.entry-pre-banner {
  margin: 24px 0 28px;
  padding: 22px 26px;
  background: linear-gradient(135deg, #fff8e1 0%, #ffeed1 100%);
  border-left: 4px solid #e6a700;
  border-radius: 10px;
  color: #5c4400;
}
.entry-pre-banner.entry-closed-banner {
  background: linear-gradient(135deg, #f1f1f4 0%, #e5e5e8 100%);
  border-left-color: #6f6f78;
  color: #2c2c33;
}
.entry-pre-banner-title {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: -0.005em;
}
.entry-pre-banner-sub {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.7;
}
.entry-pre-banner-count {
  display: inline-block;
  margin-left: 6px;
  padding: 2px 10px;
  background: rgba(230, 167, 0, 0.18);
  border-radius: 999px;
  font-weight: 600;
}

/* Sections */
.section { padding: 120px 0; }
.section-alt { background: var(--bg-alt); }

.contact-sub { margin: 0 0 12px; font-size: 13.5px; color: var(--text-mute); line-height: 1.7; }
.contact-sub strong { color: var(--navy); }
.contact-sub a { font-weight: 600; }

/* TIPS / SNS CTA */
.section-tips {
  background: linear-gradient(135deg, #0f0e17 0%, #1a2f4a 50%, #1e8449 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.section-tips::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,0.08) 0%, transparent 40%),
    radial-gradient(circle at 80% 80%, rgba(255,255,255,0.06) 0%, transparent 40%);
  pointer-events: none;
}
.section-tips > .container { position: relative; z-index: 1; }
.section.section-tips h2 { color: #fff; }
.section.section-tips h2::after { background: #fff; }
.section.section-tips .section-lead { color: rgba(255,255,255,0.92); }
.section.section-tips .section-lead strong { color: #fff; }
.section.section-tips .kicker,
.kicker-tips { color: #ffd166 !important; }

.sns-cta-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.sns-cta-card {
  display: flex;
  align-items: center;
  gap: 22px;
  padding: 26px 30px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 16px;
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1), background 0.2s, border-color 0.2s, box-shadow 0.2s;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.sns-cta-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.45);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.35);
  text-decoration: none;
}
.sns-cta-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}
.sns-cta-x .sns-cta-icon { background: #000; }
.sns-cta-instagram .sns-cta-icon {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}
.sns-cta-body { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.sns-cta-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}
.sns-cta-handle {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.005em;
}
.sns-cta-action {
  margin-top: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #ffd166;
  letter-spacing: 0.02em;
}
.sns-cta-note {
  margin-top: 22px;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

@media (max-width: 720px) {
  .sns-cta-grid { grid-template-columns: 1fr; gap: 14px; }
  .sns-cta-card { padding: 22px 22px; gap: 18px; }
  .sns-cta-icon { width: 52px; height: 52px; }
  .sns-cta-handle { font-size: 18px; }
}

/* Reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
.kicker, .kicker-light {
  margin: 0 0 8px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent-hover);
}
.kicker-light { color: var(--accent); }
.section h2 {
  margin: 0 0 36px;
  font-size: clamp(32px, 4.6vw, 56px);
  letter-spacing: -0.025em;
  line-height: 1.15;
  color: var(--navy);
  font-weight: 900;
}
.section h2::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  background: var(--accent);
  margin-top: 18px;
  border-radius: 2px;
}
.kicker, .kicker-light {
  font-family: var(--font-en);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.24em;
}
.section-lead {
  margin: 0 0 32px;
  color: var(--text-mute);
  max-width: 720px;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-bottom: 40px;
}
.about-grid.single { grid-template-columns: 1fr; }
.about-grid h3 { margin: 0 0 8px; font-size: 18px; color: var(--navy); }
.theme-box {
  background: var(--navy);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 40px;
  margin: 16px 0 40px;
  position: relative;
  overflow: hidden;
}
.theme-box::before {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  background: radial-gradient(circle, rgba(0, 151, 178, 0.4) 0%, transparent 70%);
}
.theme-title { margin: 0 0 12px; font-size: 18px; color: var(--accent); }
.theme-text {
  margin: 0 0 20px;
  font-size: clamp(22px, 3.2vw, 36px);
  font-weight: 800;
  line-height: 1.55;
  letter-spacing: -0.015em;
}
.theme-desc { margin: 0; color: var(--text-light); }
.meta-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.about-philosophy {
  margin: 40px auto 0;
  max-width: 820px;
  padding: 24px 28px;
  background: #fff;
  border-left: 4px solid var(--accent);
  border-radius: 4px;
  color: var(--text);
  font-size: 15px;
  line-height: 1.9;
}
.meta-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 36px 32px;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.section-alt .meta-card { background: #fff; }
.meta-label {
  margin: 0 0 12px;
  font-size: 14px;
  letter-spacing: 0.12em;
  color: var(--accent-hover);
  font-weight: 700;
  text-transform: uppercase;
}
.meta-value {
  margin: 0;
  font-weight: 700;
  color: var(--navy);
  font-size: clamp(22px, 2.6vw, 30px);
  line-height: 1.4;
  letter-spacing: -0.01em;
}
.meta-sub {
  margin: 8px 0 0;
  font-size: 14px;
  color: var(--text-mute);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.meta-card-logo { justify-content: flex-start; }
.meta-card-logo .meta-label { margin: 0 0 16px; }
.meta-card-logo-img {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  min-height: 96px;
  transition: opacity 0.15s;
}
.meta-card-logo-img:hover { opacity: 0.75; }
.meta-card-logo-img img {
  max-width: 100%;
  max-height: 96px;
  object-fit: contain;
}

/* Bullets / numbered */
.bullets, .numbered { padding: 0; margin: 0; }
.bullets { list-style: none; }
.bullets li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 10px;
}
.bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 12px;
  width: 8px; height: 8px;
  background: var(--accent);
  transform: rotate(45deg);
}
.numbered {
  list-style: none;
  counter-reset: stp;
}
.numbered li {
  counter-increment: stp;
  position: relative;
  padding-left: 36px;
  margin-bottom: 10px;
}
.numbered li::before {
  content: counter(stp);
  position: absolute;
  left: 0; top: 4px;
  width: 24px; height: 24px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px;
}

/* Timeline */
.timeline {
  list-style: none;
  padding: 0;
  margin: 32px 0 0;
  position: relative;
}
.timeline::before {
  content: "";
  position: absolute;
  left: 12px; top: 12px; bottom: 12px;
  width: 2px;
  background: var(--border-strong);
}
.timeline-item {
  position: relative;
  padding: 0 0 48px 56px;
}
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: 2px; top: 8px;
  width: 22px; height: 22px;
  background: #fff;
  border: 4px solid var(--border-strong);
  border-radius: 50%;
  z-index: 1;
}
.timeline-past .timeline-dot {
  background: var(--border-strong);
  border-color: var(--border-strong);
}
.timeline-current .timeline-dot {
  background: #ff5757;
  border-color: #ff5757;
  box-shadow: 0 0 0 8px rgba(255, 87, 87, 0.22);
  animation: tl-pulse 1.8s ease-in-out infinite;
}
.timeline-future .timeline-dot {
  background: #fff;
  border-color: var(--border-strong);
}
.timeline-future .timeline-date { color: var(--text-mute); }
.timeline-future .timeline-body h3 { color: var(--text-mute); opacity: 0.85; }
.timeline-future .timeline-body p:last-child { opacity: 0.7; }
@keyframes tl-pulse {
  0%, 100% { box-shadow: 0 0 0 8px rgba(255, 87, 87, 0.22); }
  50% { box-shadow: 0 0 0 14px rgba(255, 87, 87, 0.08); }
}
.timeline-date {
  margin: 0 0 6px;
  font-size: clamp(15px, 1.6vw, 17px);
  color: var(--accent-hover);
  font-weight: 700;
  letter-spacing: 0.04em;
}
.timeline-body h3 {
  margin: 0 0 8px;
  font-size: clamp(20px, 2.4vw, 26px);
  color: var(--navy);
  line-height: 1.4;
}
.timeline-body p:last-child {
  margin: 0;
  color: var(--text-mute);
  font-size: clamp(15px, 1.6vw, 17px);
  line-height: 1.85;
}

/* Apply */
.apply-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 32px;
}
.apply-grid-3 { grid-template-columns: repeat(3, 1fr); }
.apply-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}
.apply-card h3 {
  margin: 0 0 16px;
  font-size: 17px;
  color: var(--navy);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.apply-btn { margin-top: 20px; }

.notes-card {
  margin-top: 24px;
  padding: 36px 40px;
}
.notes-card h3 { font-size: 20px; }
.notes-lead {
  margin: 0 0 24px;
  color: var(--text-mute);
  font-size: 14.5px;
}
.notes-block { margin-bottom: 28px; }
.notes-block:last-child { margin-bottom: 0; }
.notes-block h4 {
  margin: 0 0 12px;
  font-size: 15.5px;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.notes-block .bullets li {
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--text);
}

/* Criteria */
.criteria-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.criterion-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px 36px;
  position: relative;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.criterion-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.criterion-number {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 88px;
  font-weight: 400;
  line-height: 0.9;
  color: var(--accent);
  letter-spacing: -0.04em;
  font-feature-settings: "tnum";
}
.criterion-name {
  margin: 0 0 18px;
  font-size: 26px;
  color: var(--navy);
  padding-bottom: 14px;
  border-bottom: 2px solid var(--border);
  letter-spacing: 0.04em;
}
.criterion-desc {
  margin: 0;
  color: var(--text-mute);
  font-size: 15px;
  line-height: 1.9;
}

/* Judges */
.judges-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 32px;
}
.judge-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 32px 28px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.judge-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}
.judge-photo {
  position: relative;
  width: 120px;
  height: 120px;
  flex-shrink: 0;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--accent) 0%, #4a6c8c 100%);
  box-shadow: var(--shadow-sm);
}
.judge-photo::before {
  content: attr(data-initial);
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 400;
  letter-spacing: 0.04em;
  opacity: 0.92;
}
.judge-photo img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* ロゴ表示用: 全体が見えるよう contain + 白背景 + パディング */
.judge-photo-logo {
  background: #fff !important;
  border: 1px solid var(--border);
}
.judge-photo-logo::before { display: none; }
.judge-photo-logo img {
  object-fit: contain;
  padding: 18px;
  background: #fff;
}
/* 後日公開のプレースホルダー */
.judge-photo-tba {
  background: linear-gradient(135deg, #d8dde2 0%, #b4bcc4 100%) !important;
}
.judge-photo-tba::before { display: none; }
.judge-photo-tba-text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 0.06em;
  line-height: 1.15;
  z-index: 2;
}
.judge-info {
  flex: 1;
  min-width: 0;
}
.judge-role {
  margin: 0 0 4px;
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.04em;
  line-height: 1.5;
}
.judge-name {
  margin: 0 0 4px;
  font-size: 22px;
  color: var(--navy);
  letter-spacing: 0.01em;
  line-height: 1.3;
}
.judge-kana {
  margin: 0 0 14px;
  font-size: 12px;
  color: var(--text-mute);
  letter-spacing: 0.08em;
}
.judge-bio {
  margin: 0 0 14px;
  font-size: 13.5px;
  line-height: 1.85;
  color: var(--text);
}
.judge-comment {
  margin: 14px 0 0;
  padding: 14px 16px;
  background: var(--bg-alt);
  border-left: 3px solid var(--accent);
  border-radius: 0 8px 8px 0;
}
.judge-comment p {
  margin: 0;
  font-size: 13px;
  line-height: 1.8;
  color: var(--text);
  font-style: italic;
}
@media (max-width: 900px) {
  .judges-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .judge-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 28px 22px 24px;
  }
  .judge-comment {
    text-align: left;
    border-left-width: 3px;
  }
}

/* Company / Messages */
.company-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  margin-top: 32px;
  margin-bottom: 24px;
}
.company-card-head {
  display: flex;
  align-items: center;
  gap: 32px;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: 1px solid var(--border);
}
.company-logo {
  flex-shrink: 0;
  width: 200px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  transition: opacity 0.15s;
}
.company-logo:hover { opacity: 0.75; text-decoration: none; }
.company-logo img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.company-tag {
  margin: 0 0 6px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-hover);
  font-weight: 700;
}
.company-title {
  margin: 0;
  font-size: 26px;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.company-body {
  font-size: 15.5px;
  line-height: 1.95;
  color: var(--text);
}
.company-body p:first-child { margin-top: 0; }
.company-body p:last-child { margin-bottom: 0; }
.company-link { margin-top: 20px; }

.messages-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.message-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  gap: 24px;
}
.message-photo {
  flex-shrink: 0;
  width: 110px;
  height: 110px;
  border-radius: 14px;
  overflow: hidden;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mute);
  font-size: 12px;
}
.message-photo-flat img {
  transform: none !important;
  object-position: center 30% !important;
}
.message-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  transform: scale(1.45);
  transform-origin: center 35%;
  display: block;
}
.message-body { flex: 1; min-width: 0; }
.message-quote-mark {
  margin: -10px 0 4px;
  font-size: 56px;
  line-height: 0.7;
  color: var(--accent);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
}
.message-text {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.9;
  color: var(--text);
  border: 0;
  padding: 0;
  font-style: normal;
}
.message-org {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--accent-hover);
  font-weight: 700;
  text-transform: uppercase;
}
.message-name {
  margin: 4px 0 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
}

/* Prizes */
.prizes-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}
.prize-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.prize-card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.prize-gold::before { background: linear-gradient(90deg, #c9a24a, #f3d989); }
.prize-silver::before { background: linear-gradient(90deg, #9aa5bd, #cdd4e4); }
.prize-bronze::before { background: linear-gradient(90deg, #b67c4a, #d6a07d); }
.prize-gold { box-shadow: 0 12px 32px rgba(0, 151, 178, 0.18); transform: translateY(-4px); }
.prize-rank {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-hover);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.prize-amount {
  margin: 0 0 8px;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 900;
  color: var(--navy);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.prize-sub {
  margin: 0 0 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mute);
  letter-spacing: 0.05em;
}
.prize-perks {
  list-style: none;
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}
.prize-perks li {
  padding: 6px 0;
  color: var(--text-mute);
  font-size: 14.5px;
}
.prize-note {
  margin: 24px 0 0;
  font-size: 13px;
  color: var(--text-mute);
}

/* Sponsors */
.sponsor-tier { margin-bottom: 36px; }
.sponsor-tier:last-child { margin-bottom: 0; }
.sponsor-tier-label {
  margin: 0 0 16px;
  font-size: 13px;
  letter-spacing: 0.08em;
  font-weight: 700;
  color: var(--accent-hover);
  text-transform: uppercase;
}
.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.sponsor-grid-large { grid-template-columns: repeat(2, 1fr); }
.sponsor-grid-small { grid-template-columns: repeat(4, 1fr); }
.sponsor-logo {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  height: 96px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-mute);
  font-size: 13px;
  font-weight: 600;
}
.sponsor-grid-large .sponsor-logo { height: 120px; font-size: 14px; }
.sponsor-grid-small .sponsor-logo { height: 72px; }
.sponsor-logo img {
  max-width: 70%;
  max-height: 60%;
  object-fit: contain;
}
a.sponsor-logo {
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}
a.sponsor-logo:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  text-decoration: none;
}
.sponsor-cta {
  margin-top: 36px;
  padding: 28px;
  background: #fff;
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.sponsor-cta p { margin: 0; color: var(--text-mute); }

/* FAQ */
.faq-list {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-item summary {
  padding: 18px 24px;
  cursor: pointer;
  font-weight: 600;
  color: var(--navy);
  list-style: none;
  position: relative;
  padding-right: 48px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 20px;
  color: var(--accent);
  font-weight: 400;
  transition: transform 0.2s;
}
.faq-item[open] summary::after { content: "−"; }
.faq-item[open] summary { border-bottom: 1px solid var(--border); }
.faq-item p {
  margin: 0;
  padding: 18px 24px 22px;
  color: var(--text-mute);
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 32px;
}
.contact-grid h3 {
  margin: 0 0 16px;
  font-size: 17px;
  color: var(--navy);
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.contact-name { margin: 0 0 8px; font-weight: 700; color: var(--navy); }
.contact-grid p { margin: 0 0 8px; }
.contact-label {
  display: inline-block;
  min-width: 64px;
  font-weight: 600;
  color: var(--accent-hover);
  font-size: 13px;
}

/* Footer */
.site-footer {
  background: var(--bg-deep);
  color: var(--text-light);
  padding: 56px 0 32px;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px 48px;
  align-items: start;
}
.footer-title { margin: 0 0 6px; color: #fff; font-weight: 700; font-size: 18px; }
.footer-note { margin: 0; color: #9aa3bd; font-size: 14px; }
.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  justify-self: end;
}
.footer-nav a { color: #cfd5e6; font-size: 14px; }
.footer-nav a:hover { color: var(--accent); text-decoration: none; }
.footer-copy {
  grid-column: 1 / -1;
  margin: 24px 0 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 12px;
  color: #6b7287;
}

/* ===========================================================
   ENTRY FORM (entry.html)
   =========================================================== */
.container-narrow { max-width: 820px; }
.entry-section h1 {
  font-size: clamp(28px, 4vw, 44px);
  margin: 8px 0 18px;
  letter-spacing: -0.01em;
}
.entry-form {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.form-block {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  margin: 0;
  min-width: 0;
}
.form-block legend {
  font-family: var(--font-jp);
  font-weight: 800;
  font-size: 18px;
  padding: 0 10px;
  color: var(--text);
  letter-spacing: 0.01em;
}
.form-help {
  font-size: 13px;
  color: var(--text-mute);
  margin: -4px 0 14px;
  line-height: 1.6;
}
.form-row { margin-top: 18px; }
.form-row:first-of-type { margin-top: 14px; }
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-row-3 {
  display: grid;
  grid-template-columns: 1.4fr 1.6fr 1fr;
  gap: 12px;
}
.form-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.form-label .req {
  color: #d93b3b;
  font-size: 12px;
  margin-left: 4px;
}
.form-label .opt {
  color: var(--text-mute);
  font-size: 11px;
  font-weight: 500;
  margin-left: 4px;
  background: var(--bg-alt);
  padding: 1px 8px;
  border-radius: 999px;
}
.form-label .bonus {
  color: #b07a00;
  font-size: 11px;
  font-weight: 700;
  margin-left: 4px;
  background: #fff8e1;
  border: 1px solid #f0d96b;
  padding: 1px 10px;
  border-radius: 999px;
  letter-spacing: 0.02em;
}
.form-input {
  width: 100%;
  padding: 12px 14px;
  font-size: 15px;
  font-family: inherit;
  line-height: 1.5;
  color: var(--text);
  background: #fff;
  border: 1.5px solid var(--border-strong);
  border-radius: var(--radius);
  transition: border-color 0.15s, box-shadow 0.15s;
  appearance: none;
}
.form-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0, 151, 178, 0.15);
}
.form-textarea {
  resize: vertical;
  min-height: 120px;
}
.form-counter {
  font-size: 12px;
  color: var(--text-mute);
  margin: 6px 0 0;
  text-align: right;
}
.form-file {
  padding: 10px 12px;
  background: var(--bg-alt);
  cursor: pointer;
}
.form-file::file-selector-button {
  font: inherit;
  font-weight: 600;
  padding: 6px 14px;
  margin-right: 12px;
  border: 1.5px solid var(--border-strong);
  border-radius: 8px;
  background: #fff;
  color: var(--text);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.form-file::file-selector-button:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.attachment-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.attachment-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 8px 12px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
}
.attachment-name {
  font-weight: 600;
  color: var(--text);
  word-break: break-all;
}
.attachment-size {
  flex-shrink: 0;
  color: var(--text-mute);
  font-variant-numeric: tabular-nums;
  font-size: 12px;
}
.attachment-error {
  margin: 10px 0 0;
  padding: 10px 12px;
  background: #fff3f3;
  border: 1px solid #f3c2c2;
  border-radius: 8px;
  color: #c0392b;
  font-size: 13px;
  line-height: 1.6;
}
.member-group {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px dashed var(--border);
}
.member-group:first-of-type {
  margin-top: 8px;
  padding-top: 8px;
  border-top: none;
}
.member-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-mute);
  margin: 0 0 4px;
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 8px 0;
  font-size: 14px;
  line-height: 1.6;
  cursor: pointer;
}
.form-check input[type="checkbox"] {
  margin-top: 4px;
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
  flex-shrink: 0;
  cursor: pointer;
}
.form-actions {
  margin-top: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.form-submit {
  min-width: 280px;
  padding: 18px 40px;
  font-size: 16px;
}
.form-submit:disabled {
  background: var(--text-mute);
  cursor: not-allowed;
  box-shadow: none;
  transform: none;
}
.form-note {
  font-size: 12px;
  color: var(--text-mute);
  text-align: center;
  margin: 0;
}
.form-status {
  margin-top: 16px;
  padding: 16px 20px;
  border-radius: var(--radius);
  font-size: 14px;
  line-height: 1.7;
}
.form-status.success {
  background: #e7f7ed;
  color: #1f6b3a;
  border: 1px solid #b8e0c5;
}
.form-status.error {
  background: #fdecec;
  color: #a32525;
  border: 1px solid #f4c0c0;
}

.lead-note {
  display: inline-block;
  margin-top: 6px;
  font-size: 13px;
  color: var(--text-mute);
}
.lead-warn {
  display: inline-block;
  margin-top: 4px;
  font-size: 12px;
  color: #a35a00;
}

.draft-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 24px 0 -8px;
  padding: 14px 18px;
  background: #fff8e1;
  border: 1px solid #f1d27a;
  border-radius: var(--radius);
  font-size: 14px;
  color: #6a5515;
}
.draft-banner-text { line-height: 1.5; }
.draft-discard {
  flex-shrink: 0;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  background: #fff;
  color: #6a5515;
  border: 1px solid #d9b86a;
  border-radius: 999px;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s, color 0.15s;
}
.draft-discard:hover {
  background: #6a5515;
  color: #fff;
}

.autosave-status {
  font-size: 12px;
  color: var(--text-mute);
  margin: 0;
  text-align: center;
  min-height: 1.4em;
  transition: color 0.2s;
}
.autosave-status.is-saved {
  color: #1f6b3a;
}
.autosave-status.is-saving {
  color: var(--accent-hover);
}

@media (max-width: 720px) {
  .draft-banner { flex-direction: column; align-items: flex-start; }
}

/* ===========================================================
   THEME DETAIL PAGE (theme.html)
   =========================================================== */
.theme-detail-section h1 {
  font-size: clamp(28px, 4vw, 44px);
  margin: 8px 0 18px;
  letter-spacing: -0.01em;
}
.theme-box-detail { margin-top: 32px; }
.detail-block {
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
}
.detail-block h2 {
  font-size: 22px;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}
.detail-block p { margin: 0 0 12px; }
.detail-block .bullets,
.detail-block .numbered { margin: 0; padding-left: 22px; }
.detail-block .bullets li,
.detail-block .numbered li { margin-bottom: 10px; line-height: 1.8; }
.detail-lead {
  color: var(--text-mute);
  font-size: 14px;
  margin-bottom: 14px !important;
}
.detail-subhead {
  font-size: 16px;
  font-weight: 800;
  margin: 24px 0 12px;
  padding-left: 12px;
  border-left: 4px solid var(--accent);
  color: var(--text);
  letter-spacing: 0.01em;
}
.detail-block-warn {
  background: #fff8e1;
  border: 1px solid #f1d27a;
  border-top: 1px solid #f1d27a;
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  margin-top: 32px;
}
.detail-block-warn h2 { color: #6a5515; }
.detail-block-warn .bullets li { color: #564311; }

.spec-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 8px;
}
.spec-item {
  padding: 18px 18px 16px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.spec-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-mute);
  letter-spacing: 0.05em;
  margin: 0 0 6px;
  text-transform: uppercase;
}
.spec-value {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 6px !important;
  line-height: 1.4;
}
.spec-note {
  font-size: 12px;
  color: var(--text-mute);
  margin: 0 !important;
  line-height: 1.6;
}

.detail-cta {
  margin-top: 48px;
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

@media (max-width: 720px) {
  .spec-grid { grid-template-columns: 1fr; }
  .detail-block-warn { padding: 20px 18px; }
  .detail-cta .btn { width: 100%; }
}

@media (max-width: 720px) {
  .form-block { padding: 22px 18px; }
  .form-row-2,
  .form-row-3 { grid-template-columns: 1fr; gap: 14px; }
  .form-submit { width: 100%; min-width: 0; }
}

/* Responsive */
@media (max-width: 1080px) {
  .header-cta { display: none; }
  .site-nav {
    position: absolute;
    top: 84px;
    left: 0; right: 0;
    background: #fff;
    flex-direction: column;
    gap: 0;
    padding: 8px 16px;
    border-bottom: 1px solid var(--border);
    display: none;
    justify-content: flex-start;
  }
  .site-nav.open { display: flex; }
  .site-nav a {
    padding: 10px 8px;
    border-bottom: 1px solid var(--border);
  }
  .site-nav a:last-child { border-bottom: 0; }
  .nav-toggle { display: flex; }
  .hero { height: 78vh; min-height: 520px; padding: 0; }
  .hero-title { font-size: clamp(44px, 13vw, 80px); }
  .eyebrow { padding-left: 0; }
  .eyebrow::before { display: none; }
  .section { padding: 72px 0; }
  .criterion-number { font-size: 64px; }
  .hero-overlay {
    align-items: flex-end;
    padding: 0 6% 56px;
    background:
      linear-gradient(180deg,
        rgba(15, 14, 23, 0.25) 0%,
        rgba(15, 14, 23, 0.7) 50%,
        rgba(15, 14, 23, 0.95) 100%);
  }
  .hero-countdown { padding: 18px 20px; margin: 24px 0 28px; display: block; }
  .countdown-units { gap: 14px; }
  .countdown-unit { min-width: 52px; }
  .section { padding: 64px 0; }
  .about-grid,
  .apply-grid,
  .apply-grid-3,
  .criteria-grid,
  .messages-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 24px; }
  .notes-card { padding: 28px 24px; }
  .criterion-card { padding: 32px 24px; }
  .criterion-number { font-size: 48px; }
  .criterion-name { font-size: 22px; }
  .company-card { padding: 28px 24px; }
  .company-card-head { flex-direction: column; gap: 16px; align-items: flex-start; }
  .company-logo { width: auto; height: 64px; }
  .company-title { font-size: 22px; }
  .message-card { padding: 24px; gap: 18px; flex-direction: column; }
  .message-photo { width: 88px; height: 88px; border-radius: 12px; }
  .meta-cards { grid-template-columns: 1fr; gap: 16px; }
  .meta-card { padding: 24px; min-height: 0; }
  .meta-card-logo-img { min-height: 72px; }
  .meta-card-logo-img img { max-height: 72px; }
  .prizes-grid { grid-template-columns: 1fr; }
  .prize-gold { transform: none; }
  .sponsor-grid,
  .sponsor-grid-large,
  .sponsor-grid-small { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-nav { justify-self: start; }
  .theme-box { padding: 28px; }
}
