:root {
  --navy: #24366f;
  --pink: #ef4d91;
  --blue: #418fdc;
  --card: rgba(255, 255, 255, 0.88);
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; }

body {
  font-family: "Avenir Next", Avenir, "Segoe UI", Arial, sans-serif;
  color: var(--navy);
  background: #eef5f6 url("assets/background.jpg") center top / cover fixed no-repeat;
  overflow-x: hidden;
}

/* Soft movement over the original background — intentionally subtle. */
body::before {
  content: "";
  position: fixed;
  inset: -12%;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.20), transparent 24%),
    radial-gradient(circle at 78% 30%, rgba(255,255,255,.16), transparent 26%),
    radial-gradient(circle at 55% 90%, rgba(255,255,255,.18), transparent 30%);
  animation: breathe 12s ease-in-out infinite alternate;
  z-index: 0;
}

.page {
  position: relative;
  z-index: 1;
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 34px;
}

.brand-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 112px;
  margin-bottom: 8px;
}

.brand {
  display: block;
  width: 265px;
  height: auto;
  animation: float 7s ease-in-out infinite;
}

.card {
  background: var(--card);
  border: 1px solid rgba(255,255,255,.65);
  border-radius: 22px;
  padding: clamp(34px, 6vw, 64px);
  box-shadow: 0 24px 70px rgba(43,65,105,.15);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
}

h1 {
  margin: 0 0 28px;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.15;
  letter-spacing: -.7px;
  color: #203469;
}

p {
  margin: 0 0 25px;
  font-size: clamp(16px, 2vw, 19px);
  line-height: 1.58;
}

.deadline { color: var(--pink); font-weight: 750; white-space: nowrap; }
.intro { margin-bottom: 34px; }
.options-title { font-weight: 750; margin-bottom: 20px; }
.options { display: grid; gap: 18px; margin: 0 0 34px; }

.option {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 18px;
  align-items: center;
}

.icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(239,77,145,.10);
}

.option:nth-child(2) .icon { background: rgba(65,143,220,.11); }
.icon svg { width: 45px; height: 45px; fill: none; stroke: currentColor; stroke-width: 2.2; stroke-linecap: round; stroke-linejoin: round; }
.icon svg text { fill: currentColor; stroke: none; font: 700 7px Arial, sans-serif; }
.server { color: var(--pink); }
.zip { color: var(--blue); }

.option-copy { font-size: 17px; line-height: 1.48; }
.option-copy strong { display: block; font-size: 18px; margin-bottom: 2px; color: #1e3169; }
.option-copy span { display: inline; }

.rule { border: 0; border-top: 1px solid rgba(36,54,111,.13); margin: 6px 0 30px; }

.contact {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  padding: 17px 20px;
  border-radius: 16px;
  background: linear-gradient(90deg, rgba(239,77,145,.08), rgba(65,143,220,.06));
}

.mail {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(239,77,145,.11);
  color: var(--pink);
}

.mail svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.contact p { margin: 0; font-size: 16px; line-height: 1.45; }
.email { color: var(--pink); font-weight: 750; text-decoration: none; }
.email:hover { text-decoration: underline; }

.footer {
  text-align: center;
  padding: 28px 12px 0;
  font-size: 15px;
  color: #24366f;
}

.heart {
  display: block;
  margin-top: 9px;
  color: #f06a9e;
  font-size: 24px;
  animation: heartbeat 2.8s ease-in-out infinite;
}

@keyframes breathe {
  from { transform: scale(1) translate3d(0,0,0); opacity: .72; }
  to { transform: scale(1.07) translate3d(1%,-1%,0); opacity: 1; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

@keyframes heartbeat {
  0%, 75%, 100% { transform: scale(1); }
  82% { transform: scale(1.18); }
  89% { transform: scale(1.04); }
}

@media (max-width: 600px) {
  .page { width: min(100% - 20px, 900px); padding-top: 18px; }
  .brand-wrap { height: 82px; margin-bottom: 8px; }
  .brand { width: 190px; }
  .card { border-radius: 18px; padding: 28px 24px; }
  .option { grid-template-columns: 52px 1fr; gap: 14px; }
  .icon { width: 52px; height: 52px; border-radius: 13px; }
  .icon svg { width: 37px; height: 37px; }
  .contact { align-items: flex-start; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; scroll-behavior: auto !important; }
}
