@import url("https://fonts.googleapis.com/css2?family=Cormorant:wght@400;500;600&family=Libre+Franklin:wght@400;500;600;700;800&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Libre Franklin", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: linear-gradient(150deg, #1c3f77 0%, #0a1e3d 100%);
  color: #101010;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
}
body::before {
  content: "";
  position: fixed;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  top: -220px;
  right: -180px;
  pointer-events: none;
  z-index: 0;
}
body::after {
  content: "";
  position: fixed;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.04);
  bottom: -150px;
  left: -120px;
  pointer-events: none;
  z-index: 0;
}

.site-header,
.page-body,
.splash-hero,
.splash-band {
  position: relative;
  z-index: 1;
}

.page-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2.5rem 1rem 4rem;
  flex: 1;
}
.page-body--center {
  justify-content: center;
}

h1 {
  font-family: "Cormorant", Georgia, serif;
  font-size: 2.5rem;
  font-weight: 500;
  color: #1c3f77;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

h2 {
  font-family: "Cormorant", Georgia, serif;
  font-size: 2rem;
  font-weight: 500;
  margin: 2rem 0 0.6rem;
  color: #1c3f77;
}

p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  color: #2c2c2c;
}

ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

li {
  line-height: 1.8;
  color: #2c2c2c;
  font-size: 1.05rem;
}

.site-header {
  background: #1c3f77;
  padding: 0 2rem;
  height: 68px;
  display: flex;
  align-items: center;
  width: 100%;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
  flex-shrink: 0;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 0;
  text-decoration: none;
  cursor: default;
  pointer-events: none;
}

a.header-logo {
  cursor: pointer;
  pointer-events: auto;
}

.logo-circles {
  display: flex;
  align-items: center;
  gap: 0;
}

.logo-circle {
  width: 36px;
  height: 36px;
  background: #FFD100;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 0.85rem;
  color: #1c3f77;
  letter-spacing: 0;
  margin-right: -6px;
  border: 2px solid #1c3f77;
}
.logo-circle:last-child {
  margin-right: 0;
}

.logo-pill {
  background: #1c3f77;
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: 0 99px 99px 0;
  padding: 0.35rem 1rem 0.35rem 0.85rem;
  margin-left: 4px;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  line-height: 1;
}

.logo {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #1c3f77;
  margin-bottom: 2rem;
}

.card {
  background: #fff;
  border-radius: 4px;
  box-shadow: 0 4px 24px rgba(28, 63, 119, 0.1);
  padding: 2.5rem 2.5rem 3rem;
  max-width: 680px;
  width: 100%;
  border-top: 4px solid #FFD100;
}
@media (max-width: 520px) {
  .card {
    padding: 1.5rem 1.25rem 2rem;
  }
}

.btn {
  display: block;
  width: 100%;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  padding: 1rem;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s;
}
.btn--blue {
  background: #1c3f77;
}
.btn--blue:hover {
  background: #152e59;
}
.btn--yellow {
  background: #FFD100;
  color: #1c3f77;
}
.btn--yellow:hover {
  background: #c9a600;
  color: #fff;
}

.divider {
  border: none;
  border-top: 1px solid #c8d8f0;
  margin: 2rem 0;
}

.badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.25rem 0.75rem;
  border-radius: 99px;
  margin-bottom: 1rem;
}
.badge--yellow {
  background: #FFE58F;
  border: 1.5px solid #FFD100;
  color: #7a5c00;
}
.badge--blue {
  background: #E4EFFF;
  border: 1.5px solid #1c3f77;
  color: #1c3f77;
}

.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  border-radius: 10px;
  overflow: hidden;
  background: #101010;
  margin-bottom: 0.5rem;
}
.video-wrap iframe,
.video-wrap video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.text-box {
  background: #E4EFFF;
  border: 1px solid #c8d8f0;
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  font-size: 1rem;
  line-height: 1.9;
  color: #2c2c2c;
}
.text-box p {
  margin-bottom: 0.75rem;
}
.text-box p:last-child {
  margin-bottom: 0;
}
.text-box .text-chapter {
  font-size: 0.95rem;
  font-weight: 800;
  color: #1c3f77;
  margin: 1.5rem 0 0.5rem;
  padding-bottom: 0.35rem;
  border-bottom: 2px solid #c8d8f0;
}
.text-box .text-chapter:first-child {
  margin-top: 0;
}

.placeholder {
  background: #FFE58F;
  border: 1.5px dashed #FFD100;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  font-size: 0.88rem;
  color: #7a5c00;
  text-align: center;
}

.progress {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 2rem;
  width: 100%;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  flex: 1;
  position: relative;
}
.progress-step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 1rem;
  left: 50%;
  width: 100%;
  height: 2px;
  background: #c8d8f0;
  z-index: 0;
}
.progress-step.done::after, .progress-step.active::after {
  background: #1c3f77;
}

.progress-dot {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  border: 2px solid #c8d8f0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  color: #5a6a7e;
  position: relative;
  z-index: 1;
  transition: background 0.2s, border-color 0.2s;
}
.progress-step.done .progress-dot {
  background: #1c3f77;
  border-color: #1c3f77;
  color: #fff;
}
.progress-step.active .progress-dot {
  background: #FFD100;
  border-color: #FFD100;
  color: #101010;
}

.progress-label {
  font-size: 0.7rem;
  color: #8a9ab0;
  text-align: center;
  white-space: nowrap;
}
.progress-step.active .progress-label {
  color: #1c3f77;
  font-weight: 700;
}

.splash-hero {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(150deg, #1c3f77 0%, #0d2648 100%);
  min-height: calc(100vh - 68px);
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}
.splash-hero::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  top: -200px;
  right: -150px;
  pointer-events: none;
}
.splash-hero::after {
  content: "";
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.04);
  bottom: -150px;
  left: -100px;
  pointer-events: none;
}

.splash-content {
  text-align: center;
  max-width: 680px;
  position: relative;
  z-index: 1;
}

.splash-eyebrow {
  display: inline-block;
  background: rgba(255, 218, 95, 0.12);
  border: 1px solid rgba(255, 218, 95, 0.35);
  color: #FFD100;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1.1rem;
  border-radius: 99px;
  margin-bottom: 2rem;
}

.splash-title {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
@media (max-width: 520px) {
  .splash-title {
    font-size: 2.1rem;
  }
}

.splash-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.75;
  margin-bottom: 2.75rem;
  max-width: 460px;
  margin-left: auto;
  margin-right: auto;
}

.splash-band {
  background: #FFD100;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.splash-band-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: #1c3f77;
}

.btn--lg {
  display: inline-block;
  width: auto;
  padding: 1rem 2.75rem;
  font-size: 1.05rem;
}

.elevinfo-hero {
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #c8d8f0;
}

.elevinfo-eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #5a6a7e;
  margin-bottom: 0.5rem;
}

.elevinfo-lead {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #5a6a7e;
  margin-top: 0.75rem;
  margin-bottom: 0;
}

.info-section {
  margin-bottom: 3rem;
  padding-top: 2rem;
  border-top: 1px solid #c8d8f0;
}
.info-section h2 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0;
  margin-bottom: 0.75rem;
}

.section-icon {
  display: flex;
  align-items: center;
  line-height: 1;
}
.section-icon svg {
  width: 1.2rem;
  height: 1.2rem;
  stroke: #1c3f77;
  stroke-width: 1.75;
}

.step-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.step-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.step-num {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  background: #1c3f77;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 800;
}

.step-text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #2c2c2c;
  padding-top: 0.1rem;
}

.highlight {
  background: #E4EFFF;
  border-left: 4px solid #1c3f77;
  border-radius: 0 8px 8px 0;
  padding: 1rem 1.25rem;
  margin: 0 0 2rem;
}
.highlight ul {
  padding-left: 1.25rem;
}
.highlight li {
  line-height: 1.8;
  color: #1c3f77;
  font-weight: 600;
}

.group-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 0.75rem 0 0;
}
@media (max-width: 520px) {
  .group-grid {
    grid-template-columns: 1fr;
  }
}

.group-box {
  border-radius: 12px;
  padding: 1.25rem;
}
.group-box h3 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  margin-top: 0;
}
.group-box ul {
  padding-left: 1.2rem;
  margin: 0;
}
.group-box li {
  font-size: 0.9rem;
  line-height: 1.7;
}
.group-box.g1 {
  background: #FFE58F;
}
.group-box.g1 h3 {
  color: #7a5c00;
}
.group-box.g2 {
  background: #E4EFFF;
}
.group-box.g2 h3 {
  color: #1c3f77;
}

.tips {
  background: #E4EFFF;
  border: 1.5px solid #c8d8f0;
  border-radius: 10px;
  padding: 1rem 1.25rem;
}
.tips li {
  font-size: 0.95rem;
  color: #2c2c2c;
}

.thanks {
  text-align: center;
  font-size: 1rem;
  color: #2c2c2c;
  margin-bottom: 0.75rem;
}

.reward-badge-inline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #FFE58F;
  border-radius: 99px;
  padding: 0.4rem 1rem;
  font-weight: 700;
  color: #1c3f77;
  font-size: 0.9rem;
  margin-bottom: 1.75rem;
}

.group-choice-header {
  font-weight: 700;
  font-size: 1rem;
  color: #1c3f77;
  text-align: center;
  margin-bottom: 1rem;
}

.card--centered {
  text-align: center;
  max-width: 560px;
}

.sub {
  color: #5a6a7e;
  font-size: 0.95rem;
  margin-bottom: 2.5rem;
}

.group-choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
@media (max-width: 440px) {
  .group-choice {
    grid-template-columns: 1fr;
  }
}

.group-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 2rem 1.25rem;
  border-radius: 16px;
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}
.group-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(28, 63, 119, 0.15);
}
.group-btn.g1 {
  background: #FFD100;
  border-color: #FFD100;
}
.group-btn.g1:hover {
  background: #e6bc00;
  border-color: #e6bc00;
}
.group-btn.g1 .group-label {
  color: #1c3f77;
}
.group-btn.g1 .group-desc {
  color: rgba(28, 63, 119, 0.65);
}
.group-btn.g2 {
  background: #1c3f77;
  border-color: #1c3f77;
}
.group-btn.g2:hover {
  background: #152e59;
  border-color: #152e59;
}
.group-btn.g2 .group-label {
  color: #fff;
}
.group-btn.g2 .group-desc {
  color: rgba(255, 255, 255, 0.65);
}

.group-icon svg {
  width: 2rem;
  height: 2rem;
  stroke-width: 1.5;
}

.group-btn.g1 .group-icon svg {
  stroke: #1c3f77;
}

.group-btn.g2 .group-icon svg {
  stroke: #fff;
}

.group-label {
  font-size: 1.1rem;
  font-weight: 800;
}

.group-desc {
  font-size: 0.82rem;
  line-height: 1.5;
}

.note {
  margin-top: 2rem;
  font-size: 0.85rem;
  color: #8a9ab0;
}

.intro {
  color: #5a6a7e;
  font-size: 1rem;
  margin-top: 0.35rem;
  margin-bottom: 2rem;
}

.tack-icon {
  width: 72px;
  height: 72px;
  background: #1c3f77;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}

.reward-badge {
  display: inline-block;
  background: #FFD100;
  border-radius: 10px;
  padding: 0.85rem 2rem;
  font-weight: 800;
  color: #1c3f77;
  font-size: 1.1rem;
  margin-top: 1.25rem;
  letter-spacing: 0.01em;
}
