/* Reset */
* {
  box-sizing: border-box;
}

:root {
  --band-height: 110px;
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: "PingFang SC", "Noto Sans SC", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
  color: #2a2a2a;
  background: #e6e6e6;
}

body {
  overflow-x: hidden;
  overflow-y: auto;
}

.page {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: calc(var(--band-height) + 32px) 16px calc(var(--band-height) + 32px);
}

.bg {
  position: absolute;
  inset: var(--band-height) 0 var(--band-height) 0;
  background: linear-gradient(135deg, rgba(255, 161, 97, 0.55), rgba(212, 66, 120, 0.45)), url("/images/background.jpg") center/cover no-repeat;
  z-index: 0;
}

.top-band,
.bottom-band {
  position: fixed;
  left: 0;
  width: 100%;
  height: var(--band-height);
  background: #e7e7e7;
  z-index: 2;
}

.top-band {
  top: 0;
  border-bottom: 6px solid #e3b02c;
}

.bottom-band {
  bottom: 0;
}

.hero-header {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 14px 0 26px;
}

.logo {
  width: 240px;
  max-width: 60vw;
  height: auto;
}

.card {
  position: relative;
  z-index: 1;
  width: min(980px, 95vw);
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18);
  overflow: hidden;
  padding: 42px 46px 32px;
}

.card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(45deg, transparent 0 38px, rgba(79, 179, 255, 0.05) 38px 56px),
    repeating-linear-gradient(-45deg, transparent 0 44px, rgba(255, 147, 114, 0.05) 44px 62px),
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.45), transparent 32%),
    radial-gradient(circle at 82% 40%, rgba(255, 255, 255, 0.5), transparent 38%),
    #ffffff;
  z-index: 0;
}

.card > * {
  position: relative;
  z-index: 1;
}

.card-top {
  text-align: center;
  margin-bottom: 10px;
}

.eyebrow {
  margin: 0 0 6px;
  font-size: 26px;
  font-weight: 800;
  color: #d65252;
  letter-spacing: 0.6px;
}

.subheading {
  margin: 0;
  font-size: 16px;
  color: #5a5a5a;
}

.date-block {
  background: #f0f0f0;
  padding: 22px 18px 18px;
  text-align: center;
  margin: 18px -10px 28px;
}

.date {
  margin: 0;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: 1px;
  color: #2f2f2f;
}

.title {
  margin: 10px 0 0;
  font-size: 32px;
  font-weight: 800;
  color: #2d9a84;
}

.body-text {
  text-align: center;
  font-size: 17px;
  line-height: 1.85;
  color: #2f2f2f;
  margin: 0 8px 26px;
}

.body-text p {
  margin: 6px 0;
}

.highlight {
  color: #469f8a;
  font-weight: 700;
}

.cta-wrap {
  display: flex;
  justify-content: center;
  padding-bottom: 8px;
}

.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  height: 46px;
  padding: 0 26px;
  background: #e7575f;
  color: #ffffff;
  font-size: 18px;
  font-weight: 800;
  border-radius: 999px;
  text-decoration: none;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.2s ease;
}

.cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.24);
  filter: brightness(1.02);
}

.cta:active {
  transform: translateY(0);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.2);
}

.body-text.body-text-mobile {
  display: none;
}

@media (max-width: 900px) {
  :root {
    --band-height: 90px;
  }

  .card {
    width: min(960px, 98vw);
    padding: 34px 26px 28px;
  }

  .date {
    font-size: 28px;
  }

  .title {
    font-size: 28px;
  }

  .body-text {
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  :root {
    --band-height: 72px;
  }

  .page {
    padding: calc(var(--band-height) + 24px) 12px calc(var(--band-height) + 24px);
  }

  .logo {
    width: 200px;
  }

  .card {
    padding: 28px 18px 24px;
  }

  .date {
    font-size: 24px;
  }

  .title {
    font-size: 24px;
  }

  .cta {
    width: 100%;
    max-width: 240px;
  }

  .body-text {
    display: none;
  }
  .body-text.body-text-mobile {
    display: block;
  }
}
