@font-face {
  font-family: "Manrope";
  src: url("fonts/Manrope-VariableFont_wght.ttf") format("truetype");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Outfit";
  src: url("fonts/Outfit-VariableFont_wght.ttf") format("truetype");
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg-top: #f6f0d9;
  --bg-bottom: #dbe9cf;
  --card: rgba(255, 251, 241, 0.82);
  --card-strong: rgba(255, 255, 255, 0.82);
  --text: #2d4432;
  --text-soft: #5d735e;
  --line: rgba(45, 68, 50, 0.1);
  --shadow: 0 24px 70px rgba(60, 81, 56, 0.18);
  --radius-xl: 32px;
  --radius-lg: 22px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 15%, rgba(255, 255, 255, 0.85), transparent 22%),
    radial-gradient(circle at 85% 12%, rgba(243, 215, 123, 0.4), transparent 18%),
    radial-gradient(circle at 75% 70%, rgba(137, 182, 109, 0.18), transparent 25%),
    linear-gradient(180deg, var(--bg-top), var(--bg-bottom));
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
}

.bg-grid,
.bg-sparkles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.bg-grid {
  background-image:
    linear-gradient(rgba(45, 68, 50, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(45, 68, 50, 0.03) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: radial-gradient(circle at center, black 60%, transparent 100%);
}

.bg-sparkles span {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: 0 0 18px rgba(255, 255, 255, 0.55);
  animation: sparklePulse 6s ease-in-out infinite;
}

.bg-sparkles span:nth-child(1) { top: 10%; left: 12%; }
.bg-sparkles span:nth-child(2) { top: 15%; left: 82%; animation-delay: 1s; }
.bg-sparkles span:nth-child(3) { top: 72%; left: 14%; animation-delay: 2s; }
.bg-sparkles span:nth-child(4) { top: 66%; left: 87%; animation-delay: 3s; }
.bg-sparkles span:nth-child(5) { top: 28%; left: 58%; animation-delay: 4s; }

@keyframes sparklePulse {
  0%, 100% {
    opacity: 0.25;
    transform: scale(0.85);
  }
  50% {
    opacity: 1;
    transform: scale(1.15);
  }
}

.page {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 22px;
}

.card {
  width: 100%;
  max-width: 1320px;
  padding: 44px 48px;
  border-radius: var(--radius-xl);
  background: var(--card);
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
}

.content {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 42px;
  align-items: center;
  min-height: 720px;
}

.content-left {
  min-width: 0;
  max-width: 760px;
}

.status-badge {
  display: inline-flex;
  align-items: center;
  padding: 11px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
  box-shadow: 0 8px 18px rgba(45, 68, 50, 0.04);
  font-size: 0.98rem;
  font-weight: 700;
  color: #35503a;
  margin-bottom: 22px;
}

.hero-title {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.03em;
  font-family: "Outfit", Arial, Helvetica, sans-serif;
  font-size: clamp(2.5rem, 4.2vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: -0.045em;
  font-weight: 700;
  color: var(--text);
}

.hero-title span:last-child {
  font-size: 0.9em;
}

.lead {
  margin: 26px 0 0;
  font-size: clamp(1.02rem, 1.35vw, 1.16rem);
  line-height: 1.85;
  color: var(--text-soft);
  max-width: 720px;
}

.info-box {
  margin-top: 26px;
  max-width: 760px;
  padding: 18px 22px;
  border-radius: var(--radius-lg);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.84),
    rgba(255, 255, 255, 0.72)
  );
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(45, 68, 50, 0.05);
  font-size: 1.02rem;
  line-height: 1.75;
  color: #3a4f3d;
}

.content-right {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 640px;
}

.rabbit-frame {
  width: 100%;
  max-width: 520px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.rabbit-image {
  width: 100%;
  height: 620px;
  object-fit: contain;
  object-position: center bottom;
}

@media (max-width: 1100px) {
  .content {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 28px;
  }

  .content-left {
    max-width: 100%;
  }

  .content-right {
    min-height: 0;
  }
}

@media (max-width: 980px) {
  .card {
    padding: 28px 22px 24px;
  }

  .rabbit-frame {
    max-width: 360px;
    margin: 0 auto;
  }

  .rabbit-image {
    height: 420px;
  }
}

@media (max-width: 560px) {
  .page {
    padding: 12px;
  }

  .card {
    padding: 20px 16px 18px;
    border-radius: 24px;
  }

  .hero-title {
    font-size: clamp(2.15rem, 10vw, 3.4rem);
    line-height: 0.96;
  }

  .lead,
  .info-box,
  .status-badge {
    font-size: 1rem;
  }

  .rabbit-frame {
    max-width: 300px;
  }

  .rabbit-image {
    height: 340px;
  }
}