:root {
  --soft-beige: #D9CFC3;
  --charcoal: #2F2F2F;
  --warm-ivory: #F3EFE8;
  --terracotta: #C46A4A;
  --white: #FFFFFF;
  --shadow: 0 28px 80px rgba(47, 47, 47, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
}

body {
  min-height: 100vh;
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--charcoal);
  background:
    radial-gradient(circle at 18% 18%, rgba(243, 239, 232, 0.86) 0 18rem, transparent 18.2rem),
    linear-gradient(135deg, var(--warm-ivory) 0%, var(--soft-beige) 100%);
}

body::before,
body::after {
  content: "";
  position: fixed;
  pointer-events: none;
  border-radius: 999px;
  opacity: 0.9;
}

body::before {
  width: 24rem;
  height: 24rem;
  right: -8rem;
  top: -8rem;
  background: rgba(196, 106, 74, 0.18);
}

body::after {
  width: 16rem;
  height: 16rem;
  left: -5rem;
  bottom: -5rem;
  background: rgba(47, 47, 47, 0.08);
}

.page-shell {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 32px;
}

.hero-card {
  position: relative;
  width: min(920px, 100%);
  min-height: 560px;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 56px;
  padding: clamp(32px, 6vw, 72px);
  overflow: hidden;
  background: rgba(243, 239, 232, 0.76);
  border: 1px solid rgba(47, 47, 47, 0.09);
  border-radius: 36px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: auto -120px -190px auto;
  width: 410px;
  height: 410px;
  border-radius: 999px;
  background: var(--terracotta);
  opacity: 0.12;
}

.hero-card::after {
  content: "";
  position: absolute;
  right: clamp(24px, 5vw, 72px);
  top: clamp(24px, 5vw, 72px);
  width: 78px;
  height: 78px;
  border-top: 2px solid rgba(196, 106, 74, 0.65);
  border-right: 2px solid rgba(196, 106, 74, 0.65);
}

.brand,
.content,
.footer {
  position: relative;
  z-index: 1;
}

.brand-logo {
  display: block;
  width: clamp(148px, 22vw, 212px);
  height: auto;
}

.content {
  max-width: 690px;
  align-self: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--terracotta);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin: 0;
  font-size: clamp(2.45rem, 7vw, 5.45rem);
  line-height: 0.96;
  letter-spacing: -0.065em;
  font-weight: 700;
}

.lead {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(47, 47, 47, 0.78);
  font-size: clamp(1.04rem, 2vw, 1.28rem);
  line-height: 1.65;
}

.status {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 34px;
  padding: 12px 18px;
  color: var(--warm-ivory);
  background: var(--charcoal);
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--terracotta);
  box-shadow: 0 0 0 0 rgba(196, 106, 74, 0.72);
  animation: pulse 1.9s ease-out infinite;
}

.footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(47, 47, 47, 0.58);
  font-size: 0.9rem;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(196, 106, 74, 0.72);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(196, 106, 74, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(196, 106, 74, 0);
  }
}

@media (max-width: 640px) {
  .page-shell {
    padding: 16px;
  }

  .hero-card {
    min-height: calc(100vh - 32px);
    gap: 40px;
    border-radius: 26px;
  }

  .hero-card::after {
    width: 52px;
    height: 52px;
  }

  .lead {
    margin-top: 22px;
  }

  .status {
    margin-top: 28px;
  }
}
