:root {
  --blue: #2c3389;
  --blue-dark: #171d5c;
  --green: #07975e;
  --green-light: #57c995;
  --ink: #17214b;
  --muted: #5e6780;
  --cream: #f7fbf8;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  background: var(--cream);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
}

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 7rem);
  padding: clamp(2rem, 5vw, 5.5rem) clamp(1.5rem, 8vw, 8.5rem) 5.5rem;
  background:
    linear-gradient(110deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 253, 250, 0.94) 52%, rgba(231, 247, 239, 0.82) 100%),
    radial-gradient(circle at 88% 15%, rgba(44, 51, 137, 0.08), transparent 38%);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.35;
  pointer-events: none;
  background-image: radial-gradient(rgba(44, 51, 137, 0.12) 0.8px, transparent 0.8px);
  background-size: 22px 22px;
  mask-image: linear-gradient(to right, transparent 0%, transparent 40%, black 100%);
}

.content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  animation: arrive 0.8s ease-out both;
}

.logo {
  display: block;
  width: clamp(160px, 18vw, 220px);
  height: auto;
  margin-bottom: clamp(2rem, 6vh, 4.5rem);
  mix-blend-mode: multiply;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1.35rem;
  padding: 0.58rem 0.9rem;
  border: 1px solid rgba(7, 151, 94, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  box-shadow: 0 8px 30px rgba(23, 33, 75, 0.05);
}

.eyebrow__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(7, 151, 94, 0.11);
}

h1 {
  margin: 0;
  color: var(--blue-dark);
  font-family: "Manrope", sans-serif;
  font-size: clamp(2.45rem, 5vw, 5.25rem);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

h1 span {
  color: var(--green);
}

.lead {
  max-width: 570px;
  margin: 1.7rem 0 2rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.75;
}

.notice {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem 1rem 1rem;
  border: 1px solid rgba(44, 51, 137, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 50px rgba(23, 33, 75, 0.09);
}

.notice__icon {
  display: grid;
  place-items: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--blue), var(--blue-dark));
}

.notice__icon span,
.notice__icon span::after {
  display: block;
  width: 20px;
  height: 4px;
  border-radius: 10px;
  background: white;
}

.notice__icon span::after {
  content: "";
  transform: rotate(90deg);
}

.notice strong {
  display: block;
  margin-bottom: 0.2rem;
  color: var(--blue-dark);
  font-size: 1rem;
}

.notice p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.visual {
  position: relative;
  z-index: 1;
  width: min(39vw, 570px);
  aspect-ratio: 1;
  justify-self: center;
  animation: arrive 1s 0.12s ease-out both;
}

.orbit {
  position: absolute;
  border: 1px solid rgba(44, 51, 137, 0.11);
  border-radius: 50%;
}

.orbit--outer {
  inset: 0;
  animation: spin 32s linear infinite;
}

.orbit--outer::before,
.orbit--inner::before {
  content: "";
  position: absolute;
  top: 9%;
  left: 15%;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--green-light);
  box-shadow: 0 0 0 8px rgba(87, 201, 149, 0.12);
}

.orbit--inner {
  inset: 13%;
  border-style: dashed;
  border-color: rgba(7, 151, 94, 0.18);
  animation: spin 25s linear infinite reverse;
}

.orbit--inner::before {
  top: auto;
  bottom: 2%;
  left: auto;
  right: 17%;
  width: 9px;
  height: 9px;
  background: var(--blue);
}

.heart {
  position: absolute;
  inset: 21%;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 46% 54% 53% 47% / 49% 42% 58% 51%;
  background: linear-gradient(145deg, #343d9b 0%, #20266f 58%, #14194e 100%);
  box-shadow:
    0 40px 90px rgba(38, 48, 129, 0.28),
    inset 0 1px 1px rgba(255, 255, 255, 0.25);
  animation: morph 8s ease-in-out infinite;
}

.heart::before,
.heart::after {
  content: "+";
  position: absolute;
  color: rgba(255, 255, 255, 0.11);
  font: 700 3.2rem/1 "DM Sans", sans-serif;
}

.heart::before {
  top: 15%;
  right: 17%;
}

.heart::after {
  bottom: 12%;
  left: 14%;
  font-size: 1.9rem;
}

.heart__shine {
  position: absolute;
  top: -24%;
  left: -6%;
  width: 65%;
  height: 70%;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  filter: blur(10px);
}

.pulse-line {
  display: flex;
  align-items: center;
  width: 74%;
  filter: drop-shadow(0 3px 8px rgba(0, 0, 0, 0.2));
}

.pulse-line > * {
  display: block;
  height: 5px;
  margin-left: -2px;
  border-radius: 5px;
  background: #67e4a7;
  transform-origin: center;
}

.pulse-line span { width: 25%; }
.pulse-line i { width: 15%; transform: rotate(-58deg) translateY(-13px); }
.pulse-line b { width: 22%; transform: rotate(68deg) translateY(-8px); }
.pulse-line em { width: 15%; transform: rotate(-50deg) translateY(6px); }
.pulse-line small { width: 30%; }

.badge {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.82rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--blue-dark);
  font-size: 0.82rem;
  font-weight: 700;
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 40px rgba(23, 33, 75, 0.11);
}

.badge--top {
  top: 14%;
  right: 0;
}

.badge--top span {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border-radius: 9px;
  background: rgba(7, 151, 94, 0.12);
  color: var(--green);
  font-size: 1.2rem;
}

.badge--bottom {
  bottom: 13%;
  left: -2%;
}

.badge--bottom i {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 5px rgba(7, 151, 94, 0.12);
}

.glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(2px);
  pointer-events: none;
}

.glow--top {
  top: -220px;
  right: -140px;
  width: 500px;
  height: 500px;
  background: rgba(65, 87, 188, 0.08);
}

.glow--bottom {
  bottom: -260px;
  left: 36%;
  width: 520px;
  height: 520px;
  background: rgba(74, 206, 147, 0.11);
}

footer {
  position: absolute;
  z-index: 2;
  bottom: 2rem;
  left: clamp(1.5rem, 8vw, 8.5rem);
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #7b8296;
  font-size: 0.78rem;
}

.footer__separator {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--green);
}

@keyframes arrive {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes morph {
  0%, 100% { border-radius: 46% 54% 53% 47% / 49% 42% 58% 51%; transform: translateY(0); }
  50% { border-radius: 53% 47% 45% 55% / 44% 55% 45% 56%; transform: translateY(-8px); }
}

@media (max-width: 850px) {
  .hero {
    display: block;
    padding: 2rem 1.35rem 5.5rem;
    text-align: center;
  }

  .content {
    max-width: 640px;
    margin: 0 auto;
  }

  .logo {
    width: 170px;
    margin: 0 auto 2.4rem;
  }

  .lead {
    margin-right: auto;
    margin-left: auto;
  }

  .notice {
    text-align: left;
  }

  .visual {
    width: min(88vw, 440px);
    margin: 2.4rem auto 0;
  }

  footer {
    left: 50%;
    width: max-content;
    max-width: calc(100% - 2rem);
    transform: translateX(-50%);
  }
}

@media (max-width: 480px) {
  h1 { font-size: clamp(2.25rem, 11vw, 3.1rem); }
  .lead { line-height: 1.6; }
  .notice { width: 100%; }
  .visual { width: 92vw; margin-left: -0.65rem; }
  .badge { font-size: 0.72rem; padding: 0.65rem 0.75rem; }
  footer { justify-content: center; flex-wrap: wrap; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
