:root {
  --bg-start: #dff5e7;
  --bg-end: #f8fcf9;
  --card: rgba(255, 255, 255, 0.76);
  --card-border: rgba(23, 77, 56, 0.12);
  --text: #10211a;
  --muted: #4d665a;
  --accent: #1f6f54;
  --accent-strong: #134534;
  --accent-soft: rgba(31, 111, 84, 0.12);
  --gold: #c8a96a;
  --shadow: 0 24px 70px rgba(19, 69, 52, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.88), transparent 34%),
    linear-gradient(135deg, var(--bg-start), var(--bg-end));
  overflow: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.1) 1px, transparent 1px);
  background-size: 84px 84px;
  opacity: 0.28;
  pointer-events: none;
}

.page-shell {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: clamp(16px, 3vw, 32px);
}

.hero-card {
  position: relative;
  z-index: 2;
  width: min(760px, calc(100vw - 32px));
  padding: clamp(24px, 5vw, 56px);
  border: 1px solid var(--card-border);
  border-radius: 34px;
  background: var(--card);
  backdrop-filter: blur(22px) saturate(1.1);
  box-shadow: var(--shadow);
  overflow: hidden;
  animation: cardReveal 700ms ease both;
}

.hero-card:hover {
  transform: translateY(-1px);
  box-shadow: 0 30px 88px rgba(19, 69, 52, 0.17);
}

.hero-card::after {
  content: "";
  position: absolute;
  inset: auto -8% -28% auto;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(200, 169, 106, 0.18), transparent 68%);
  filter: blur(12px);
  pointer-events: none;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(31, 111, 84, 0.09);
  color: var(--accent-strong);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 22px 0 8px;
  color: var(--accent);
  font-family: "Manrope", sans-serif;
  font-size: clamp(0.96rem, 1.4vw, 1.08rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 0.9;
  letter-spacing: -0.03em;
  max-width: 11ch;
}

.lead {
  max-width: 620px;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: clamp(1.04rem, 1.6vw, 1.12rem);
  line-height: 1.75;
}

.status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.status-tile {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(31, 111, 84, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.status-tile:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 26px rgba(19, 69, 52, 0.08);
}

.status-label {
  display: block;
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.status-tile strong {
  font-size: 1.03rem;
  line-height: 1.3;
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.primary-action,
.ghost-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.primary-action {
  color: white;
  background: linear-gradient(135deg, var(--accent), #2a8a62);
  box-shadow: 0 18px 30px rgba(19, 69, 52, 0.18);
}

.ghost-action {
  color: var(--accent-strong);
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(31, 111, 84, 0.12);
}

.primary-action:hover,
.ghost-action:hover,
.primary-action:focus-visible,
.ghost-action:focus-visible {
  transform: translateY(-2px) scale(1.01);
}

.primary-action:hover,
.primary-action:focus-visible {
  box-shadow: 0 22px 38px rgba(19, 69, 52, 0.22);
}

.footnote {
  margin: 26px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.ambient {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  opacity: 0.75;
  pointer-events: none;
}

.ambient-one {
  top: 8%;
  left: 10%;
  width: 260px;
  height: 260px;
  background: radial-gradient(circle, rgba(200, 169, 106, 0.18), transparent 68%);
  animation: drift 16s ease-in-out infinite;
}

.pulse-mode .hero-card {
  animation: cardPulse 0.85s ease;
}

.pulse-mode .hero-card::after {
  animation: glowShift 0.85s ease;
}

@keyframes drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(18px, -18px, 0) scale(1.06);
  }
}

@keyframes cardReveal {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.99);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

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

@keyframes cardPulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.007);
  }
  100% {
    transform: scale(1);
  }
}

@keyframes glowShift {
  0% {
    transform: scale(1);
    opacity: 0.48;
  }
  50% {
    transform: scale(1.03);
    opacity: 0.68;
  }
  100% {
    transform: scale(1);
    opacity: 0.55;
  }
}

@media (max-width: 720px) {
  body {
    overflow-y: auto;
  }

  .page-shell {
    align-items: start;
    padding: 14px;
  }

  .hero-card {
    width: min(100%, calc(100vw - 28px));
    border-radius: 26px;
  }

  h1 {
    font-size: clamp(2.5rem, 12vw, 4.2rem);
  }

  .status-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .status-tile {
    padding: 16px;
  }

  .actions {
    flex-direction: column;
    gap: 12px;
  }

  .primary-action,
  .ghost-action {
    width: 100%;
  }

  .lead {
    line-height: 1.68;
  }
}

@media (min-width: 721px) and (max-width: 1024px) {
  .page-shell {
    padding: 24px;
  }

  .hero-card {
    width: min(720px, calc(100vw - 48px));
  }

  h1 {
    font-size: clamp(3rem, 6vw, 5.2rem);
  }
}

@media (min-width: 1400px) {
  .hero-card {
    width: min(820px, calc(100vw - 64px));
    padding: clamp(32px, 4vw, 64px);
  }

  h1 {
    font-size: clamp(3.6rem, 5vw, 6.4rem);
  }

  .lead {
    font-size: 1.14rem;
  }
}

@media (max-width: 420px) {
  .badge {
    padding: 8px 14px;
    font-size: 0.78rem;
  }

  .eyebrow {
    letter-spacing: 0.08em;
  }

  .status-tile strong {
    font-size: 0.98rem;
  }

  .primary-action,
  .ghost-action {
    min-height: 48px;
    padding: 0 18px;
  }
}

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