/* ========================================
   Section layout — glassmorphism shells
   ======================================== */

.section {
  position: relative;
  z-index: 5;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  padding: var(--pad-y) var(--pad-x);
}

.section .inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section + .section { padding-top: 40px; }

/* Section heading: vertical, left-aligned. num above, h2 below. */
.sec-head {
  display: block;
  margin-bottom: 56px;
}
.sec-head .num {
  display: block;
  font-family: var(--font-jp);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .04em;
  color: var(--accent);
  margin-bottom: 18px;
}
.sec-head h2 {
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.3;
  letter-spacing: -.02em;
  color: var(--ink);
  max-width: 920px;
  word-break: keep-all;
  overflow-wrap: anywhere;
}
.sec-head h2 .accent { color: var(--accent); }

/* Apply (final CTA) section — no glass; orbs become visible again here.
   This is the climax: the visual world from the hero returns. */
.apply-section {
  position: relative;
  z-index: 5;
  background: transparent;
  padding: 140px var(--pad-x);
}

.apply-block {
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.apply-block h2 {
  font-family: var(--font-jp);
  font-weight: 900;
  font-size: clamp(40px, 5.4vw, 72px);
  line-height: 1.2;
  letter-spacing: -.03em;
  color: var(--ink);
  margin-bottom: 28px;
}
.apply-block .lead-message {
  font-family: var(--font-jp);
  font-weight: 500;
  font-size: clamp(18px, 1.6vw, 24px);
  line-height: 1.85;
  color: var(--ink);
  margin: 0 auto 40px;
  max-width: 720px;
}
.apply-block .note {
  font-family: var(--font-jp);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.8;
  color: var(--ink-mute);
  margin: 28px auto 0;
  max-width: 640px;
}

/* Final CTA button — dark ink, contrasts hard against mint orbs */
.apply-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-jp);
  font-weight: 700;
  font-size: 18px;
  color: #FFFFFF;
  background: var(--ink);
  padding: 22px 40px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  letter-spacing: .02em;
  transition: background var(--dur-base) ease, transform var(--dur-base) ease;
}
.apply-cta:hover {
  background: #000000;
  transform: translateY(-1px);
}

.apply-meta {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 40px;
  flex-wrap: wrap;
}
.apply-meta dt {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 6px;
}
.apply-meta dd {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 17px;
  color: var(--ink);
}
.apply-meta dd small {
  display: block;
  font-family: var(--font-jp);
  font-weight: 400;
  font-size: 12px;
  color: var(--ink-mute);
  margin-top: 3px;
}

/* Footer — transparent, no border, orbs continue underneath */
.footer {
  position: relative;
  z-index: 5;
  background: transparent;
  padding: 48px var(--pad-x) 32px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: .04em;
}
.footer .footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.footer .footer-links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
  font-family: var(--font-jp);
  font-size: 12px;
}
.footer .footer-links a {
  color: var(--ink-soft);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color var(--dur-fast) ease, color var(--dur-fast) ease;
}
.footer .footer-links a:hover {
  color: var(--ink);
  border-bottom-color: var(--ink);
}
.footer .copyright {
  color: var(--ink-mute);
  font-size: 11px;
}
