:root {
  --ink: #111111;
  --muted: #6d7278;
  --paper: #f3f6f4;
  --surface: #fbfcf8;
  --line: #d5dedb;
  --green: #4b9b8f;
  --green-dark: #2d6f68;
  --lime: #c9ded6;
  --coral: #c98978;
  --sun: #e4c777;
  --cyan: #8fc7d4;
  --violet: #9ba7d0;
  --shadow: 0 24px 80px rgba(17, 17, 17, 0.1);
}

@font-face {
  font-family: "OpenAI Sans JP";
  src: url("/fonts/OpenAISansJP-Light.ttf") format("truetype");
  font-display: swap;
  font-weight: 300;
}

@font-face {
  font-family: "OpenAI Sans JP";
  src: url("/fonts/OpenAISansJP-Regular.ttf") format("truetype");
  font-display: swap;
  font-weight: 400;
}

@font-face {
  font-family: "OpenAI Sans JP";
  src: url("/fonts/OpenAISansJP-Medium.ttf") format("truetype");
  font-display: swap;
  font-weight: 500;
}

@font-face {
  font-family: "OpenAI Sans JP";
  src: url("/fonts/OpenAISansJP-Semibold.ttf") format("truetype");
  font-display: swap;
  font-weight: 600;
}

@font-face {
  font-family: "OpenAI Sans JP";
  src: url("/fonts/OpenAISansJP-Bold.ttf") format("truetype");
  font-display: swap;
  font-weight: 700;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family:
    "OpenAI Sans JP", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Hiragino Sans", "Yu Gothic", "YuGothic", "Noto Sans JP", sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

html[lang="ja"] body {
  line-break: strict;
  word-break: normal;
  overflow-wrap: normal;
}

.no-break {
  display: inline !important;
  white-space: nowrap;
}

@supports (word-break: auto-phrase) {
  html[lang="ja"] body {
    word-break: auto-phrase;
  }
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
select,
summary,
[role="button"] {
  cursor: pointer;
}

input,
textarea {
  cursor: text;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(18px, 4vw, 48px);
  color: var(--ink);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 999px;
  background: rgba(251, 250, 246, 0.72);
  backdrop-filter: blur(16px);
  box-shadow: 0 10px 34px rgba(17, 17, 17, 0.08);
  font-weight: 850;
}

.brand-mark {
  width: 28px;
  height: 28px;
  padding: 5px;
  border-radius: 50%;
  background: var(--green-dark);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.18);
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 4px;
  padding: 6px;
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 999px;
  background: rgba(251, 250, 246, 0.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 40px rgba(17, 17, 17, 0.08);
}

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

.nav-links a {
  padding: 8px 12px;
  border-radius: 999px;
  color: rgba(17, 17, 17, 0.78);
  font-size: 14px;
  font-weight: 750;
}

.nav-links a:hover {
  background: rgba(17, 17, 17, 0.08);
}

.hero {
  position: relative;
  min-height: clamp(520px, 68svh, 680px);
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 92px clamp(20px, 5vw, 72px) 36px;
  background: #d7f4ed;
  color: var(--ink);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center;
  filter: saturate(1.16) contrast(1.04);
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(244, 243, 238, 0.96) 0%, rgba(244, 243, 238, 0.82) 38%, rgba(244, 243, 238, 0.22) 68%, rgba(244, 243, 238, 0) 100%),
    linear-gradient(0deg, rgba(244, 243, 238, 0.88) 0%, rgba(244, 243, 238, 0.24) 34%, rgba(244, 243, 238, 0) 68%),
    radial-gradient(circle at 72% 20%, rgba(255, 255, 255, 0.44), transparent 26%);
}

.hero-digital::before {
  content: "";
  display: none;
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(17, 17, 17, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 17, 17, 0.08) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.88), transparent 74%);
  animation: gridDrift 16s linear infinite;
}

.hero-digital .hero-image {
  opacity: 1;
  filter: none;
}

.hero-digital .hero-shade {
  z-index: 1;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 255, 255, 0.44), transparent 32%),
    linear-gradient(90deg, rgba(244, 243, 238, 0.16) 0%, rgba(244, 243, 238, 0.22) 50%, rgba(244, 243, 238, 0.16) 100%),
    linear-gradient(0deg, rgba(244, 243, 238, 0.34) 0%, rgba(244, 243, 238, 0) 44%);
}

.hero-fireworks {
  position: absolute;
  inset: 0;
  z-index: 4;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

@keyframes gridDrift {
  from {
    background-position: 0 0, 0 0;
  }

  to {
    background-position: 56px 56px, 56px 56px;
  }
}

.hero-content {
  position: relative;
  z-index: 5;
  width: min(1120px, 100%);
  max-width: 1120px;
  margin: 0 auto;
  text-align: center;
}

.hero-title-spark {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
}

.eyebrow,
.section-kicker,
.form-label {
  margin: 0 0 12px;
  color: var(--green);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: var(--green-dark);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

p,
dd,
li {
  text-wrap: pretty;
}

h1 {
  max-width: 1120px;
  margin: 0 auto 18px;
  font-size: clamp(42px, 5.2vw, 76px);
  line-height: 1.04;
  letter-spacing: 0;
}

h1 span {
  display: block;
  white-space: nowrap;
}

.hero-official-name {
  width: fit-content;
  margin: -4px auto 18px;
  border-top: 3px solid var(--green-dark);
  color: rgba(17, 17, 17, 0.66);
  padding-top: 8px;
  font-size: clamp(15px, 1.5vw, 19px);
  font-weight: 750;
  letter-spacing: 0.01em;
}

h2 {
  margin-bottom: 16px;
  font-size: clamp(26px, 3.2vw, 46px);
  line-height: 1.08;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 20px;
  line-height: 1.25;
}

.hero-lead {
  max-width: 700px;
  margin: 0 auto 22px;
  color: rgba(17, 17, 17, 0.72);
  font-size: clamp(18px, 2vw, 23px);
  font-weight: 650;
}

.hero-overview-label {
  width: fit-content;
  margin: 24px auto 0;
  color: rgba(17, 17, 17, 0.72);
  font-size: clamp(17px, 1.7vw, 21px);
  font-weight: 850;
  letter-spacing: 0.04em;
}

.hero-actions,
.apply-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 850;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background 160ms ease;
}

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

.button-primary {
  background: #16866a;
  color: #ffffff;
  box-shadow: 0 14px 36px rgba(22, 134, 106, 0.24);
}

.button-primary:hover {
  background: #126f58;
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
}

.hero .button-primary {
  background: #16866a;
  color: #ffffff;
  box-shadow: 0 18px 48px rgba(22, 134, 106, 0.28);
}

.mobile-title-break {
  display: none;
}

.hero .button-secondary {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  backdrop-filter: blur(14px);
}

.hero-facts {
  display: grid;
  max-width: 820px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 12px auto 0;
}

.hero-apply-actions {
  justify-content: center;
  margin: 20px auto 0;
}

.hero-apply-actions .button {
  min-height: 58px;
  padding: 16px 36px;
  font-size: 18px;
  box-shadow: 0 20px 52px rgba(22, 134, 106, 0.24);
}

.hero-facts div {
  padding: 13px 14px;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 8px;
  background: rgba(251, 250, 246, 0.54);
  backdrop-filter: blur(16px);
  box-shadow: 0 16px 44px rgba(17, 17, 17, 0.08);
}

.hero-facts dt {
  color: rgba(17, 17, 17, 0.52);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 5px 0 0;
  color: var(--ink);
  font-weight: 850;
}

.fact-link {
  display: inline-grid;
  gap: 2px;
  line-height: 1.25;
}

.fact-link > span {
  display: block;
}

.fact-link a,
.grand-prize-card h3 a {
  color: var(--green-dark);
}

.fact-link a:hover,
.grand-prize-card h3 a:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.section {
  padding: clamp(42px, 6vw, 72px) clamp(20px, 5vw, 72px);
}

.section-band {
  background: var(--surface);
}

.section-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
}

.section-heading,
.section-copy,
.apply-heading,
.message-card h2 {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.two-column,
.apply-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(28px, 6vw, 80px);
}

.apply-block {
  display: grid;
  gap: clamp(24px, 4vw, 44px);
}

.apply-simple {
  width: min(880px, 100%);
  text-align: center;
}

.apply-heading {
  margin-bottom: 0;
}

.apply-info-label {
  margin: 8px 0 0;
  color: var(--ink);
  font-size: 16px;
  font-weight: 850;
}

.apply-heading .apply-actions {
  justify-content: center;
  margin-bottom: 0;
}

.apply-period {
  margin: 12px auto 0;
  color: var(--green-dark);
  font-size: clamp(19px, 1.9vw, 24px);
  font-weight: 750;
}

.apply-subnote {
  max-width: 780px;
  margin: 14px auto 0;
  color: rgba(17, 17, 17, 0.68);
  font-size: clamp(15px, 1.35vw, 18px);
  font-weight: 600;
  line-height: 1.7;
}

.date-nowrap {
  white-space: nowrap;
}

.apply-simple .apply-actions {
  justify-content: center;
  margin: 24px 0 0;
}

.apply-simple .button-primary {
  min-height: 60px;
  border-radius: 10px;
  padding: 16px 32px;
  font-size: 18px;
  cursor: pointer;
}

.apply-requirement-copy {
  max-width: 720px;
  margin: 0 auto;
  border-top: 1px solid rgba(75, 155, 143, 0.18);
  padding-top: 26px;
}

.apply-requirement-copy h3 {
  margin-bottom: 14px;
  color: var(--green-dark);
  font-size: 22px;
}

.apply-requirement-copy .requirements-list {
  display: grid;
  gap: 10px;
  max-width: 680px;
  margin: 0 auto;
  padding-left: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.58;
  list-style: none;
  text-align: left;
}

.apply-requirement-copy .requirements-list > li {
  position: relative;
  padding-left: 18px;
}

.apply-requirement-copy .requirements-list > li::before {
  content: "";
  position: absolute;
  top: 0.78em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--green);
}

.apply-requirement-copy .requirements-sublist {
  display: grid;
  gap: 4px;
  margin: 6px 0 0;
  padding-left: 18px;
  list-style: disc;
}

.apply-requirement-copy .requirements-sublist li {
  padding-left: 0;
}

.requirements-note {
  max-width: 680px;
  margin: 18px auto 0;
  border-radius: 8px;
  background: rgba(216, 235, 230, 0.48);
  color: var(--ink);
  padding: 14px 16px;
  font-size: 16px;
  font-weight: 650;
  line-height: 1.58;
  text-align: left;
}

.intro-copy {
  color: var(--muted);
  font-size: 18px;
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.standards-section {
  padding-top: clamp(72px, 8vw, 104px);
  background: var(--paper);
}

.standards-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: clamp(28px, 7vw, 96px);
  align-items: end;
  margin-bottom: clamp(32px, 5vw, 58px);
}

.standards-heading h2 {
  max-width: 720px;
  margin: 0;
  font-size: clamp(54px, 9vw, 126px);
  line-height: 0.92;
  letter-spacing: 0;
}

.standards-heading h2 span {
  display: block;
}

.standards-heading p {
  margin-bottom: 10px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 26px);
  line-height: 1.45;
}

.standards-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.standards-grid article {
  position: relative;
  min-height: 260px;
  padding: clamp(22px, 3vw, 42px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.18);
}

.standards-grid article::after {
  content: "";
  position: absolute;
  top: 32px;
  right: 32px;
  width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #d2bbff;
}

.metric {
  display: block;
  min-height: 1.05em;
  margin-bottom: clamp(48px, 7vw, 78px);
  color: #000000;
  font-size: clamp(52px, 6.8vw, 96px);
  font-weight: 500;
  line-height: 1;
}

.standards-grid h3 {
  margin-bottom: 14px;
  font-size: 22px;
  font-weight: 750;
}

.standards-grid p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.gain-section {
  background:
    radial-gradient(circle at 12% 0%, rgba(143, 199, 212, 0.18), transparent 28%),
    radial-gradient(circle at 92% 76%, rgba(75, 155, 143, 0.13), transparent 26%),
    var(--paper);
}

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

.gain-grid article {
  display: grid;
  align-content: start;
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 52px rgba(17, 17, 17, 0.07);
  padding: clamp(18px, 2vw, 24px);
}

.gain-number {
  width: fit-content;
  margin-bottom: clamp(22px, 3vw, 36px);
  border-bottom: 3px solid var(--coral);
  color: var(--green-dark);
  font-size: 15px;
  font-weight: 900;
}

.gain-grid h3 {
  margin-bottom: 10px;
  font-size: clamp(21px, 1.8vw, 27px);
  line-height: 1.08;
}

.gain-lead {
  color: var(--ink) !important;
  font-size: 16px;
  font-weight: 850;
}

.gain-grid p {
  margin-bottom: 0;
  color: var(--muted);
  text-wrap: pretty;
}

#themes {
  padding-bottom: clamp(24px, 3vw, 42px);
}

#timetable {
  padding-top: clamp(14px, 2vw, 26px);
}

#timetable .day2-draft {
  margin-top: 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 26px;
}

.section-heading p {
  color: var(--muted);
  font-size: 17px;
}

.section-copy {
  display: grid;
  max-width: 900px;
  gap: 10px;
}

.section-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  text-wrap: pretty;
}

.section-heading.compact {
  max-width: 860px;
}

.theme-grid,
.criteria-grid,
.requirements {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

#apply .requirements {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.theme-card,
.criteria-grid article,
.requirements article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 40px rgba(17, 17, 17, 0.06);
}

.theme-card,
.criteria-grid article,
.requirements article {
  padding: 22px;
  text-align: center;
}

.theme-card {
  position: relative;
  min-height: 190px;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0%, rgba(216, 235, 230, 0.72), transparent 38%),
    rgba(251, 252, 248, 0.88);
}

.theme-card::before {
  content: "";
  position: absolute;
  inset: auto -22% -46% -22%;
  height: 58%;
  border-radius: 50%;
  background: radial-gradient(ellipse at center, rgba(143, 199, 212, 0.15), transparent 70%);
  pointer-events: none;
}

.theme-card p,
.criteria-grid p,
.requirements p,
.timeline p {
  color: var(--muted);
}

.theme-card h3,
.theme-card p {
  position: relative;
  z-index: 1;
}

.theme-card h3 {
  margin-bottom: 14px;
}

.theme-note {
  max-width: 860px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 15px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
  text-wrap: pretty;
}

.prize-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 16% 88%, rgba(143, 199, 212, 0.18), transparent 26%),
    linear-gradient(135deg, #f7fbf8, #eef7f5 68%, #f6f4ec);
  color: var(--ink);
}

.prize-section::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(75, 155, 143, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(75, 155, 143, 0.1) 1px, transparent 1px);
  background-size: 48px 48px;
}

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

.prize-heading p,
.prize-section .section-copy p {
  color: var(--muted);
}

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

.prize-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.36fr) minmax(300px, 0.64fr);
  gap: 14px;
  align-items: stretch;
}

.grand-prize-card,
.prize-side article {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(75, 155, 143, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 24px 80px rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(18px);
  text-align: center;
}

.grand-prize-card {
  padding: clamp(22px, 3vw, 34px);
}

.grand-prize-card > *,
.prize-side article > * {
  position: relative;
  z-index: 1;
}

.prize-side {
  display: grid;
  gap: 14px;
}

.prize-side article {
  padding: clamp(18px, 2.4vw, 26px);
}

.prize-badge {
  display: inline-flex;
  width: fit-content;
  margin-right: auto;
  margin-bottom: 16px;
  margin-left: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--green-dark);
  padding: 0;
  font-size: 14px;
  font-weight: 900;
}

.grand-prize-card h3,
.prize-side h3 {
  margin-bottom: 10px;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1.08;
}

.prize-side h3 {
  font-size: clamp(20px, 1.9vw, 25px);
  line-height: 1.16;
}

.grand-prize-card h3 {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
  line-height: 1.18;
}

.devday-prize-heading {
  display: grid;
  justify-items: center;
  gap: 8px;
}

.grand-prize-card h3 a.devday-lockup-link {
  display: block;
  width: min(620px, 100%);
  padding-bottom: 0;
}

.devday-lockup {
  display: block;
  width: 100%;
  height: auto;
}

.devday-invite-text {
  display: block;
  color: var(--ink);
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.08;
}

.grand-prize-card h3 a {
  display: inline;
  padding-bottom: 2px;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  text-decoration: none;
}

.grand-prize-card h3 a span {
  display: inline;
}

.grand-prize-card p,
.prize-side p {
  color: var(--muted);
  font-size: 16px;
}

.grand-prize-card p {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
}

.grand-prize-card .prize-disclaimer {
  margin-top: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  line-height: 1.65;
}

.grand-prize-card .prize-disclaimer a {
  color: var(--green-dark);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.expense-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  margin-top: 16px;
}

.expense-grid div {
  border: 1px solid rgba(75, 155, 143, 0.16);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.58);
  padding: 14px;
}

.expense-grid h4 {
  margin: 0 0 12px;
  color: var(--green-dark);
  font-size: 16px;
}

.expense-grid ul {
  display: grid;
  gap: 6px;
  margin: 0;
  padding-left: 0;
  color: var(--muted);
  font-size: 14px;
  list-style-position: inside;
}

.prize-list,
.requirements-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 0;
  list-style-position: inside;
}

.prize-list {
  color: var(--ink);
  font-weight: 750;
}

.requirements-list {
  color: var(--muted);
}

.program-story {
  display: grid;
  gap: 14px;
}

.program-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 42% 24% at 8% 18%, rgba(143, 199, 212, 0.2), transparent 62%),
    radial-gradient(ellipse 34% 20% at 92% 18%, rgba(228, 199, 119, 0.16), transparent 64%),
    radial-gradient(ellipse 46% 24% at 50% 92%, rgba(216, 235, 230, 0.42), transparent 62%),
    linear-gradient(180deg, #fbfaf6 0%, #f8fbf7 100%);
}

.program-section::before {
  content: "";
  position: absolute;
  top: 44%;
  right: -12%;
  left: -12%;
  height: min(28vw, 360px);
  background:
    radial-gradient(ellipse 28% 42% at 16% 42%, rgba(143, 199, 212, 0.22), transparent 70%),
    radial-gradient(ellipse 34% 46% at 42% 36%, rgba(255, 255, 255, 0.76), transparent 68%),
    radial-gradient(ellipse 30% 44% at 64% 52%, rgba(228, 199, 119, 0.18), transparent 70%),
    radial-gradient(ellipse 30% 48% at 86% 46%, rgba(75, 155, 143, 0.12), transparent 72%);
  filter: blur(22px);
  opacity: 0.72;
  pointer-events: none;
}

.program-section .section-inner {
  position: relative;
  z-index: 1;
  width: min(1280px, 100%);
}

.timeline-title {
  margin: clamp(28px, 4vw, 44px) 0 clamp(22px, 2.8vw, 30px);
  color: #0f1a2f;
  font-size: clamp(30px, 3.5vw, 44px);
  line-height: 1;
  text-align: center;
}

.program-calendar {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(20px, 3vw, 34px);
  padding-top: 32px;
  align-items: stretch;
  overflow: visible;
}

.program-calendar::before {
  content: "";
  position: absolute;
  top: 16px;
  left: calc(12.5% + 16px);
  right: calc(12.5% + 16px);
  height: 2px;
  background: rgba(15, 26, 47, 0.36);
  pointer-events: none;
}

.calendar-card {
  --timeline-accent: var(--green-dark);
  --timeline-border: rgba(75, 155, 143, 0.36);
  --timeline-soft: rgba(216, 235, 230, 0.44);
  --timeline-pill: rgba(238, 248, 246, 0.9);
  position: relative;
  z-index: 1;
  display: grid;
  height: 100%;
  min-height: 0;
  grid-template-rows: 94px 1fr;
  justify-items: center;
  align-items: stretch;
  gap: 10px;
  border: 1.5px solid var(--timeline-border);
  border-radius: 10px;
  background:
    radial-gradient(ellipse 80% 34% at 50% 0%, var(--timeline-soft), transparent 68%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.88));
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.055);
  padding: 20px 18px 18px;
  text-align: left;
}

.calendar-card::before {
  content: "";
  position: absolute;
  top: -31px;
  left: 50%;
  width: 21px;
  height: 21px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: var(--timeline-accent);
  box-shadow:
    0 0 0 5px rgba(255, 255, 255, 0.92),
    0 4px 14px rgba(17, 17, 17, 0.14);
}

.calendar-card:nth-child(even) {
  background:
    radial-gradient(ellipse 80% 34% at 50% 0%, var(--timeline-soft), transparent 68%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.88));
  padding-top: 20px;
}

.timeline-application {
  --timeline-accent: #16866a;
  --timeline-border: rgba(22, 134, 106, 0.52);
  --timeline-soft: rgba(216, 235, 230, 0.58);
  --timeline-pill: rgba(239, 250, 246, 0.94);
}

.timeline-session {
  --timeline-accent: #16866a;
  --timeline-border: rgba(22, 134, 106, 0.52);
  --timeline-soft: rgba(216, 235, 230, 0.58);
  --timeline-pill: rgba(239, 250, 246, 0.94);
}

.timeline-event {
  --timeline-accent: #16866a;
  --timeline-border: rgba(22, 134, 106, 0.52);
  --timeline-soft: rgba(216, 235, 230, 0.58);
  --timeline-pill: rgba(239, 250, 246, 0.94);
}

.timeline-winner {
  --timeline-accent: #16866a;
  --timeline-border: rgba(22, 134, 106, 0.52);
  --timeline-soft: rgba(216, 235, 230, 0.58);
  --timeline-pill: rgba(239, 250, 246, 0.94);
}

.calendar-date {
  display: grid;
  width: 100%;
  min-width: 0;
  height: 94px;
  place-items: center;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--timeline-accent);
  text-align: center;
  box-shadow: none;
}

.calendar-date span {
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.calendar-date strong {
  font-size: clamp(24px, 2.5vw, 38px);
  line-height: 0.95;
}

.calendar-date.primary-date {
  background: transparent;
}

.timeline-illustration {
  position: relative;
  z-index: 1;
  display: block;
  width: min(156px, 96%);
  height: 96px;
  object-fit: contain;
}

svg.timeline-illustration {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 4.8;
  vector-effect: non-scaling-stroke;
}

.timeline-illustration-image {
  filter: saturate(1.05) contrast(1.05);
}

.timeline-motif {
  opacity: 0.34;
  stroke-width: 1.35;
}

.timeline-symbol {
  stroke-width: 4.8;
}

.calendar-body {
  display: flex;
  flex-direction: column;
  gap: 9px;
  width: 100%;
  max-width: none;
  height: 100%;
  padding: 0;
}

.calendar-head {
  display: grid;
  grid-template-rows: 64px minmax(38px, auto);
  gap: 8px;
  flex: 0 0 auto;
  min-height: 110px;
  align-content: start;
  justify-items: center;
  text-align: center;
  min-width: 0;
  width: 100%;
}

.calendar-head strong,
.calendar-head em {
  display: block;
  font-style: normal;
}

.calendar-head strong {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 64px;
  max-width: 100%;
  color: var(--timeline-accent);
  font-size: clamp(16px, 1.38vw, 21px);
  font-weight: 850;
  line-height: 1.08;
  text-wrap: balance;
  overflow-wrap: normal;
}

.calendar-head .session-title {
  font-size: clamp(14px, 1.08vw, 17px);
  line-height: 1.14;
}

.calendar-head small {
  display: block;
  margin-top: 6px;
  color: var(--timeline-accent);
  font-size: clamp(11px, 0.95vw, 14px);
  font-weight: 800;
  line-height: 1.22;
}

.timeline-event .calendar-head small {
  font-size: inherit;
}

.timeline-winner .calendar-head {
  grid-template-rows: minmax(74px, auto) minmax(38px, auto);
  min-height: 120px;
}

.timeline-winner .winner-title {
  line-height: 1.08;
}

.calendar-head em {
  display: inline-flex;
  width: 100%;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 9px;
  border: 1.5px solid var(--timeline-border);
  border-radius: 7px;
  background: var(--timeline-pill);
  color: var(--timeline-accent);
  padding: 7px 9px;
  font-size: clamp(13px, 0.98vw, 16px);
  font-weight: 850;
  line-height: 1.25;
  text-wrap: balance;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.66);
}

.calendar-body h3 {
  margin-bottom: 10px;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.12;
}

.calendar-body p {
  margin-bottom: 0;
  color: #26313d;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
  text-align: center;
  text-wrap: pretty;
}

.calendar-body .timeline-subnote {
  color: var(--timeline-accent);
  font-size: 12.5px;
  font-weight: 850;
  line-height: 1.42;
}

.timeline-range {
  color: var(--ink) !important;
  font-weight: 900;
}

.timeline-list {
  display: grid;
  gap: 5px;
  margin: 0;
  padding-left: 0;
  color: #26313d;
  font-size: 12.5px;
  font-weight: 650;
  line-height: 1.35;
  text-align: center;
  list-style: none;
  text-wrap: pretty;
}

.timeline-list li {
  position: relative;
  padding-left: 0;
}

.timeline-list li::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-right: 7px;
  border-radius: 50%;
  background: var(--timeline-accent);
  vertical-align: 0.12em;
}

.timeline-note {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  margin-top: auto;
  border-top: 1px solid rgba(15, 26, 47, 0.16);
  padding-top: 12px;
  color: var(--timeline-accent);
  text-decoration: none;
}

.timeline-note-info {
  grid-template-columns: minmax(0, 1fr);
}

.timeline-note span {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 2px solid currentColor;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 850;
  line-height: 1;
}

.timeline-note p {
  color: var(--timeline-accent);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.45;
}

.calendar-body .workshop-note {
  grid-column: auto;
  margin-top: 16px;
}

.program-story article {
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 0.55fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  border-top: 1px solid var(--line);
  padding: 24px 0;
}

.program-story article:last-child {
  border-bottom: 1px solid var(--line);
}

.program-story span {
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 900;
}

.program-story h3 {
  margin-bottom: 0;
  font-size: clamp(22px, 2.8vw, 34px);
  line-height: 1.12;
}

.program-story p {
  margin-bottom: 0;
  color: var(--muted);
}

.workshop-note {
  display: grid;
  grid-column: 2 / -1;
  gap: 8px;
  margin-top: 4px;
  border: 1px solid rgba(75, 155, 143, 0.22);
  border-radius: 10px;
  background:
    radial-gradient(circle at 100% 0%, rgba(143, 199, 212, 0.2), transparent 34%),
    #f8fbf5;
  padding: 16px;
}

.workshop-note strong {
  font-size: 17px;
}

.workshop-note p {
  font-size: 14px;
}

.examples {
  margin-top: auto;
  padding-top: 18px;
  font-size: 14px;
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline article {
  display: grid;
  grid-template-columns: 190px minmax(0, 0.7fr) minmax(0, 1fr);
  gap: 22px;
  align-items: start;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.timeline article:last-child {
  border-bottom: 1px solid var(--line);
}

.timeline span {
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 900;
}

.day2-draft {
  margin-top: clamp(42px, 7vw, 84px);
  border: 1px solid var(--line);
  border-radius: 12px;
  background:
    radial-gradient(circle at 100% 0%, rgba(143, 199, 212, 0.18), transparent 26%),
    linear-gradient(135deg, rgba(251, 250, 246, 0.96), rgba(255, 255, 255, 0.72));
  box-shadow: 0 24px 70px rgba(17, 17, 17, 0.08);
  padding: clamp(16px, 2.4vw, 22px);
}

.draft-heading {
  max-width: 820px;
  margin-bottom: 10px;
}

.draft-heading h3 {
  margin-bottom: 6px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
}

.draft-heading h2 {
  margin-bottom: 8px;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.04;
}

.draft-heading p {
  color: var(--muted);
  font-size: 14px;
}

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

.schedule-item {
  display: grid;
  min-height: 52px;
  grid-template-columns: 104px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
  border: 1px solid rgba(215, 212, 204, 0.88);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 26px rgba(17, 17, 17, 0.05);
  padding: 8px 10px;
}

.schedule-item time {
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
  line-height: 1.2;
  white-space: nowrap;
}

.schedule-item h4 {
  margin: 0;
  font-size: 15px;
  line-height: 1.2;
}

.schedule-item p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.schedule-featured {
  background:
    linear-gradient(135deg, rgba(201, 222, 214, 0.5), rgba(255, 255, 255, 0.9));
}

.schedule-close {
  background: #2d6f68;
  color: #ffffff;
}

.schedule-close time,
.schedule-close p {
  color: rgba(255, 255, 255, 0.72);
}

.venue-section {
  background: var(--paper);
}

.venue-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: clamp(22px, 4vw, 52px);
  align-items: center;
}

.venue-image {
  width: 100%;
  min-height: 300px;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.venue-details p {
  color: var(--muted);
  font-size: 17px;
  text-align: center;
}

.venue-details {
  text-align: center;
}

.venue-details h3 {
  margin-bottom: 14px;
  font-size: clamp(22px, 2.1vw, 30px);
}

.venue-facts {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.venue-facts div {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.venue-facts dt {
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.venue-facts dd {
  margin: 5px 0 0;
  font-weight: 800;
}

.venue-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.venue-links .button-secondary {
  border-color: var(--line);
  background: var(--surface);
  color: var(--ink);
}

.venue-details .venue-travel-note {
  margin-top: 18px;
  font-size: 14px;
  line-height: 1.7;
}

label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #c9d8d1;
  border-radius: 8px;
  background: #fbfffc;
  color: var(--ink);
  padding: 12px 13px;
  outline: none;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(75, 155, 143, 0.16);
}

.checkbox-label {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  color: var(--muted);
  font-weight: 700;
}

.checkbox-label input {
  width: 18px;
  margin-top: 3px;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 800;
}

.apply-grid {
  align-items: start;
}

.apply-page .apply-hero {
  position: relative;
  min-height: 76svh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding: 132px clamp(20px, 5vw, 72px) 72px;
  background: #f5f0df;
}

.apply-hero-content {
  position: relative;
  z-index: 3;
  max-width: 860px;
}

.apply-page .hero-motion {
  z-index: 1;
  opacity: 0.24;
}

.back-link {
  display: inline-flex;
  margin-bottom: 32px;
  color: rgba(17, 17, 17, 0.68);
  font-size: 14px;
  font-weight: 850;
}

.apply-panel-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 18px;
  align-items: start;
}

.apply-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 40px rgba(17, 17, 17, 0.06);
  padding: clamp(24px, 4vw, 42px);
}

.application-flow,
.faq-list {
  display: grid;
  gap: 14px;
}

.application-flow article,
.faq-list article {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.application-flow span {
  display: inline-grid;
  width: 32px;
  height: 32px;
  place-items: center;
  margin-bottom: 14px;
  border-radius: 999px;
  background: var(--green-dark);
  color: #ffffff;
  font-weight: 900;
}

.application-flow p,
.faq-list p {
  margin-bottom: 0;
  color: var(--muted);
}

.faq-panel {
  background:
    radial-gradient(circle at 100% 0%, rgba(143, 199, 212, 0.2), transparent 32%),
    var(--surface);
}

.faq-section {
  background:
    radial-gradient(circle at 10% 0%, rgba(143, 199, 212, 0.16), transparent 30%),
    var(--paper);
}

.message-section {
  background:
    radial-gradient(circle at 12% 20%, rgba(143, 199, 212, 0.2), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(228, 199, 119, 0.18), transparent 26%),
    linear-gradient(135deg, #f8fbf7, #edf7f4);
  color: var(--ink);
}

.message-card {
  max-width: 1180px;
  text-align: center;
}

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

.message-card h2 {
  max-width: 760px;
  font-size: clamp(26px, 2.7vw, 34px);
  line-height: 1.25;
  white-space: normal;
}

.message-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: clamp(24px, 5vw, 54px);
  align-items: center;
  margin-top: clamp(22px, 4vw, 40px);
}

.message-copy {
  display: grid;
  gap: 16px;
  color: var(--muted);
  font-size: 17px;
  text-align: left;
}

.message-copy-wide {
  max-width: 880px;
}

.message-copy p {
  margin: 0;
}

.message-copy a {
  color: var(--green-dark);
  font-weight: 850;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

.message-video {
  display: grid;
  gap: 14px;
  border: 1px solid rgba(75, 155, 143, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 22px 64px rgba(17, 17, 17, 0.08);
  padding: clamp(12px, 2vw, 18px);
}

.message-video iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(75, 155, 143, 0.14);
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.08);
}

.message-video a {
  width: 100%;
  color: var(--green-dark);
  font-size: 14px;
  font-weight: 850;
  text-align: center;
}

.apply-modal[hidden] {
  display: none;
}

.apply-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: clamp(16px, 4vw, 40px);
}

.apply-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 24, 31, 0.42);
  backdrop-filter: blur(12px);
}

.apply-modal-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(860px, 100%);
  max-height: min(86vh, 820px);
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
  border: 1px solid rgba(75, 155, 143, 0.28);
  border-radius: 16px;
  background:
    radial-gradient(ellipse 70% 28% at 12% 0%, rgba(216, 235, 230, 0.74), transparent 72%),
    radial-gradient(ellipse 48% 20% at 92% 8%, rgba(228, 199, 119, 0.24), transparent 72%),
    rgba(251, 250, 246, 0.97);
  box-shadow: 0 28px 96px rgba(17, 17, 17, 0.22);
}

.apply-modal-header,
.apply-modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px clamp(18px, 4vw, 30px);
}

.apply-modal-header {
  border-bottom: 1px solid rgba(75, 155, 143, 0.18);
}

.apply-modal-header h2 {
  margin: 0;
  font-size: clamp(22px, 2.4vw, 30px);
}

.apply-modal-close {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.64);
  color: var(--ink);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.apply-modal-scroll {
  overflow-y: auto;
  padding: 24px clamp(18px, 4vw, 30px);
  overscroll-behavior: contain;
}

.apply-modal-copy {
  display: grid;
  gap: 18px;
  color: var(--ink);
}

.apply-modal-copy h3 {
  margin: 10px 0 0;
  color: var(--green-dark);
  font-size: 18px;
}

.apply-modal-copy p {
  margin: 0;
  color: rgba(17, 17, 17, 0.76);
  font-size: 15px;
  line-height: 1.72;
  text-align: left;
}

.apply-modal-copy a {
  color: var(--green-dark);
  font-weight: 750;
  overflow-wrap: anywhere;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.apply-modal-footer {
  border-top: 1px solid rgba(75, 155, 143, 0.18);
  background: rgba(255, 255, 255, 0.52);
}

.apply-modal-footer p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.apply-modal-submit {
  flex: 0 0 auto;
  min-width: 136px;
  cursor: pointer;
}

.apply-modal-submit[aria-disabled="true"] {
  background: rgba(17, 17, 17, 0.12);
  color: rgba(17, 17, 17, 0.38);
  box-shadow: none;
  cursor: not-allowed;
  pointer-events: none;
}

body.apply-modal-open {
  overflow: hidden;
}

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

.faq-grid article {
  min-height: 190px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 12px 40px rgba(17, 17, 17, 0.06);
  padding: clamp(22px, 3vw, 34px);
}

.faq-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 18px;
}

.section-band .button-primary {
  background: var(--green-dark);
  color: #ffffff;
  box-shadow: none;
}

.section-band .button-secondary {
  background: #eef7f0;
  color: var(--ink);
}

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

.criteria-grid article strong {
  display: block;
  margin-bottom: 18px;
  color: var(--coral);
  font-size: 28px;
}

.criteria-grid article {
  position: relative;
  overflow: hidden;
  min-height: 245px;
  border-color: rgba(75, 155, 143, 0.18);
  background: rgba(251, 252, 248, 0.92);
}

.criteria-grid article strong,
.criteria-grid article h3,
.criteria-grid article p {
  position: relative;
  z-index: 1;
}

.final-cta {
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.9), rgba(17, 17, 17, 0.98)),
    radial-gradient(circle at 80% 20%, rgba(143, 199, 212, 0.22), transparent 26%);
}

.final-cta .section-inner {
  max-width: 820px;
  margin-left: clamp(0px, 3vw, 48px);
}

.final-cta p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
}

.site-footer {
  display: grid;
  gap: 0;
  padding: 0;
  border-top: 0;
  background: var(--paper);
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--green-dark);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-notes {
  display: grid;
  gap: 6px;
  max-width: 880px;
  margin: 0 auto;
  padding: 26px clamp(20px, 5vw, 72px);
}

.rules-page {
  background: var(--paper);
}

.rules-header {
  position: static;
  background: #111111;
}

.rules-back-link {
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 750;
}

.rules-main {
  color: var(--ink);
}

.rules-hero {
  background:
    radial-gradient(circle at 15% 20%, rgba(143, 199, 212, 0.24), transparent 32%),
    linear-gradient(135deg, #f8fbf7, #edf7f4);
  padding: clamp(56px, 8vw, 104px) clamp(20px, 5vw, 72px) clamp(28px, 4vw, 52px);
}

.rules-inner,
.rules-content {
  width: min(920px, 100%);
  margin: 0 auto;
}

.rules-kicker {
  margin-bottom: 14px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.12em;
}

.rules-hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: clamp(32px, 4.2vw, 58px);
  line-height: 1.12;
  text-wrap: balance;
}

.rules-section-wrap {
  padding: clamp(24px, 3vw, 40px) clamp(20px, 5vw, 72px) clamp(42px, 6vw, 76px);
}

.rules-content {
  display: grid;
  gap: 18px;
}

.rules-content p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.8;
  text-wrap: pretty;
}

.rules-content .rules-bullet {
  padding-left: 1.2em;
  text-indent: -1.2em;
}

.rules-footer {
  margin-top: 0;
}

@media (max-width: 760px) {
  .rules-header {
    align-items: center;
  }

  .rules-back-link {
    font-size: 12px;
  }

  .rules-content p {
    font-size: 15px;
    line-height: 1.72;
  }
}

.footer-branding {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  min-height: clamp(220px, 22vw, 360px);
  width: 100%;
  margin: 0;
  padding: clamp(54px, 7vw, 96px) clamp(28px, 6vw, 92px);
  background: #141512;
  color: #ffffff;
}

.footer-wordmark {
  justify-self: start;
  display: block;
  width: clamp(110px, 11vw, 158px);
  height: auto;
}

.footer-mark {
  display: block;
  width: clamp(42px, 4vw, 58px);
  height: auto;
}

.footer-copyright {
  justify-self: end;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 500;
}

@media (max-width: 1040px) {
  .standards-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .theme-grid,
  .criteria-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .two-column,
  .apply-grid,
  .apply-panel-grid,
  .message-layout,
  .standards-heading,
  .venue-layout,
  .prize-layout {
    grid-template-columns: 1fr;
  }

  .message-card h2 {
    white-space: normal;
  }

  .faq-grid,
  .expense-grid,
  #apply .requirements {
    grid-template-columns: 1fr;
  }

  .timeline article,
  .program-story article {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .program-calendar {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    overflow-x: auto;
    padding-top: 0;
    padding-bottom: 10px;
  }

  .program-calendar::before,
  .calendar-card::before {
    display: none;
  }

  .calendar-card,
  .calendar-card:nth-child(even) {
    min-height: 0;
    border-radius: 12px;
    padding: 24px 22px;
  }

  .calendar-body {
    max-width: none;
  }

  .workshop-note {
    grid-column: auto;
  }
}

@media (max-width: 760px) {
  h1 {
    font-size: clamp(28px, 9vw, 40px);
  }

  h1 span {
    white-space: nowrap;
  }

  .mobile-title-break {
    display: block;
  }

  h2 {
    font-size: clamp(26px, 7vw, 36px);
  }

  .section {
    padding: 34px clamp(18px, 5vw, 24px);
  }

  .section-heading {
    margin-bottom: 20px;
  }

  .section-copy p,
  .message-copy {
    font-size: 15px;
  }

  .site-header {
    position: absolute;
    align-items: flex-start;
  }

  .program-calendar::before {
    display: none;
  }

  .program-calendar {
    display: grid;
    max-width: 420px;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 14px;
    margin-right: auto;
    margin-left: auto;
    overflow: visible;
    padding-bottom: 0;
    scroll-snap-type: none;
  }

  .calendar-card,
  .calendar-card:nth-child(even) {
    width: 100%;
    flex: initial;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    justify-items: center;
    gap: 14px;
    height: auto;
    min-height: 0;
    border-radius: 12px;
    background:
      radial-gradient(circle at 50% 0%, rgba(143, 199, 212, 0.16), transparent 34%),
      rgba(255, 255, 255, 0.78);
    box-shadow: 0 16px 38px rgba(17, 17, 17, 0.07);
    padding: 20px 16px;
    text-align: center;
    scroll-snap-align: none;
  }

  .calendar-date {
    width: 100%;
    min-width: 0;
    height: 118px;
    border-width: 2px;
    box-shadow: none;
  }

  .timeline-illustration {
    width: min(144px, 88%);
    height: 104px;
  }

  .calendar-head strong {
    font-size: 17px;
  }

  .calendar-head em {
    font-size: 14px;
  }

  .calendar-body p {
    font-size: 13px;
    line-height: 1.5;
  }

  .calendar-body {
    display: flex;
    min-width: 0;
    min-height: 0;
  }

  .timeline-note p,
  .timeline-list {
    font-size: 13px;
  }

  .gain-grid,
  .theme-grid,
  .criteria-grid,
  .expense-grid,
  .prize-side,
  .faq-grid,
  #apply .requirements {
    display: flex;
    grid-template-columns: none;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x proximity;
  }

  .gain-grid article,
  .theme-card,
  .criteria-grid article,
  .expense-grid div,
  .prize-side article,
  .faq-grid article,
  #apply .requirements article {
    flex: 0 0 min(78vw, 300px);
    scroll-snap-align: start;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: 76px;
    padding-bottom: 28px;
  }

  .hero-content {
    text-align: center;
  }

  .hero-digital::before {
    background-size: 36px 36px;
  }

  .apply-page .apply-hero {
    min-height: 700px;
    padding-top: 106px;
  }

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

  .hero-facts div {
    padding: 10px 8px;
  }

  .hero-facts dt {
    font-size: 10px;
  }

  .hero-facts dd {
    font-size: 13px;
    line-height: 1.35;
  }

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

  .footer-branding {
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 22px;
  }

  .footer-wordmark,
  .footer-copyright {
    justify-self: center;
  }

  .standards-grid article {
    min-height: 190px;
  }

  .venue-image {
    min-height: 240px;
  }

  .gain-grid article {
    min-height: auto;
    padding: 16px;
  }

  .gain-number {
    margin-bottom: 14px;
  }

  .theme-card,
  .criteria-grid article,
  .requirements article {
    padding: 18px;
  }

  .criteria-grid article strong {
    margin-bottom: 10px;
  }

  .apply-block {
    gap: 20px;
  }

  .apply-requirement-copy .requirements-list {
    max-width: 100%;
    gap: 12px;
    font-size: 15px;
    line-height: 1.7;
    text-align: center;
  }

  .apply-requirement-copy .requirements-list > li {
    max-width: 100%;
    padding-left: 0;
  }

  .apply-requirement-copy .requirements-list > li::before {
    display: none;
    content: none;
  }

  .apply-requirement-copy .requirements-sublist {
    padding-left: 1.2em;
    text-align: left;
  }

  .requirements-note {
    text-align: center;
    font-size: 15px;
    line-height: 1.65;
    padding: 16px;
  }

  .message-card h2 {
    font-size: clamp(25px, 7vw, 32px);
    line-height: 1.28;
  }

  .message-layout {
    justify-items: center;
    gap: 20px;
    margin-top: 22px;
  }

  .message-copy,
  .message-copy p {
    text-align: center;
  }

  .message-copy {
    max-width: 34rem;
    margin: 0 auto;
    line-height: 1.74;
  }

  .message-video {
    width: 100%;
    max-width: 480px;
    text-align: center;
  }

  .prize-side {
    display: grid;
    grid-template-columns: 1fr;
    overflow: visible;
    padding-bottom: 0;
  }

  .prize-side article {
    flex: initial;
    width: 100%;
  }

  .timetable {
    min-width: 0;
  }

  .timetable th,
  .timetable td {
    display: block;
    width: 100%;
  }

  .timetable th {
    border-right: 0;
    border-bottom: 0;
    border-radius: 10px 10px 0 0;
    padding-bottom: 4px;
  }

  .timetable td {
    border-radius: 0 0 10px 10px;
    padding-top: 4px;
  }

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

  .schedule-item {
    min-height: 92px;
    grid-template-columns: 1fr;
    gap: 5px;
  }

  .schedule-item time {
    white-space: normal;
  }

  .theme-card {
    min-height: auto;
  }

  .theme-grid,
  .criteria-grid {
    display: grid;
    grid-template-columns: 1fr;
    overflow: visible;
    padding-bottom: 0;
  }

  .theme-card,
  .criteria-grid article {
    flex: initial;
    width: 100%;
  }

  .grand-prize-card h3,
  .prize-side h3 {
    font-size: 28px;
  }

  .apply-modal {
    padding: 10px;
  }

  .apply-modal-dialog {
    max-height: calc(100svh - 20px);
    border-radius: 12px;
  }

  .apply-modal-header,
  .apply-modal-footer {
    gap: 10px;
    padding: 14px 16px;
  }

  .apply-modal-header h2 {
    font-size: 21px;
  }

  .apply-modal-close {
    width: 34px;
    height: 34px;
    font-size: 22px;
  }

  .apply-modal-scroll {
    padding: 18px 16px;
  }

  .apply-modal-copy {
    gap: 14px;
  }

  .apply-modal-copy p {
    font-size: 14px;
    line-height: 1.62;
  }

  .apply-modal-footer {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .apply-modal-submit {
    width: 100%;
    min-width: 0;
  }

  .footer-notes {
    gap: 10px;
    padding: 22px 20px;
    font-size: 13px;
    line-height: 1.58;
  }

}

@media (max-width: 520px) {
  .hero-actions,
  .apply-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

}
